Prev: KDE4 vs. KDE3
Next: slow internet connections
From: Artist on 12 Apr 2010 11:32 I am trying to get pure-ftpd working on a Debian Lenny VPS account. Right now I cannot make a connection to it. It is listening on port 21: ~# netstat -tanpu | grep LISTEN | grep 21 tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 13293/pure-ftpd (SE tcp6 0 0 :::21 :::* LISTEN 13293/pure-ftpd (SE ~# I need to know if should see the all zero default IP address here or the website's IP address. I also need to know if Bind9 needs to be configured for FTP. -- If you desire to respond directly remove the "sj." from the domain name part of my email address. It is a spam jammer.
From: Sidney Lambe on 12 Apr 2010 11:56 On comp.os.linux.setup, Artist <Artist(a)sj.speakeasy.net> wrote: > I am trying to get pure-ftpd working on a Debian Lenny VPS account. > Right now I cannot make a connection to it. It is listening on port 21: > > ~# netstat -tanpu | grep LISTEN | grep 21 > tcp 0 0 0.0.0.0:21 0.0.0.0:* > LISTEN 13293/pure-ftpd (SE > tcp6 0 0 :::21 :::* > LISTEN 13293/pure-ftpd (SE > ~# > > I need to know if should see the all zero default IP address > here or the website's IP address. > > I also need to know if Bind9 needs to be configured for FTP. Could be you need to open a doorway for FTP in your firewall. If you are using iptables this should work: /usr/sbin/iptables -A INPUT -p tcp --dport 21 -j ACCEPT Sid
From: The Natural Philosopher on 12 Apr 2010 13:34 Artist wrote: > I am trying to get pure-ftpd working on a Debian Lenny VPS account. > Right now I cannot make a connection to it. It is listening on port 21: > > ~# netstat -tanpu | grep LISTEN | grep 21 > tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN > 13293/pure-ftpd (SE > tcp6 0 0 :::21 :::* LISTEN 13293/pure-ftpd (SE > ~# > > I need to know if should see the all zero default IP address here at Mione shows the same for a different (working) ftp service. or the > website's IP address. > > I also need to know if Bind9 needs to be configured for FTP. > Don't think so. What happens when you try and connect to it? what error?
From: Artist on 13 Apr 2010 01:24 Sidney Lambe wrote: > On comp.os.linux.setup, Artist <Artist(a)sj.speakeasy.net> wrote: >> I am trying to get pure-ftpd working on a Debian Lenny VPS account. >> Right now I cannot make a connection to it. It is listening on port 21: >> >> ~# netstat -tanpu | grep LISTEN | grep 21 >> tcp 0 0 0.0.0.0:21 0.0.0.0:* >> LISTEN 13293/pure-ftpd (SE >> tcp6 0 0 :::21 :::* >> LISTEN 13293/pure-ftpd (SE >> ~# > >> I need to know if should see the all zero default IP address >> here or the website's IP address. >> >> I also need to know if Bind9 needs to be configured for FTP. > > Could be you need to open a doorway for FTP in your firewall. > If you are using iptables this should work: > > /usr/sbin/iptables -A INPUT -p tcp --dport 21 -j ACCEPT > > Sid > I executed this statement. It did not make a difference. On my system it is located at /sbin/iptables, rather than a subdirectory of /usr -- If you desire to respond directly remove the "sj." from the domain name part of my email address. It is a spam jammer.
From: Artist on 13 Apr 2010 01:35
The Natural Philosopher wrote: > Artist wrote: >> I am trying to get pure-ftpd working on a Debian Lenny VPS account. >> Right now I cannot make a connection to it. It is listening on port 21: >> >> ~# netstat -tanpu | grep LISTEN | grep 21 >> tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN >> 13293/pure-ftpd (SE >> tcp6 0 0 :::21 :::* LISTEN >> 13293/pure-ftpd (SE >> ~# >> >> I need to know if should see the all zero default IP address here > at > Mione shows the same for a different (working) ftp service. > > > or the >> website's IP address. >> >> I also need to know if Bind9 needs to be configured for FTP. >> > Don't think so. > > > What happens when you try and connect to it? what error? I am trying to make this ftp connection using Dreamweaver MX 2004. The error message is: "An FTP error occurred - cannot make connection to host. The remote host cannot be found." This error message happens immediately upon the attempt to connect. I am able to access this site by its domain name in a web browser. The above error message is what I get when I put the ftp subdomain on it. Without a subdomain the FTP attempt times out because the server does not respond. That it cannot find the remote host with the FTP subdomain causes me to suspect the Bind9 configuration. Are you sure Bind9 does not have to be configured for ftp? -- If you desire to respond directly remove the "sj." from the domain name part of my email address. It is a spam jammer. |