Avatar of ittechlab
ittechlab
Flag for Canada asked on

vsftpd

I did install vsftpd on redhat linux 6. I need help with the following.  I have disabled selinux and flushed the iptables. So there is no security measure here as per my knowledge.

1. what is passive and active?  How do i know what is my current status. is it passive or active setup?
2. How do i change the log file. instead of xferlog, I need vsftpd.log should be generated.
3. when I tried to ftp from windows, I get the following message and it hung.

C:\Users\Owner\Desktop>ftp 192.168.3.127
Connected to 192.168.3.127.
220 (vsFTPd 2.2.2)
User (192.168.3.127:(none)): mano
331 Please specify the password.
Password:
230 Login successful.
ftp>
ftp> ls
200 PORT command successful. Consider using PASV.
LinuxLinux DistributionsLinux Networking

Avatar of undefined
Last Comment
Sandy

8/22/2022 - Mon
Dave Baldwin

The built-in Windows FTP is pretty crippled.  You should consider using an FTP client like Filezilla or CoreFTP.  They are much more capable.

PASV mode is initiated by the client.  FTP uses many 'ephemeral' ports above 1024 while it is in operation.  However, firewalls sometimes don't allow that.  So instead of the server using the ephemeral ports, the client does and that's called PASV mode.
ittechlab

ASKER
when we install vsftpd first time in linux, what is the default mode? is it passive or active?

how do i confirm?
ASKER CERTIFIED SOLUTION
Dave Baldwin

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
ittechlab

ASKER
does vsftpd support both modes ?
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
Dave Baldwin

Yes, most FTP servers support both modes and probably All of them on Linux.  It's only the Windows FTP that doesn't that I know of.
ittechlab

ASKER
what is the main diff in active and passive? which one is better
Dave Baldwin

Neither is better.  Active mode does not work thru some firewalls and that is when you must use passive.  Other than the way they use ports, they are the same.  Remember, the Client selects the mode, not the server.
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
ittechlab

ASKER
do you know how to change the log file in vsftpd?

How do i change the log file. instead of xferlog, I need vsftpd.log should be generated.
Dave Baldwin

Here's the 'man' page for vsftpd.conf: http://vsftpd.beasts.org/vsftpd_conf.html  If you set 'dual_log_enable' to YES you will get both formats.
ittechlab

ASKER
I did add the following parameter.  but still don't see any logs in vsftpd.log file.
dual_log_enable'=YES

[root@localhost ~]# tailf /var/log/vsftpd.log
Your help has saved me hundreds of hours of internet surfing.
fblack61
ittechlab

ASKER
[root@localhost ~]# cat /etc/vsftpd/vsftpd.conf | grep -v ^#
anonymous_enable=YES
local_enable=YES
write_enable=YES
local_umask=022
anon_upload_enable=YES
dual_log_enable=YES
dirmessage_enable=YES
xferlog_enable=NO
connect_from_port_20=YES
xferlog_std_format=YES
listen=YES

pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES


pasv_enable=YES
pasv_min_port=6000
pasv_max_port=6010
Dave Baldwin

Did you restart vsftpd or reboot the server?  You probably won't see anything in the vsftpd.log file until something has been transferred.  I doubt that vsftpd will make copies of what is already in the other log file.
ittechlab

ASKER
I did reboot the system. Now its logging.
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Dave Baldwin

Good.  It's doing what you want it to now?
shinuster

Active Mode:

Client initiate command channel from Client Port (eg:x) to Server Port (20/21)
Client will sends Port to server and server acknowledges on command channel.
Server will open data channel to establish data connection.
Client will send Ack to Server

Passive Mode:

Client will opens both command and data channel prior to the data transfer.
Server send Ack on data channel.

For the easiness and flexibility...I recommend Passive mode to be enabled as if in case server can't open data channel due to firewall settings, client will open both command and data channel in Passive mode.
gheist

Well windows FTP does not support passive mode,and since it expects to oprn random port on clients system it needs to be specifically allowed via local firewall
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
ittechlab

ASKER
I tried from another linux machine and its same. I don't see port 20
gheist

because other linux machine has proper ftp client that uses passive mode by default, so no chance to see port 20 unless you switch off passive mode.
ittechlab

ASKER
i did see its using passive
but i don't see 20
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
gheist

passive mode does not receive connections from FTP server, port 20 or any other.
Sandy

I suggest to stop iptables completely if you not using it and also check the intermittent firewall between servers and clients because default mode of FTP is always active in case you are unable to access and forced to enter in passive mode then their must be something intermittent which is blocking this access.

TY/SA
gheist

Windows client ftp.exe does not support passive mode at all
This is the best money I have ever spent. I cannot not tell you how many times these folks have saved my bacon. I learn so much from the contributors.
rwheeler23
Sandy

from windows filezilla or winscp can be used to check this