Restrict ssh access using tcpd (TCPWrapper)

by Vivek Gite on January 31, 2006 · 2 comments

tcpd is use to access control facility for internet services. The tcpd program can be set up to monitor incoming requests for telnet, finger, ftp, exec, rsh, rlogin, tftp, sshd and other services that have a one-to-one mapping onto executable files. Your sshd server must be configuring (compiled with) to support tcpd.

You can find out tcpd (tcpwrapper) support easily with following command:

# strings $(which sshd)| grep libwrap

libwrap.so.0
libwrap refuse returns

If you get output libwrap (as above) then you can use tcpd as follows. Open file /etc/hosts.deny in text editor. This file list of hosts/IPs that are not allowed to access the system. In your case you will block sshd (port 22). Let us say you would like to deny access to IPs 202.54.1.20 64.66.44.22 64.66.44.25.
# vi /etc/hosts.deny Add/append following line to file:sshd: 202.54.1.20 64.66.44.22 64.66.44.25Save and exit to shell prompt. Next make sure your rules are correct with the following command:
# tcpdchk -v
Output:

Using network configuration file: /etc/inetd.conf
>>> Rule /etc/hosts.deny line 20:
daemons:  sshd
clients:  202.54.1.20 64.66.44.22 64.66.44.25
access:   denied

See also:

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 2 comments… read them below or add one }

1 starseeker October 29, 2008

I would prefer something like

ldd $(which sshd) | grep wrap

because its very unlikely to false-positive. Anyway, thanks for that information, it helped me a lot

Reply

2 Adrian March 4, 2010


Using network configuration file: /etc/inetd.conf

>>> Rule /etc/hosts.allow line 1:
daemons: sendmail
clients: all
access: granted

>>> Rule /etc/hosts.deny line 21:
daemons: sshd
clients: ALL EXCEPT 62.231.69.62
access: denied

>>> Rule /etc/hosts.deny line 22:
daemons: sshd
clients: 85.25.86.50
access: denied

>>> Rule /etc/hosts.deny line 23:
daemons: sshd
clients: 69.163.149.200
access: denied

I have this .. but it doesen’t work :| What to do ?

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 2 + 5 ?
Please leave these two fields as-is:
IMPORTANT! To be able to proceed, you need to solve the simple math so we know that you are a human and not a script.




Previous post:

Next post: