Raj Mathur <[EMAIL PROTECTED]> thus wrote: > Is there any program which can list all the local lan hosts which are accessing >proxy server currently? I am using squid in RH 6 for proxy server.
This will list all active connections, with port 8080 of the proxy server, assuming the proxy server listens on port 8080 $ netstat -tn | grep $(echo -n `hostname -i`):8080 If u're familiar with awk and the output of netstat utility, then you can further "beautify" the output results. -- arc_of_descent ------------------------------------------------------- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! http://www.vasoftware.com _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
