Well,
I have a Ftp server with Proftpd in a Firewall server with PF.
Connections from Windows with Windows Explorer or Browser works
but connections from Command Line (DOS) not.
The port connection of FTP Server is 2121.
My pf rules:
Passive ports of FTP server: 60000 >< 65535
Some commands works and other not.
Here, commands what I try with Windows command line client:
From command line of Freebsd or Linux systems, the commands works.
Are there any other ports what I can try open?
ps: The firewall of Windows Clients is disabled.
ps2: I tried to connect in other FTP Server with Windows command line client and works fine.
ps3: Sorry for my english.
Thanks !!
I have a Ftp server with Proftpd in a Firewall server with PF.
Connections from Windows with Windows Explorer or Browser works
but connections from Command Line (DOS) not.
The port connection of FTP Server is 2121.
My pf rules:
Code:
pass in quick on { $ext_if , $int_if } inet proto tcp from any to any port 2121 keep state
Passive ports of FTP server: 60000 >< 65535
Code:
pass in quick on { $ext_if , $int_if } inet proto tcp from any to any port 60000 >< 65535 keep state
Some commands works and other not.
Here, commands what I try with Windows command line client:
Code:
ftp> ls
425 Unable to build data connection: Connection refused
ftp> cd teste
250 CWD command successful
ftp> mkdir opa
257 "/teste/opa" - Directory successfully created
ftp> ls
425 Unable to build data connection: Connection refused
From command line of Freebsd or Linux systems, the commands works.
Are there any other ports what I can try open?
ps: The firewall of Windows Clients is disabled.
ps2: I tried to connect in other FTP Server with Windows command line client and works fine.
ps3: Sorry for my english.
Thanks !!