Users Guide

Table Of Contents
OSPFv2
OS10(config)# router ospf 100
OS10(conf-router-ospf-100)# exit
OS10(config)# interface ethernet 1/1/1
OS10(conf-if-eth1/1/1)# no shutdown
OS10(conf-if-eth1/1/1)# no switchport
OS10(conf-if-eth1/1/1)# ip address 11.1.1.1/24
OS10(conf-if-eth1/1/1)# ip ospf 100 area 0.0.0.0
OSPFv2
OS10# show running-configuration ospf
!
interface ethernet1/1/1
ip ospf 100 area 0.0.0.0
!
router ospf 100
...
VRF OSPFv2
VRF OSPFv2
1. 创建 OSPFv2 VRF
ip vrf vrf-name
2. OSPF VRF CONFIGURATION OSPF
router ospf instance-number vrf vrf-name
3. INTERFACE OSPF
interface ethernet node/slot/port[:subport]
4. INTERFACE
no shutdown
5. INTERFACE LAG
no switchport
6. VRF
ip vrf forwarding vrf-name
7. IP
ip address ip-address/mask
8. OSPFv2
ip ospf process-id area area-id
process-id OSPF OSPFv2 ID 1 65535
area-id OSPFv2 ID IP (A.B.C.D) 1 65535
OSPFv2
OS10(config)# ip vrf vrf-blue
OS10(config-vrf-blue)# router ospf 100 vrf-blue
OS10(conf-router-ospf-100)# exit
OS10(config)# interface ethernet 1/1/2
OS10(conf-if-eth1/1/2)# no shutdown
OS10(conf-if-eth1/1/2)# no switchport
OS10(conf-if-eth1/1/2)# ip vrf forwarding vrf-blue
3 597