常用脚本–tcp

  1. #!/bin/bash
  2. #
  3. #********************************************************************
  4. #encoding -*-utf8-*-
  5. #Author: zhangshang
  6. #Date: 2017-11-25
  7. #URL: http://blog.vservices.top/myblog
  8. #Description: The test script
  9. #Copyright (C): 2017 All rights reserved
  10. #QQ Numbers: 765030447
  11. #********************************************************************
  12. echo -e "\033[31m**************************net_tcp_top_10*********************************\033[0m"
  13. echo -e "IPADDR\t\tcount"
  14. ss -nt | grep 'ESTAB' | awk '{print $5}' | cut -d: -f1 | grep "^[[:digit:]]\+.*" | sort | uniq -c | sort -rnk1 | awk '{print $2,"\t",$1}' | head

最新文章

  1. ThreadLocal对象使用过程中容易陷入的坑
  2. WCF wsHttpBinding之Transport security Mode, clientCredentialType=”Basic”
  3. java删除文件夹
  4. session在.ashx文件操作问题
  5. HotApp
  6. 正向代理VS反向代理 总结
  7. Doodle Poll 投票文档
  8. 释放C盘空间的27招优化技巧
  9. VHD_Update_mount-vhd
  10. Ruby简介,附带示例程序
  11. Oracle的大数据类型,BIG DATA TYPE
  12. RPC 的概念模型与实现解析(转)
  13. Silverlight的Socket通信
  14. POJ 3237 Tree 【树链剖分】+【线段树】
  15. 《linux就该这么学》第十节课:第8章iptables和firewalld
  16. Java:内部接口
  17. dbeaver can't connect HBase1.2 using phoenix driver #1863
  18. redis事件监听及在订单系统中的使用
  19. Memory consumption of popular Java data types
  20. 12 tensorflow实战:修改三维tensor矩阵的某个剖面

热门文章

  1. npm run build 报错 Error: No PostCSS Config found in...
  2. 简单深入Joomla!3.1.5模块_组件开发(一)
  3. Facebook推荐算法模型DLRM解读
  4. SQL SERVER 使用游标删除所有主键
  5. springboot集成mongoDB简易使用
  6. Android Studio彻底删除Module
  7. ubuntu18下Docker运行springboot项目
  8. Java静态代理与动态代理实现
  9. django中的缓存 跨域问题(同源策略)
  10. Python占位符使用总结