List all opened Internet and x.25 (HP-UX) network files.
netstat -na
Show listening and established connections.
netstat -tunapel
Show detailed information for all connections (Protocol, Listening Address, Foreign Address, State, User, Inode, and PID/Program Name).
tail -10000 /var/log/httpd/access_log | awk '{print $1}' | sort | uniq -c | sort -nr | tail -n30
Show the top 30 httpd users' IP addresses.
last | head -n30
Show last logged in users and pipe to head for the last 30.
- « first
- ‹ previous
- 1
- 2
- 3
- 4

Recent comments
1 year 5 weeks ago
1 year 5 weeks ago