思科路由器命令大全(三)

16 :静态路由的配置
配置路由器A的主机名和接口参数
router>enable
router c onfigure terminal
router(conf)#hostname routerA
routerA(conf)#interface fastethernet 0/1           路由器A1端口为两路由器的连接端口
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          路由器A0端口为与主机的连接端口
routerA(conf-if)#ip address 192.168.1.2 255.255.255.0
routerA(conf-if)#no shutdown
主机Aip地址为 192.168.1.1
255.255.255.0
192.168.1.2
配置路由器B的主机名和接口参数
router>enable
router c onfigure terminal
router(conf)#hostname routerB
routerB(conf)#interface fastethernet 0/0           路由器B0端口为两路由器的连接端口
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           路由器B1端口为与主机的连接端口
routerB(conf-if)#ip address 192.168.3.1 255.255.255.0
主机Bip地址为 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
 
routerArouterB上配置默认路由
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
 
routerArouterB上配置动态路由(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.

你可能感兴趣的:(职场,休闲)