博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows和的linux的netstat
阅读量:5865 次
发布时间:2019-06-19

本文共 3495 字,大约阅读时间需要 11 分钟。

  hot3.png

一、windows下的netstat

dos命令显示帮助 netstat/?

作用:显示协议统计和当前 TCP/IP 网络连接。

NETSTAT [-a] [-b] [-e] [-f] [-n] [-o] [-p proto] [-r] [-s] [-t] [interval]

 -a            显示所有连接和侦听端口。 

 -n            以数字形式显示地址和端口号。

  -o            显示拥有的与每个连接关联的进程 ID。

 -p proto      显示 proto 指定的协议的连接;proto 可以是下列任

                何一个: TCP、UDP、TCPv6 或 UDPv6。如果与 -s 选

                项一起用来显示每个协议的统计,proto 可以是下列任

                何一个: IP、IPv6、ICMP、ICMPv6、TCP、TCPv6、UDP

                或 UDPv6。

  -r            显示路由表。

  -s            显示每个协议的统计。默认情况下,显示

                IP、IPv6、ICMP、ICMPv6、TCP、TCPv6、UDP 和 UDPv6

                的统计;-p 选项可用于指定默认的子网。

常用的组合netstat -an,查看端口监听

C:\Users\rsty>netstat -an活动连接  协议  本地地址          外部地址        状态  TCP    0.0.0.0:135            0.0.0.0:0              LISTENING  TCP    0.0.0.0:445            0.0.0.0:0              LISTENING  TCP    0.0.0.0:902            0.0.0.0:0              LISTENING  TCP    0.0.0.0:912            0.0.0.0:0              LISTENING

查看具体的服务,netstat -anpo tcp,具体意思为显示tcp协议的连接,并显示pid编号,可以从任务管理查看到具体的服务

C:\Users\rsty>netstat -anpo tcp 协议  本地地址          外部地址        状态           PID  TCP    0.0.0.0:135            0.0.0.0:0              LISTENING       980  TCP    0.0.0.0:445            0.0.0.0:0              LISTENING       4  TCP    0.0.0.0:902            0.0.0.0:0              LISTENING       2272  TCP    0.0.0.0:912            0.0.0.0:0              LISTENING       2272

组合起来 netstat -anpo tcp |findstr “80”,查看80端口是否有监听


<-------------------------------------------------华丽的分割线------------------------------------------------------------->

linux的netstat

linux查看命令帮助, man netstat

netstat - Print network connections, routing tables, interface statistics, masquerade connections, and

       multicast memberships

       显示以下网络信息: 网络连接, 路由表, 网络接口统计数据, 虚拟连接, 以及多播成员

        -r, --route                display routing table        -I, --interfaces=
   display interface table for 
        -i, --interfaces           display interface table        -g, --groups               display multicast group memberships        -s, --statistics           display networking statistics (like SNMP)        -M, --masquerade           display masqueraded connections        -v, --verbose              be verbose        -n, --numeric              don't resolve names        --numeric-hosts            don't resolve host names        --numeric-ports            don't resolve port names        --numeric-users            don't resolve user names        -N, --symbolic             resolve hardware names        -e, --extend               display other/more information        -p, --programs             display PID/Program name for sockets        -c, --continuous           continuous listing        -l, --listening            display listening server sockets        -a, --all, --listening     display all sockets (default: connected)        -o, --timers               display timers        -F, --fib                  display Forwarding Information Base (default)        -C, --cache                display routing cache instead of FIB        -T, --notrim               stop trimming long addresses        -Z, --context              display SELinux security context for sockets

常用参数组合

netstat –tpln  #显示监听的本地tcp端口[root@iZ2~]# netstat -n|awk '/^tcp/{++S[$NF]} END {for(a in S) print a,S[a]}'CLOSE_WAIT 1ESTABLISHED 2#查看网络连接数,也可以使用netstat -nat |awk '{print $6}'|sort|uniq -cnetstat -r#等于route -nnetstat -i#查看接口信息netstat -ie#类似于执行ifconfig的结果netstat -c#每隔一秒执行一次,后面可以跟参数单位秒netstat -nat | grep "192.168.1.15:22" |awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -nr|head -20统计连接通ip地址22端口的连接数和ip地址

就先这么多


转载于:https://my.oschina.net/rsty/blog/353622

你可能感兴趣的文章
SVNKit getFileFromSVN
查看>>
第六章——根据执行计划优化性能(1)——理解哈希、合并、嵌套循环连接策略...
查看>>
android app启动过程(转)
查看>>
SharePoint 2013 文档库中PPT转换PDF
查看>>
微信小程序把玩(三十一)wx.uploadFile(object), wx.downloadFile(object) API
查看>>
方倍工作室微信相关代码下载方法
查看>>
三位女科学家联手,用AI算法将乳腺癌的筛查速度提高了100倍
查看>>
四款好用的免费直播编码推流软件
查看>>
Go语言大神亲述:历七劫方可成为程序员!
查看>>
精通CSS+DIV网页样式与布局--制作实用菜单
查看>>
jboss规则引擎KIE Drools 6.3.0 Final 教程(3)
查看>>
主页被改为毒霸/搜狗的解决办法
查看>>
程序员写代码时的各种内心戏 ……
查看>>
Spring Boot整合Thymeleaf完整Web案例
查看>>
Spark-rdd的持久化
查看>>
Percona Server 5.7 并行doublewrite 特性
查看>>
Spark-基础-Spark编译与部署--Hadoop编译安装
查看>>
Charles辅助调试接口
查看>>
云计算作为当前趋势 能带给你哪些好处?
查看>>
[译] 项目什么时候需要 React 框架呢?
查看>>