Wednesday, May 25, 2011

How Find out number of Machines (IP address) connected to Linux Server?

Use below Command to find out number of Machines connected to Server.

#netstat -nat | awk '{ print }' | cut -d: -f1 | sed -e '/^$/d' | uniq

No comments:

Post a Comment