Linux command
vsftpd 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Start vsftpd
vsftpd
Start with a specific configuration file
vsftpd [/etc/vsftpd.conf]
Start the vsftpd service
sudo systemctl start vsftpd
Enable vsftpd on boot
sudo systemctl enable vsftpd
Print version
vsftpd -v
说明
vsftpd (Very Secure FTP Daemon) is a lightweight, secure FTP server for Unix-like systems. It serves as the default FTP server on many Linux distributions including Ubuntu, Fedora, and RHEL. The daemon can run standalone (recommended) by setting listen=YES in /etc/vsftpd.conf, or be launched via inetd/xinetd. It listens on TCP port 21 by default for control connections. vsftpd supports anonymous FTP, local user authentication, virtual users via PAM, SSL/TLS encryption (FTPS), and passive mode for NAT environments. Access control is managed through /etc/vsftpd/ftpusers and /etc/vsftpd/user_list.
参数
- -v
- Print version information and exit.
- -ooption=value
- Set a single configuration option as per the config file format.
FAQ
What is the vsftpd command used for?
vsftpd (Very Secure FTP Daemon) is a lightweight, secure FTP server for Unix-like systems. It serves as the default FTP server on many Linux distributions including Ubuntu, Fedora, and RHEL. The daemon can run standalone (recommended) by setting listen=YES in /etc/vsftpd.conf, or be launched via inetd/xinetd. It listens on TCP port 21 by default for control connections. vsftpd supports anonymous FTP, local user authentication, virtual users via PAM, SSL/TLS encryption (FTPS), and passive mode for NAT environments. Access control is managed through /etc/vsftpd/ftpusers and /etc/vsftpd/user_list.
How do I run a basic vsftpd example?
Run `vsftpd` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -v do in vsftpd?
Print version information and exit.