linux 网络监控命令 netstat

输出信息含义

一个是Active Internet connections,称为有源TCP连接,其中"Recv-Q"和"Send-Q"指%0A的是接收队列和发送队列。这些数字一般都应该是0。如果不是则表示软件包正在队列中堆积。这种情况只能在非常少的情况见到。

另一个是Active UNIX domain sockets,称为有源Unix域套接口(和网络套接字一样,但是只能用于本机通信,性能可以提高一倍)。
Proto显示连接使用的协议,RefCnt表示连接到本套接口上的进程号,Types显示套接口的类型,State显示套接口当前的状态,Path表示连接到套接口的其它进程使用的路径名。

常见参数

-a (all)显示所有选项,默认不显示LISTEN相关
-t (tcp)仅显示tcp相关选项
-u (udp)仅显示udp相关选项
-n 拒绝显示别名,能显示数字的全部转化成数字。
-l 仅列出有在 Listen (监听) 的服務状态

-p 显示建立相关链接的程序名
-r 显示路由信息,路由表
-e 显示扩展信息,例如uid等
-s 按各个协议进行统计
-c 每隔一个固定时间,执行该netstat命令。

提示:LISTEN和LISTENING的状态只有用-a或者-l才能看到

例子

1. List All Ports (both listening and non listening ports)

List all ports using netstat -a
List all tcp ports using netstat -at

List all udp ports using netstat -au

2. List Sockets which are in Listening State

List only listening ports using netstat -l

List only listening TCP Ports using netstat -lt

List only listening UDP Ports using netstat -lu

List only the listening UNIX Ports using netstat -lx

3. Show the statistics for each protocol

Show statistics for all ports using netstat -s

Show statistics for TCP (or) UDP ports using netstat -st (or) -su

4. Display PID and program names in netstat output using netstat -p

netstat -pt shows all the programs that is connected by tcp protocol

5. Don’t resolve host, port and user name in netstat output

This will display in numbers, instead of resolving the host name, port name, user name.

Find out on which port a program is running

netstat -ap | grep ssh

nestat -an | grep ':8000'

6. Print netstat information continuously

netstat -c

7. Find the non supportive Address families in your system
netstat --verbose

8. Display the kernel routing information using netstat -r

Use netstat -rn to display routes in numeric format without resolving for host-names.

9. Show the list of network interfaces

netstat -i

10.analyze the result

netstat -nat | grep "192.168.1.15:22" |awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -nr|head -20

netstat -nat |awk '{print $6}'|sort|uniq -c|sort -rn

这里在附加一个常见的Linux面试题。
分析access.log获得访问前10位的ip地址
awk '{print $1}' access.log |sort|uniq -c|sort -nr|head -10


http://www.thegeekstuff.com/2010/03/netstat-command-examples/

http://www.cnblogs.com/ggjucheng/archive/2012/01/08/2316661.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值