Re: Debian testing my ftp server problem

2011-09-29 Thread Camaleón
On Wed, 28 Sep 2011 13:27:41 -0500, Johnny wrote:

 Camaleón wrote:

(...)
 
 Hum... can you access/login ftp locally, I mean, from the same computer
 where you run vsftpd?

 Yes i can connect, know problem there

So FTP server is up and responding okay (at least to queries from 
localhost or the local interface).

But it seems that you can't even ping that box, sir... You have to 
resolve that first.

Tell us about your network setup, is there any firewall/filter or 
something in between the two involved boxes?

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2011.09.29.12.04...@gmail.com



Re: Debian testing my ftp server problem

2011-09-28 Thread Camaleón
On Wed, 28 Sep 2011 12:01:37 -0500, Johnny wrote:

 I have 2 computers that have Debian testing installed on them and using
 vsftpd as my ftp server just to transfer files some from computer to
 computer.  

From linux to linux? Have you considered in using sftp instead for that 
task? :-?

 They were working at one point now I am having problem connecting to my
 ftp server. This is what I get when trying to connect
 
 johnny@xx:~$ ftp 192.168.1.101
 ftp: connect: No route to host

Hum... can you access/login ftp locally, I mean, from the same computer 
where you run vsftpd?

No route to host may indicate an underlying networking problem, can you 
even ping that machine?

 I do have squeeze installed on another computer I can connect to one of
 my computers with no problem. But I can not connect with Debian Testing.
 
 What do I need to do to fix this.

I would also take a look into vsftpd log, just in case.

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2011.09.28.17.44...@gmail.com



Re: Debian testing my ftp server problem

2011-09-28 Thread Johnny

Camaleón wrote:

On Wed, 28 Sep 2011 12:01:37 -0500, Johnny wrote:

   

I have 2 computers that have Debian testing installed on them and using
vsftpd as my ftp server just to transfer files some from computer to
computer.
 

 From linux to linux? Have you considered in using sftp instead for that
task? :-?

   

They were working at one point now I am having problem connecting to my
ftp server. This is what I get when trying to connect

johnny@xx:~$ ftp 192.168.1.101
ftp: connect: No route to host
 

Hum... can you access/login ftp locally, I mean, from the same computer
where you run vsftpd?
   

Yes i can connect, know problem there

Johnny




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4e83671d.60...@gmail.com



Re: Debian testing my ftp server problem

2011-09-28 Thread Bob Proulx
Johnny wrote:
 johnny@xx:~$ ftp 192.168.1.101
 ftp: connect: No route to host
 
 I do have squeeze installed on another computer I can connect to one
 of my computers with no problem. But I can not connect with Debian
 Testing.
 
 What do I need to do to fix this.

No route to host is a network level issue outside of ftp.  To be clear
it has nothing to do with ftp.

Are both hosts using the same network subnet?  For example, if one is
using 192.168.1.* and other is using 192.168.2.* then they will not be
able to communicate because they will be using different subnets.  In
that case you would get No route to host exactly as you have posted.

Without showing us more information about your systems it is
impossible for us to help you further.  The output of the following
commands on each machine would be useful.

  $ ip addr show

  $ ip route show

Bob


signature.asc
Description: Digital signature


Re: Debian testing my ftp server problem

2011-09-28 Thread Johnny

Bob Proulx wrote:

ip addr show
   

johnny@xx:~$ ip addr show
1: lo: LOOPBACK,UP,LOWER_UP mtu 16436 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
   valid_lft forever preferred_lft forever
2: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast 
state UNKNOWN qlen 1000

link/ether aa:00:04:00:0a:04 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.102/24 brd 192.168.1.255 scope global eth0
inet6 fe80::2c0:26ff:fe7d:8eca/64 scope link
   valid_lft forever preferred_lft forever

ip route show


johnny@xx:~$ ip route show
default via 192.168.1.1 dev eth0
192.168.1.0/24 dev eth0  proto kernel  scope link  src 192.168.1.102

Both of these are debian testing
Computer  1 192.168.1.102
Computer 2  192.168.1.101

Withe Debian squeeze computer I can fp to 192.168.1.101 or 192.168.1.102 
with no problem



Johnny




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4e83ad43.7040...@gmail.com



Re: Debian testing my ftp server problem

2011-09-28 Thread Bob Proulx
Johnny wrote:
 inet 192.168.1.102/24 brd 192.168.1.255 scope global eth0
 default via 192.168.1.1 dev eth0
 192.168.1.0/24 dev eth0  proto kernel  scope link  src 192.168.1.102

Looks okay.  Those were the lines from the output with the information
I cared about.  It has 192.168.1.102 address and the route looks
normal going to the local subnet.

But that was only one of the two.  How about the other machine?  The
above is only half of the information.

 Both of these are debian testing
 Computer  1 192.168.1.102
 Computer 2  192.168.1.101
 
 Withe Debian squeeze computer I can fp to 192.168.1.101 or
 192.168.1.102 with no problem

You have a 3rd computer available running Squeeze.  Okay.  That wasn't
clear in your earlier email.

Also a possibility is that you have a firewall blocking the connection.

Camaleón asked if you can ping the machine.  Did you have an answer to
that question?

Bob


signature.asc
Description: Digital signature


Re: Debian testing my ftp server problem

2011-09-28 Thread Johnny

Bob Proulx wrote:

Johnny wrote:
   

 inet 192.168.1.102/24 brd 192.168.1.255 scope global eth0
default via 192.168.1.1 dev eth0
192.168.1.0/24 dev eth0  proto kernel  scope link  src 192.168.1.102
 

Looks okay.  Those were the lines from the output with the information
I cared about.  It has 192.168.1.102 address and the route looks
normal going to the local subnet.

But that was only one of the two.  How about the other machine?  The
above is only half of the information.

   

Both of these are debian testing
Computer  1 192.168.1.102
Computer 2  192.168.1.101

Withe Debian squeeze computer I can fp to 192.168.1.101 or
192.168.1.102 with no problem
 

You have a 3rd computer available running Squeeze.  Okay.  That wasn't
clear in your earlier email.

Also a possibility is that you have a firewall blocking the connection.

Camaleón asked if you can ping the machine.  Did you have an answer to
that question?

Bob
   

johnny@xx:~$ ping 192.168.1.101
PING 192.168.1.101 (192.168.1.101) 56(84) bytes of data.
From 192.168.1.102 icmp_seq=1 Destination Host Unreachable
From 192.168.1.102 icmp_seq=2 Destination Host Unreachable
From 192.168.1.102 icmp_seq=3 Destination Host Unreachable
From 192.168.1.102 icmp_seq=5 Destination Host Unreachable
From 192.168.1.102 icmp_seq=6 Destination Host Unreachable
From 192.168.1.102 icmp_seq=7 Destination Host Unreachable
From 192.168.1.102 icmp_seq=8 Destination Host Unreachable
From 192.168.1.102 icmp_seq=9 Destination Host Unreachable
From 192.168.1.102 icmp_seq=10 Destination Host Unreachable
From 192.168.1.102 icmp_seq=11 Destination Host Unreachable
From 192.168.1.102 icmp_seq=12 Destination Host Unreachable
From 192.168.1.102 icmp_seq=13 Destination Host Unreachable
From 192.168.1.102 icmp_seq=14 Destination Host Unreachable
From 192.168.1.102 icmp_seq=15 Destination Host Unreachable


Johnny


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4e83b4cb.8000...@gmail.com