How to Checking Connection ?

kunc86

New member
Joined
Jul 19, 2009
Messages
3
Hi,

hello to check connection in DA ?

If in cpanel I use

netstat -plan |grep :80 | awk '{print $5}' |cut -d: -f1 |sort |uniq -c |sort -n

there will a lot of IP in there but

If I use in direct admin

why only 3 IP logged in there ? Anyone can help me to check the connection that connect to my server ?

Thanks
 
You don't *need* to check connections to port 80 in that way.

Add this code at the end of your httpd.conf file:
<IfModule mod_status.c>
<Location /server-status>
SetHandler server-status
Order deny,allow
Allow from all
</Location>
</IfModule>

Go to http://YOURIP/server-status then
 
Back
Top