Visits

[+/-]
Today:
Yesterday:
Day before yesterday:
338
517
481

+36
This week:
Last week:
Week before last week:
2197
2962
3860

-898

Last month:
Month before last month:
8455
15650
24339

-8689

Visitor Data

IP ADDRESS
38.107.179.212
-
Location
United States
-
Browser
Unknown Browser
-
Operating System
Unknown Operating System


   
Add to: JBookmarks Add to: Bookmarks.cc Add to: Digg Add to: Reddit Add to: Upchuckr Add to: StumbleUpon Add to: Slashdot Add to: Blogmarks Add to: Technorati Add to: Newsvine Add to: Blinkbits Add to: Smarking Add to: Spurl Add to: Google Information
TCP Wrappers

Tcp wrappers - First "/etc/hosts.allow" is check, and if there is an entry in this file, no more
checking it done.  If are no matches in "/etc/hosts.allow", the "/etc/hosts.deny" file is checked
and if a match is found, that service is blocked for that host.

Example "/etc/hosts.deny" file:

sshd: 192.168.1.171

The above file blocks access to computer 192.168.1.171. It's also possible to run commands when
someone from this computer tries to ssh in. This example sends mail.

sshd: 192.168.1.171: spawn (echo -e "%d %h %H %u"| /bin/mail -s 'hosts.deny entry' root)

Of course, you can also run commands in the "/etc/hosts.allow" if you wanted mail sent for a successful
login.