有没有办法从 OSPF 配置中删除局域网(44.44.44.0/24)?
我已经这样做了,但我认为它不正确:
En
Conf t
router ospf 100
no ip address 44.44.44.0 0.255.255.255
有没有办法从 OSPF 配置中删除局域网(44.44.44.0/24)?
我已经这样做了,但我认为它不正确:
En
Conf t
router ospf 100
no ip address 44.44.44.0 0.255.255.255
这取决于您如何通过 ospf 宣传您的网络。如果您想从 ospf 中删除现有网络,那么下面考虑到您在 ospf 配置下已经有 44.44.44.0 0.255.255.255 的条目。
Conf t
router ospf 100
no network 44.44.44.0 0.255.255.255
如果你在接口下有 ospf 那么你应该使用
router ospf 100
passive-interface default ( it will apply to all interfaces)
no passive-interface {interface name} ( Networks bound to this interfaces will be advertised in ospf)