ftp port

Is there an easy way to make an additional port for ftp and still keep port 21 for ftp as well?

If not how would I easily change the ftp port?

Hi Curt-

This answer is the same as the one in the ticket, but I’m posting it here so that others may benefit as well.

This is certainly possible, as ProFTP’s conf file is very similar to Apache’s, and you can setup ProFTP virtual host blocks. For example:

< Global >
… global settings go here …
< /Global >

< VirtualHost 192.168.1.1 >
… vhost specific settings …
Port 21
< /VirtualHost >

< VirtualHost 192.168.1.2 >
… vhost specific settings …
Port 2100
< /VirtualHost > A few example configs can be found in the proftp docs, here:
http://www.proftpd.org/docs/example-conf.html

–Dustin