Discussion:
Can single vsftpd server listen on multiple addresses?
(too old to reply)
Noozer
2007-10-06 00:40:10 UTC
Permalink
I've got vsftpd installed and working. When I tell it to listen for a
specific IP, from either eth0 or eth1, it will run fine. If I don't specify
an IP, it works fine using the IP on eth0 and ignores any connections on
eth1. If I try to specify multiple IP addresses in the vsftpd.conf file, the
server won't start.

Can vsftpd serve a single FTP server to multiple interfaces?

# Server options
listen=YES
background=YES

listen_address=10.0.11.19
listen_address=10.0.11.20

# Connection options
ftp_data_port=20
listen_port=21
port_enable=YES

pasv_enable=YES
pasv_min_port=44400
pasv_max_port=44499
pasv_address=24.24.24.24

connect_from_port_20=YES
....
Michael Ziegler
2007-10-06 10:43:01 UTC
Permalink
Post by Noozer
listen_address=10.0.11.19
listen_address=10.0.11.20
Should be:

| listen_address=10.0.11.19,10.0.11.20

Hth,
Michael

Loading...