个人信息
使用Packet Tracer,正确配置网络参数,通过抓取HTTP数据包,分析TCP连接建立过程。
网络拓扑图如下图所示:

192.168.1.25
192.168.2.25路由器参数配置:


• Router>enable # 进入特权执行模式
• Router#configure terminal # 进入全局配置模式
• Router(config)#hostname R # 将路由器名称配置为R
• 配置接口:
• R(config)#interface Gig0/0/0
• R(config-if)#ip address 192.168.1.23 255.255.255.0
• R(config-if)#no shutdown # 激活接口
配置路由算法
• 启用动态路由
• R(conf)# router rip
• R(conf)#version 2 使用rip 2版本
• R(conf)#no auto-summary 关闭自动路由汇总
• 指定网络
• R(conf)#network 192.168.1.0
• R(conf)#network 192.168.2.0
通过抓取HTTP数据包得到的TCP报文,完成如下事情:
(1)画出TCP连接建立示意图


第三次实验报告:使用Packet Tracer分析TCP连接建立过程
原文:https://www.cnblogs.com/zhenglingfeng/p/11707357.html