If you are looking for an Online Linux Course or an Online Linux Classes i personally refer you to linux.org they offer vast tutorials from beginners to intermediate level Linux courses up to Advanced Linux Course. Their intermediate course covers from basic to advance Linux System Administration plus tips and tricks that you can use on your Linux daily System Administration. So go ahead go to their website to learn more…
I just want to take this opportunity to thank my top 10 Entrecard droppers fro the month of June , Thanks for the support and for consistently visiting and dropping your card to my site. Also to all Entrecard users who visited my site Thank you.
Netstat (network statistics) is a command-line tool that displays network connections (both incoming and outgoing), routing tables, and a number of network interface statistics. Netstat is a useful tool for checking your network configuration and activity.
Examples:
netstat
Displays generic net statistics of the host you are currently connected to.
netstat -an
Shows all connections to the server including the source and destination ips and ports if you have proper permissions.
netstat -rn
Displays routing table for all ips bound to the server.
netstat -an |grep :80 |wc -l
Display the amount of active connections on port 80. Removing the pipe and wc command would display each connection.
netstat -natp