TypeScript 接口继承的具体使用
304
2022-10-27
shell统计当前网络连接情况
当TCP连接数量非常大时,对当前的内部IP,外部IP的连接情况进行统计
[root@lvs02 account_tcp]# cat account_tcp.sh #!/bin/bash #统计当前网络连接情况 netstat -na | awk '/^tcp/{s[$6]++}END{for(key in s)print key,s[key]}' > /root/account_tcp/state.txt #统计Local Address的TCP连接数 netstat -na | awk '/^tcp/' | awk -v FS="[ :]+" '{print $4}' | sort | uniq -c | sort -n > /root/account_tcp/Local_Address.txt #统计IP为51的Foreign Address的TCP连接情况 netstat -na | awk '/^tcp/' | grep 192.168.10.51 | awk -v FS="[ :]+" '{print $6}' | sort | uniq -c | sort -n > /root/account_tcp/51_tcp.txt #统计IP为80的Foreign Address的TCP连接情况 netstat -na | awk '/^tcp/' | grep 192.168.10.80 | awk -v FS="[ :]+" '{print $6}' | sort | uniq -c | sort -n > /root/account_tcp/80_tcp.txt #统计IP为86的Foreign Address的TCP连接情况 netstat -na | awk '/^tcp/' | grep 192.168.10.86 | awk -v FS="[ :]+" '{print $6}' | sort | uniq -c | sort -n > /root/account_tcp/86_tcp.txt #统计IP为87的Foreign Address的TCP连接情况 netstat -na | awk '/^tcp/' | grep 192.168.10.87 | awk -v FS="[ :]+" '{print $6}' | sort | uniq -c | sort -n > /root/account_tcp/87_tcp.txt
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~