网络协议编号大全
Protocol Numbers
Last Updated
2020-01-31
Available Formats
Registry included below
原文:http://www.iana.org/assignments/protocol-numbers/protocol-num...
Continue reading >>Last Updated
2020-01-31
Available Formats
Registry included below
原文:http://www.iana.org/assignments/protocol-numbers/protocol-num...
Continue reading >>◎移至github更新:https://github.com/anzhihe/learning/tree/master/network
Google drive:https://drive.google.com/drive/folders/1-eD8rG-EDj4qu4SNX5paa8OcgXB3Fp7c
初级网络技术书籍
深入浅出Networking.pdf
网络是怎样连...
来源:https://github.com/geektime-geekbang/geektime-webprotocol,不错的一套课程。
为了帮助同学们更好的学习极客时间《Web协议详解与抓包实战》课程,附上相关课件、参考资料与书籍、演示的抓包。
课程中使用到的抓包文件,会直接更新到 SampleCaptures 目录中
课程中的课件都会更新在 PDF课件 目录中
tcpdump先抓包,然后用wireshark或者tshark分析
tcpdump使用
两端同时抓包分析,更方便定位问题 tcpdump -i eth0 host 100.69.xxx or 100.70.xxx and dst portrange 90-93...Continue reading >>
摘抄自Linux内核源码剖析-tcp/ip实现,来自:tcp_info说明
Continue reading >>struct tcp_info {
__u8 tcpi_state; //tcp state: TCP_SYN_SENT,TCP_SYN_RECV,TCP_FIN_WAIT1,TCP_CLOSE etc
__u8 tcpi_ca_state; //congestion state...