思科路由器命令3

   
16 :静态路由的配置
配置路由器 A 的主机名和接口参数
router>enable
router#configure terminal
router(conf)#hostname routerA
routerA(conf)#interface fastethernet 0/1 路由器 A 1 端口为两路由器的连接端口
routerA(conf-if)#ip address 192.168.2.1 255.255.255.0
routerA(conf-if)#no shutdown
routerA(conf-if)#exit
routerA(conf)# interface fastethernet 0/0 路由器 A 0 端口为与主机的连接端口
routerA(conf-if)#ip address 192.168.1.2 255.255.255.0
routerA(conf-if)#no shutdown
主机 A ip 地址为 192.168.1.1
255.255.255.0
192.168.1.2
配置路由器 B 的主机名和接口参数
router>enable
router#configure terminal
router(conf)#hostname routerB
routerB(conf)#interface fastethernet 0/0 路由器 B 0 端口为两路由器的连接端口
routerB(conf-if)#ip address 192.168.2.2 255.255.255.0
routerB(conf-if)#no shutdown
routerB (conf-if)#exit
routerB(conf)# interface fastethernet 0/1 路由器 B 1 端口为与主机的连接端口
routerB(conf-if)#ip address 192.168.3.1 255.255.255.0
主机 B ip 地址为 192.168.3.2
255.255.255.0
192.168.3.1
配置路由器 A 的静态路由表
routerA(conf)#ip router 192.168.3.0 255.255.255.0 192.168.2.2
配置路由器 B 的静态路由表
routerA(conf)#ip router 192.168.1.0 255.255.255.0 192.168.2.1
routerA routerB 上配置默认路由
routerA(conf)#ip route 0.0.0 .0 0.0.0.0 192.168.2.2
routerA(conf)#ip classless
routerB(conf)#ip route 0.0.0 .0 0.0.0.0 192.168.2.1
routerB(conf)#ip classless
routerA routerB 上配置动态路由 (RIP)
routerA(conf)#router rip
routerA(conf)#network 192.168.1.0
routerA(conf)#network 192.168.2.0
routerB(conf)# router rip
routerB(conf)#network 192.168.2.0
routerB(conf)#network 192.168.3.0
 

你可能感兴趣的:(职场,休闲,思科,交换)