文档仅供参考,不当之处,请联系改正。
7.路由协议的选择:OSPF(Open Shortest Path First开放式最短路径优先)[1]是一个内部网关协议(Interior Gateway Protocol,简称IGP),用于在单一自治系统(autonomous system,AS)内决策路由。与RIP相比,OSPF是链路状态协议,而RIP是距离矢量协议。OSPF的协议管理距离(AD)是110。 8.主机IP配置:
9.路由器配置代码: 路由器1: Router# Router>en Router#conf t
- 4 -
2020年4月19日
文档仅供参考,不当之处,请联系改正。
Router(config)#int fa0/1
Router(config-if)#ip address 192.168.1.254 255.255.255.0 Router#int se0/1/0
Router(config-if)#ip address 10.0.0.1 255.0.0.0 Router(config)#int lo 1
Router(config-if)#ip add 192.168.11.11 255.255.255.255 Router(config-if)#no sh Router(config-if)#exit
Router(config)#router ospf 100
Router(config-router)#network 10.0.0.0 0.255.255.255 area 0Router(config-router)#network 192.168.1.0 0.0.0.255 area 0 Router(config-router)#exit Router(config)#exit 路由器2: Router# Router>en Router#conf t
Router(config)#int fa0/1
Router(config-if)#ip address 192.168.2.254 255.255.255.0 Router#int se0/1/0
Router(config-if)#ip address 10.0.0.2 255.0.0.0 Router#int se0/1/1
2020年4月19日
- 5 -
文档仅供参考,不当之处,请联系改正。
Router(config-if)#ip address 100.0.0.1 255.0.0.0 Router(config)#int lo 1
Router(config-if)#ip add 192.168.22.11 255.255.255.255 Router(config-if)#no sh Router(config-if)#exit
Router(config)#router ospf 100
Router(config-router)#network 10.0.0.0 255.0.0.0 area 0 Router(config-router)#network 100.0.0.0 255.0.0.0 area 0 Router(config-router)#network 192.168.2.0 0.0.0.255 area 0Router(config-router)#exit Router(config)#exit
路由器3: Router# Router>en Router#conf t
Router(config)#int fa0/0
Router(config-if)#ip address 192.168.4.254 255.255.255.0 Router#int se0/1/1
Router(config-if)#ip address 100.0.0.2 255.0.0.0 Router(config)#int lo 1
Router(config-if)#ip add 192.168.33.11 255.255.255.255
2020年4月19日
- 6 -