shell统计当前网络连接情况

当TCP连接数量非常大时,对当前的内部IP,外部IP的连接情况进行统计

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[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
本文转自激情燃烧的岁月博客51CTO博客,原文链接http://blog.51cto.com/liuzhengwei521/1909106如需转载请自行联系原作者                                     weilovepan520
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值