标签:通过 网关 outer network 路由器 link 拓扑 ospf协议 配置ip
虚链路拓扑结构配置各接口的IP地址信息,配置回环网卡固定IP地址,配置OSPF协议信息。
conf t
int f0/0
ip add 192.168.10.1 255.255.255.0
no shut
int f0/1
ip add 192.168.20.1 255.255.255.0
no shut
ex
int lo 0
ip add 1.1.1.1 255.255.255.255
no shut
ex
router ospf 1
router-id 1.1.1.1
network 192.168.10.0 0.0.0.255 area 2
network 192.168.20.0 0.0.0.255 area 2
配置各接口的IP地址信息,配置回环网卡固定IP地址,配置OSPF协议信息,创建虚链路。
conf t
int f0/0
ip add 192.168.20.2 255.255.255.0
no shut
int f0/1
ip add 192.168.30.1 255.255.255.0
no shut
ex
int lo 0
ip add 2.2.2.2 255.255.255.255
no shut
ex
router ospf 1
router-id 2.2.2.2
network 192.168.20.0 0.0.0.255 area 2
network 192.168.30.0 0.0.0.255 area 1
ex
router ospf 1
area 1 virtual-link 3.3.3.3
配置各接口的IP地址信息,配置回环网卡固定IP地址,配置OSPF协议信息,创建虚链路。
conf t
int f0/0
ip add 192.168.30.2 255.255.255.0
no shut
ex
int f0/1
ip add 192.168.40.1 255.255.255.0
no shut
int lo 0
ip add 3.3.3.3 255.255.255.255
no shut
ex
router ospf 1
router-id 3.3.3.3
network 192.168.30.0 0.0.0.255 area 1
network 192.168.40.0 0.0.0.255 area 0
ex
router ospf 1
area 1 virtual-link 2.2.2.2
配置各接口的IP地址信息,配置回环网卡固定IP地址,配置OSPF协议信息。
conf t
int f0/0
ip add 192.168.40.2 255.255.255.0
no shut
int f0/1
ip add 192.168.50.1 255.255.255.0
no shut
ex
int lo 0
ip add 4.4.4.4 255.255.255.255
no shut
ex
router ospf 1
router-id 4.4.4.4
network 192.168.40.0 0.0.0.255 area 0
network 192.168.50.0 0.0.0.255 area 0
标签:通过 网关 outer network 路由器 link 拓扑 ospf协议 配置ip
原文地址:https://blog.51cto.com/14449521/2437945