HTTP

  1. AnyProxy: http://anyproxy.io/cn/
  2. aria2:https://github.com/aria2/aria2

工具

  1. 扫描:https://nmap.org/
  2. https://github.com/buger/goreplay
  3. https://github.com/session-replay-tools/tcpcopy
  4. Apache Bench:https://httpd.apache.org/docs/2.4/programs/ab.html

网络优化

  1. https://github.com/skywind3000/kcp
  2. BBR: https://www.coonote.com/note/linux-bbr-acceleration.html
  3. Linux TCP队列相关参数的总结: http://blog.sina.com.cn/s/blog_e59371cc0102vg4n.html
  4. Android微信智能心跳方案:https://mp.weixin.qq.com/s?__biz=MzAwNDY1ODY2OQ==&mid=207243549&idx=1&sn=4ebe4beb8123f1b5ab58810ac8bc5994

TCP/IP

  1. 就是要你懂 TCP:http://jm.taobao.org/2017/06/08/20170608/
  2. 详解TCP/IP重组:http://mp.weixin.qq.com/s/ifZk5Ox9cnixq1ZxgwFBSw

Server

  1. Nginx模块开发入门:http://blog.codinglabs.org/articles/intro-of-nginx-module-development.html
  2. Nginx Quick Reference: https://github.com/trimstray/nginx-quick-reference
  3. http://agentzh.org/misc/slides/ngx-openresty-ecosystem/#1
  4. OpenResty 最佳实践:https://www.gitbook.com/book/moonbingbing/openresty-best-practices
  5. agentzh 的 Nginx 教程:https://openresty.org/download/agentzh-nginx-tutorials-zhcn.html
  6. 深入 NGINX: 我们如何设计性能和扩展: https://linux.cn/article-5681-1.html?pr

推送

MQTT:http://mqtt.org/

即时通讯网:http://www.52im.net/

网络检查 MRT

http://winmtr.net/download-winmtr/

iptables

  1. 查看当前规则
  2. iptables -L -n
  3. 清除所有规则
  4. iptables -F
  5. 设置规则
  6. iptables -A INPUT -i lo -j ACCEPT
  7. iptables -A INPUT -s 192.168.1.1 -j ACCEPT
  8. iptables -A INPUT -p tcp --dport 9200 -j DROP
  9. iptables -A INPUT -p tcp --dport 5601 -j DROP
  10. 保存重启
  11. /etc/rc.d/init.d/iptables save
  12. service iptables restart

抓包

mitmproxy --insecure

sudo nmap -sS -T5 -p 55535-65535 192.168.1.1 -oN 1.txt

Angry IP Scanner 扫描IP端口

tcpipprotocols.png