上面我有两个 L3 交换机。ESW1 有 vlan 10 和 20 ESW2 有 vlan 10 和 30(相同的十个)
当我在 ESW1 和 ESW2 上配置 OSPF 时,它不相邻。我希望 OSPF 将 vlan 20 通告给 ESW2,将 vlan 30 通告给 ESW1
我确实为 ESW2 上的 Vlan 20 和 ESW3 上的 30 创建了一个 SVI,以便他们可以交谈。
我只想知道是否有可能让 OSPF 在区域 0 中相互通告唯一的 Vlan。
ESW1 配置
interface Vlan1
no ip address
shutdown
!
interface Vlan10
ip address 10.10.10.254 255.255.255.0
ip ospf network point-to-point
!
interface Vlan20
ip address 10.10.20.254 255.255.255.0
!
router ospf 1
log-adjacency-changes
network 10.10.20.0 0.0.0.255 area 0
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
no cdp log mismatch duplex
!
!
英语翻译 2
!
interface Vlan1
no ip address
shutdown
!
interface Vlan10
ip address 10.10.10.253 255.255.255.0
ip ospf network point-to-point
!
interface Vlan30
ip address 10.10.30.254 255.255.255.0
!
router ospf 1
log-adjacency-changes
network 10.10.30.0 0.0.0.255 area 0
!