How to check the network services running in linux
What Network Services are Running?
$ netstat -atup
or
$ netstat -ap|grep LISTEN|less
This can be helpful to determine the services running.
Need stats on dropped UDP packets?
$ netstat -s -u
or TCP
$ netstat -s -t
or summary of everything
$ netstat -s
or looking for error rates on the interface?
$ netstat -i
Listening interfaces?
$ netstat -l
1 comment:
I appreciate the fact that you have the knowledge to fix the problems and deliver the best results. Excellent work!
network services
Post a Comment