TranslateProject/published/201712/20171205 NETSTAT Command Learn to use netstat with examples.md

138 lines
3.2 KiB
Markdown
Raw Normal View History

通过示例学习使用 netstat
======
netstat 是一个告诉我们系统中所有 tcp/udp/unix socket 连接状态的命令行工具。它会列出所有已经连接或者等待连接状态的连接。 该工具在识别某个应用监听哪个端口时特别有用,我们也能用它来判断某个应用是否正常的在监听某个端口。
netstat 命令还能显示其它各种各样的网络相关信息,例如路由表, 网卡统计信息, 虚假连接以及多播成员等。
本文中,我们会通过几个例子来学习 netstat。
(推荐阅读: [通过示例学习使用 CURL 命令][1] )
### 1 - 检查所有的连接
2017-12-07 20:48:57 +08:00
使用 `a` 选项可以列出系统中的所有连接,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -a
2017-12-07 20:48:57 +08:00
```
这会显示系统所有的 tcp、udp 以及 unix 连接。
### 2 - 检查所有的 tcp/udp/unix socket 连接
2017-12-07 20:48:57 +08:00
使用 `t` 选项只列出 tcp 连接,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -at
2017-12-07 20:48:57 +08:00
```
类似的,使用 `u` 选项只列出 udp 连接,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -au
2017-12-07 20:48:57 +08:00
```
使用 `x` 选项只列出 Unix socket 连接,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -ax
2017-12-07 20:48:57 +08:00
```
### 3 - 同时列出进程 ID/进程名称
2017-12-07 20:48:57 +08:00
使用 `p` 选项可以在列出连接的同时也显示 PID 或者进程名称,而且它还能与其他选项连用,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -ap
2017-12-07 20:48:57 +08:00
```
### 4 - 列出端口号而不是服务名
使用 `n` 选项可以加快输出它不会执行任何反向查询LCTT 译注:这里原文有误),而是直接输出数字。 由于无需查询,因此结果输出会快很多。
2017-12-07 20:48:57 +08:00
```shell
$ netstat -an
2017-12-07 20:48:57 +08:00
```
### 5 - 只输出监听端口
2017-12-07 20:48:57 +08:00
使用 `l` 选项只输出监听端口。它不能与 `a` 选项连用,因为 `a` 会输出所有端口,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -l
2017-12-07 20:48:57 +08:00
```
### 6 - 输出网络状态
使用 `s` 选项输出每个协议的统计信息,包括接收/发送的包数量,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -s
2017-12-07 20:48:57 +08:00
```
### 7 - 输出网卡状态
2017-12-07 20:48:57 +08:00
使用 `I` 选项只显示网卡的统计信息,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -i
2017-12-07 20:48:57 +08:00
```
### 8 - 显示<ruby>多播组<rt>multicast group</rt></ruby>信息
2017-12-07 20:48:57 +08:00
使用 `g` 选项输出 IPV4 以及 IPV6 的多播组信息,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -g
2017-12-07 20:48:57 +08:00
```
### 9 - 显示网络路由信息
2017-12-07 20:48:57 +08:00
使用 `r` 输出网络路由信息,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -r
2017-12-07 20:48:57 +08:00
```
### 10 - 持续输出
2017-12-07 20:48:57 +08:00
使用 `c` 选项持续输出结果
2017-12-07 20:48:57 +08:00
```shell
$ netstat -c
2017-12-07 20:48:57 +08:00
```
### 11 - 过滤出某个端口
2017-12-07 20:48:57 +08:00
`grep` 连用来过滤出某个端口的连接,
2017-12-07 20:48:57 +08:00
```shell
$ netstat -anp | grep 3306
2017-12-07 20:48:57 +08:00
```
### 12 - 统计连接个数
通过与 `wc``grep` 命令连用,可以统计指定端口的连接数量
2017-12-07 20:48:57 +08:00
```shell
$ netstat -anp | grep 3306 | wc -l
2017-12-07 20:48:57 +08:00
```
这会输出 mysql 服务端口(即 3306的连接数。
这就是我们简短的案例指南了,希望它带给你的信息量足够。 有任何疑问欢迎提出。
--------------------------------------------------------------------------------
via: http://linuxtechlab.com/learn-use-netstat-with-examples/
作者:[Shusain][a]
译者:[lujun9972](https://github.com/lujun9972)
校对:[wxy](https://github.com/wxy)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]:http://linuxtechlab.com/author/shsuain/
[1]:http://linuxtechlab.com/learn-use-curl-command-examples/