├── .gitignore ├── 1. 概述.md ├── 10. 动态选路协议.md ├── 11. UDP:用户数据报协议.md ├── 12. 广播和多播.md ├── 13. ICMP:Internet组管理协议.md ├── 14. DNS:域名系统.md ├── 15. TFTP:简单文件传送协议.md ├── 16. BOOTP:引导程序协议.md ├── 17. TCP:传输控制协议.md ├── 18. TCP连接的建立与终止.md ├── 19. TCP的交互数据流.md ├── 2. 链路层.md ├── 20. TCP的成块数据流.md ├── 21. TCP的超时与重传.md ├── 22. TCP的坚持定时器.md ├── 23. TCP的保活定时器.md ├── 3. IP:网际协议.md ├── 4. ARP:地址解析协议.md ├── 5. RARP:逆地址解析协议.md ├── 6. ICMP:Internet控制报文协议.md ├── 7. Ping程序.md ├── 8. Traceroute程序.md ├── 9. IP选路.md ├── LICENSE ├── README.md └── img ├── chap1 ├── img1.png ├── img2.png ├── img3.png ├── img4.png └── img5.png ├── chap10 ├── img0.png └── img1.png ├── chap11 ├── img0.png ├── img1.png ├── img2.png ├── img3.png ├── img4.png └── img5.png ├── chap12 └── img0.png ├── chap13 └── img0.png ├── chap14 ├── img0.png ├── img1.png ├── img2.png └── img3.png ├── chap15 └── img0.png ├── chap16 ├── img0.png └── img1.png ├── chap17 ├── img0.png └── img1.png ├── chap18 ├── img0.png ├── img1.png ├── img2.png ├── img3.png ├── img4.png ├── img5.png └── img6.png ├── chap2 ├── img1.png ├── img2.png └── img3.png ├── chap20 └── img0.png ├── chap21 ├── img0.png └── img1.png ├── chap3 ├── img0.png ├── img1.png └── img2.png ├── chap4 └── img0.png ├── chap6 ├── img0.png ├── img1.png ├── img2.png ├── img3.png ├── img4.png └── img5.png ├── chap7 ├── img0.png ├── img1.png └── img2.png ├── chap8 └── img0.png └── chap9 ├── img0.png ├── img1.png ├── img2.png └── img3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/.gitignore -------------------------------------------------------------------------------- /1. 概述.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/1. 概述.md -------------------------------------------------------------------------------- /10. 动态选路协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/10. 动态选路协议.md -------------------------------------------------------------------------------- /11. UDP:用户数据报协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/11. UDP:用户数据报协议.md -------------------------------------------------------------------------------- /12. 广播和多播.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/12. 广播和多播.md -------------------------------------------------------------------------------- /13. ICMP:Internet组管理协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/13. ICMP:Internet组管理协议.md -------------------------------------------------------------------------------- /14. DNS:域名系统.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/14. DNS:域名系统.md -------------------------------------------------------------------------------- /15. TFTP:简单文件传送协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/15. TFTP:简单文件传送协议.md -------------------------------------------------------------------------------- /16. BOOTP:引导程序协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/16. BOOTP:引导程序协议.md -------------------------------------------------------------------------------- /17. TCP:传输控制协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/17. TCP:传输控制协议.md -------------------------------------------------------------------------------- /18. TCP连接的建立与终止.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/18. TCP连接的建立与终止.md -------------------------------------------------------------------------------- /19. TCP的交互数据流.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/19. TCP的交互数据流.md -------------------------------------------------------------------------------- /2. 链路层.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/2. 链路层.md -------------------------------------------------------------------------------- /20. TCP的成块数据流.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/20. TCP的成块数据流.md -------------------------------------------------------------------------------- /21. TCP的超时与重传.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/21. TCP的超时与重传.md -------------------------------------------------------------------------------- /22. TCP的坚持定时器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/22. TCP的坚持定时器.md -------------------------------------------------------------------------------- /23. TCP的保活定时器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/23. TCP的保活定时器.md -------------------------------------------------------------------------------- /3. IP:网际协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/3. IP:网际协议.md -------------------------------------------------------------------------------- /4. ARP:地址解析协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/4. ARP:地址解析协议.md -------------------------------------------------------------------------------- /5. RARP:逆地址解析协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/5. RARP:逆地址解析协议.md -------------------------------------------------------------------------------- /6. ICMP:Internet控制报文协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/6. ICMP:Internet控制报文协议.md -------------------------------------------------------------------------------- /7. Ping程序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/7. Ping程序.md -------------------------------------------------------------------------------- /8. Traceroute程序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/8. Traceroute程序.md -------------------------------------------------------------------------------- /9. IP选路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/9. IP选路.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/README.md -------------------------------------------------------------------------------- /img/chap1/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap1/img1.png -------------------------------------------------------------------------------- /img/chap1/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap1/img2.png -------------------------------------------------------------------------------- /img/chap1/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap1/img3.png -------------------------------------------------------------------------------- /img/chap1/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap1/img4.png -------------------------------------------------------------------------------- /img/chap1/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap1/img5.png -------------------------------------------------------------------------------- /img/chap10/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap10/img0.png -------------------------------------------------------------------------------- /img/chap10/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap10/img1.png -------------------------------------------------------------------------------- /img/chap11/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap11/img0.png -------------------------------------------------------------------------------- /img/chap11/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap11/img1.png -------------------------------------------------------------------------------- /img/chap11/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap11/img2.png -------------------------------------------------------------------------------- /img/chap11/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap11/img3.png -------------------------------------------------------------------------------- /img/chap11/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap11/img4.png -------------------------------------------------------------------------------- /img/chap11/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap11/img5.png -------------------------------------------------------------------------------- /img/chap12/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap12/img0.png -------------------------------------------------------------------------------- /img/chap13/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap13/img0.png -------------------------------------------------------------------------------- /img/chap14/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap14/img0.png -------------------------------------------------------------------------------- /img/chap14/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap14/img1.png -------------------------------------------------------------------------------- /img/chap14/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap14/img2.png -------------------------------------------------------------------------------- /img/chap14/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap14/img3.png -------------------------------------------------------------------------------- /img/chap15/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap15/img0.png -------------------------------------------------------------------------------- /img/chap16/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap16/img0.png -------------------------------------------------------------------------------- /img/chap16/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap16/img1.png -------------------------------------------------------------------------------- /img/chap17/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap17/img0.png -------------------------------------------------------------------------------- /img/chap17/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap17/img1.png -------------------------------------------------------------------------------- /img/chap18/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap18/img0.png -------------------------------------------------------------------------------- /img/chap18/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap18/img1.png -------------------------------------------------------------------------------- /img/chap18/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap18/img2.png -------------------------------------------------------------------------------- /img/chap18/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap18/img3.png -------------------------------------------------------------------------------- /img/chap18/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap18/img4.png -------------------------------------------------------------------------------- /img/chap18/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap18/img5.png -------------------------------------------------------------------------------- /img/chap18/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap18/img6.png -------------------------------------------------------------------------------- /img/chap2/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap2/img1.png -------------------------------------------------------------------------------- /img/chap2/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap2/img2.png -------------------------------------------------------------------------------- /img/chap2/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap2/img3.png -------------------------------------------------------------------------------- /img/chap20/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap20/img0.png -------------------------------------------------------------------------------- /img/chap21/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap21/img0.png -------------------------------------------------------------------------------- /img/chap21/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap21/img1.png -------------------------------------------------------------------------------- /img/chap3/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap3/img0.png -------------------------------------------------------------------------------- /img/chap3/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap3/img1.png -------------------------------------------------------------------------------- /img/chap3/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap3/img2.png -------------------------------------------------------------------------------- /img/chap4/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap4/img0.png -------------------------------------------------------------------------------- /img/chap6/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap6/img0.png -------------------------------------------------------------------------------- /img/chap6/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap6/img1.png -------------------------------------------------------------------------------- /img/chap6/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap6/img2.png -------------------------------------------------------------------------------- /img/chap6/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap6/img3.png -------------------------------------------------------------------------------- /img/chap6/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap6/img4.png -------------------------------------------------------------------------------- /img/chap6/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap6/img5.png -------------------------------------------------------------------------------- /img/chap7/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap7/img0.png -------------------------------------------------------------------------------- /img/chap7/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap7/img1.png -------------------------------------------------------------------------------- /img/chap7/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap7/img2.png -------------------------------------------------------------------------------- /img/chap8/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap8/img0.png -------------------------------------------------------------------------------- /img/chap9/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap9/img0.png -------------------------------------------------------------------------------- /img/chap9/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap9/img1.png -------------------------------------------------------------------------------- /img/chap9/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap9/img2.png -------------------------------------------------------------------------------- /img/chap9/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutzchuck/tcpip-note/HEAD/img/chap9/img3.png --------------------------------------------------------------------------------