Force OpenSSH (sshd) to listen on selected multiple IP address only

So how do you force sshd to listen on multiple IP addresses? Let us say you have total 8 public IP address and one private IP address. You would like to bind sshd to one selected public IP (ex 70.5.xx.xx) and private IP (10.1.5.1) only.
Luckily there is an easy way to achieve this using ListenAddress option. It specifies the local addresses sshd should listen on. If this directive is skipped from configuration file sshd will bind or list on all available IP address.
Open sshd_config:
# vi /etc/ssh/sshd_config
Specify multiple ip address on each new line with ListenAddress (multiple ListenAddress options are permitted):
ListenAddress 70.5.1.1
ListenAddress 10.1.5.1
Save and close the file.
Restart the sshd:
# /etc/init.d/sshd restart
Verify that sshd is only listing to specified IP address:
# netstat -tulpn | grep :22Output:
tcp 0 0 70.5.1.1:22 0.0.0.0:* LISTEN 26472/sshd tcp 0 0 10.1.5.1:22 0.0.0.0:* LISTEN 26472/sshd
This is good if public SSHD IP address is not available due to configuration issues. You can always login via private IP connected to KVM or on board server IPMI card ![]()
E-mail this to a friend
Printable version
You may also be interested in other helpful articles:
- Force apache webserver to listen on all addresses except one ip address
- Download Of The Day: OpenSSH 5.1
- Download of the Day: OpenSSH Server 5.0 ( security fix release )
- Ubuntu Linux install and configure OpenSSH (SSHD) server
- OpenSSH Tip: Check Syntax Errors before Restarting Server
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!


Recent Comments
Today ~ 11 Comments
Yesterday ~ 21 Comments
Yesterday ~ 15 Comments
Yesterday ~ 10 Comments
Yesterday ~ 15 Comments