Q. How do I force VSFTPD ftp server to limit the number of simultaneous vsftpd connections from the same IP address under Debian Linux?
A. By default VSFTPD allows unlimited connection from the same client IP address. You can easily force vsftpd ftp server to use limited number of connection. There is a special directive called max_per_ip.
Step # 1: Open vsftpd.conf file
Use text editor such as vi to edit /etc/vsftpd.conf or /etc/vsftpd/vsftpd.conf file:
# vi vsftpd.conf
Step # 2: Setup limitation
Set up the max_per_ip=3 (this will limit simultaneous connection to 3 number only)
max_per_ip=3
You are restricting end user to a specific host to 3 concurrent connections.
Step # 3: Restart vsftpd
# /etc/init.d/vsftpd restart
Now vsftpd should limit the number of simultaneous vsftpd connections for a single IP address. If end user try to cross this limit she will see following error message:
421 There are too many connections from IP address.
🐧 2 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
what about a max on connections per user account?
https://wiki.archlinux.org/index.php/Very_Secure_FTP_Daemon#Limiting_connections
local_max_rate=1000000 # Maximum data transfer rate in bytes per second
max_clients=50 # Maximum number of clients that may be connected
max_per_ip=2 # Maximum connections per IP