1、计算机网络实训项目五路由器基本操作与配置路由器工作在 IP 协议网络层,实现子网之间转发数据的设备。路由器的接口分为 3 种:a. 串行接口 (Serial):使用代号 s,如 s0/1, s0/2b. 以太网接口:使用代号 e,如 e0/1,e0/2cConsole 配置口路由器的常规配置包括主机名,特权模式密码,Console 线路密码,vty 远程登录密码,端口 ip 设置等。实验线路图如下:1)从 PC 机 x3 使用配置线连入路由器,完成路由器的基本配置Router#conf tRouter(config)#hostname routerA routerA(config)#enabl
2、e pass txx 特权模式明文密码routerA(config)#line console 0 Console 线路密码routerA(config-line)#password txx1routerA(config-line)#loginrouterA(config-line)#line vty 0 4 vty 远程登录密码routerA(config-line)#password txx2routerA(config-line)#loginrouterA(config-line)#exit2)路由器端口 IP 地址配置路由器是工作在网络层的设备,其每个端口有独立的 IP 地址。在实验线
3、路中要求将 f0/0 口配置 IP 地址 192.168.1.1,将 f0/1 口配置IP 地址 192.168.2.1,2 个端口分属不同的子网。routerA(config)#int f0/0routerA(config-if)#ip address 192.168.1.1 255.255.255.0routerA(config-if)#no shutrouterA(config-if)#int f0/1routerA(config-if)#ip address 192.168.2.1 255.255.255.0routerA(config-if)#no shutrouterA(confi
4、g-if)#exit3)路由器上设置路由协议 RIP只有一台路由器不需要设置路由协议,即直连网段间通信不需要在路由器上设置路由协议 4)主机 IP 的设定和网关的设定(网关即为主机下一站的 IP 地址)将 x1 主机的 IP 地址设定为 192.168.1.2(与路由器 f0/0 在同一子网) ,并设定网关为路由器 f0/0(192.168.1.1) 。将 x2 主机的 IP 地址设定为 192.168.2.2(与路由器 f0/1 在同一子网) ,并设定网关为路由器 f0/1(192.168.2.1) 。5)探测网络连通情况从主机 x1 使用 ping 命令连接其他 IP 地址,全部都连通。ping 192.168.1.1 (路由器 f0/0 端口)ping 192.168.2.1 (路由器 f0/1 端口)ping 192.168.2.2 (主机 x2)同理可测试主机 x2。