我们经常需要查看某一端口的`连接数`
`netstat -tun`
列出的是所有连接
`t`:表示查看tcp
`u`:表示查看udp
`p`:表示占用端口的进程
`netstat -tun | grep ":80"` 查询80端口被哪些IP访问连接
查看ssh的连接数
`netstat -tun|grep 22`
`netstat |grep ESTAB|grep ssh`
我们经常需要查看某一端口的`连接数`
`netstat -tun`
列出的是所有连接
`t`:表示查看tcp
`u`:表示查看udp
`p`:表示占用端口的进程
`netstat -tun | grep ":80"` 查询80端口被哪些IP访问连接
查看ssh的连接数
`netstat -tun|grep 22`
`netstat |grep ESTAB|grep ssh`