一、简介
OSPF 是目前最广泛使用的一种动态路由协议,它属于链路状态路由协议,具有路由变化收敛速度快,无路由环路,支持变长子网掩码(VLSM)和汇总,层次区域划分等优先点。在网络中使用 OSPF 协议后,大部分路由将由 OSPF 协议自行计算和生成,无需网络管理员人工配置,当网络拓扑发生变化时,协议可以自动计算,更正路由,极大地方便了网络管理。但如果使用时不结合具体网络应用环境,不做好细致的规划,OSPF 协议的使用效果会大打折扣,甚至引发故障。
1.先配置各个接口的 IP 地址
Router(config)#int gig 0/0
Router(config-if)#no shutdown //打开接口
Router(config-if)#ip address 11.1.1.1 255.255.255.0
//配置 IP 和子网掩码
Router(config-if)#exit
Router(config)#int gig 0/2
Router(config-if)#no shutdown
Router(config-if)#ip address 192.168.10.1 255.255.255.0
Router(config)#int gig 0/0
Router(config-if)#no shutdown
//打开接口
Router(config-if)#ip address 11.1.1.2 255.255.255.0
//配置 IP 地址和子网掩码
Router(config-if)#exit
Router(config)#int gig 0/2
Router(config-if)#no shutdown
Router(config-if)#ip address 192.168.20.1 255.255.255.0
因为路由器的接口默认情况下是关闭的,所以进入接口后需要使用“no shutdown”打开接口!
Router(config)#router ospf 1
//配置 OSPF 动态路由,进程号为 1
Router(config-router)#network 192.168.10.0 255.255.255.0 area 0
//宣告网段,配置区域(area),区域 0 是骨干区域
Router(config-router)#network 11.1.1.0 255.255.255.0 area 0
Router(config)#router ospf 1
//配置 OSPF 动态路由,进程号为 1
Router(config-router)#network 192.168.20.0 255.255.255.0 area 0
//宣告网段,配置区域(area),区域 0 是骨干区域
Router(config-router)#network 11.1.1.0 255.255.255.0 area 0
© 版权声明
THE END