본문 바로가기
Network/Dell

[Dell] Dell switch OS10 Demo Test - Building L2/L3 fabric with VLAG and OSPF

by 오송나라 2025. 3. 17.
728x90
해당 테스트는 Dell 의 Demo center에서 테스트 한 것을 업로드 한 것 입니다.

0. 구성도

1. Config 셋팅

1.1 OS10-SW01

1.1.1 Hostname 설정

configure terminal 
hostname OS10-SW01

1.1.2 Management Interface 설정

interface mgmt 1/1/1 
 no ip address dhcp 
 ip address 192.168.122.11/24 
 no shutdown

1.1.3 VLT 인터페이스 no switchport mode 설정

interface range ethernet 1/1/1-1/1/2 
 no switchport 
 no shutdown

1.1.4 VLT Domain 생성 및 Peer routing enable

vlt-domain 1 
 discovery-interface ethernet 1/1/1-1/1/2 
 backup destination 192.168.122.12 
 vlt-mac 0a:0b:0c:dd:ee:ff 
 peer-routing

1.1.5 VLAN 200 생성, Port-channel 30 생성 및 VLT-ID 할당

interface vlan 200 
 exit 
 
interface port-channel 30 
 switchport mode trunk 
 switchport trunk allowed vlan 200 
 no shutdown 
 vlt-port-channel 30

1.1.6 Port-channel 30에 member port 할당

interface ethernet 1/1/5 
 channel-group 30 mode active 
 no shutdown

1.1.7 VRRP 설정

interface vlan 200 
 ip address 10.1.1.252/24 
 no shutdown 
 vrrp-group 200 
 virtual-address 10.1.1.254

1.1.8 lookback interface 구성 및 OSPF 정의

interface loopback 0 
 ip address 1.1.1.1/32 
 no shutdown 
 ip ospf 100 area 0.0.0.0

1.1.9 Spine interface 구성 및 OSPF 정의

interface ethernet 1/1/3 
 no switchport 
 ip address 172.16.3.1/30 
 no shutdown 
 ip ospf 100 area 0.0.0.0 
 exit 
 
interface ethernet 1/1/4 
 no switchport 
 ip address 172.16.7.1/30 
 no shutdown 
 ip ospf 100 area 0.0.0.0

1.1.10 OSPF 활성화, 구성 및 저장

router ospf 100 
log-adjacency-changes 

write memory

1.2 OS10-SW02

1.2.1 Hostname 설정

configure terminal 
 hostname OS10-SW02

1.2.2 Management Interface 설정

interface mgmt 1/1/1 
 no ip address dhcp 
 ip address 192.168.122.12/24 
 no shutdown

1.2.3 VLT Interface no switchport mode 설정

interface range ethernet 1/1/1-1/1/2
 no switchport
 no shutdown

1.2.4 VLT Domain 생성 및 peer routing 사용

vlt-domain 1 
 discovery-interface ethernet 1/1/1-1/1/2 
 backup destination 192.168.122.11 
 vlt-mac 0a:0b:0c:dd:ee:ff 
 peer-routing

1.2.5 VLAN 200 생성, Port-channel 30 생성 및 VLT-ID 할당

interface vlan 200 
 exit 
 
interface port-channel 30 
 switchport mode trunk 
 switchport trunk allowed vlan 200 
 no shutdown 
 vlt-port-channel 30

1.2.6 Port-channel 30에 member port 할당

interface ethernet 1/1/5 
 channel-group 30 mode active 
 no shutdown

1.2.7 VRRP 설정

interface vlan 200 
 ip address 10.1.1.253/24 
 no shutdown 
 vrrp-group 200 
 virtual-address 10.1.1.254

1.2.8 Loopback interface 구성 및 OSPF 정의

interface loopback 0 
 ip address 1.1.1.2/32
 no shutdown 
 ip ospf 100 area 0.0.0.0

1.2.9 Spine interface 구성 및 OSPF 정의

interface ethernet 1/1/3 
 no switchport 
 ip address 172.16.4.1/30 
 no shutdown 
 ip ospf 100 area 0.0.0.0 
 exit 
 
interface ethernet 1/1/4 
 no switchport 
 ip address 172.16.6.1/30 
 no shutdown 
 ip ospf 100 area 0.0.0.0

1.2.10 OSPF 활성화, 구성 및 저장

router ospf 100 
log-adjacency-changes

write memory
728x90

1.3 OS10-SW03

1.3.1 Hostname 설정

configure terminal 
hostname OS10-SW03

1.3.2 Loopback interface 구성 및 OSPF 정의

interface loopback 0 
 ip address 1.1.1.3/32 
 no shutdown 
 ip ospf 100 area 0.0.0.0

1.3.3 LEAF interface 구성 및 OSPF 정의

interface ethernet 1/1/3 
 no switchport 
 ip address 172.16.3.2/30 
 no shutdown 
 ip ospf 100 area 0.0.0.0 
 exit 
 
interface ethernet 1/1/4 
 no switchport 
 ip address 172.16.6.2/30 
 no shutdown 
 ip ospf 100 area 0.0.0.0

1.3.4 OSPF 활성화 및 구성 / 저장

router ospf 100 
 log-adjacency-changes 

write memory

 

1.4 OS10-SW04

1.4.1 Hostname 설정

configure terminal 
hostname OS10-SW04

1.4.2 Loopback interface 구성 및 OSPF 정의

interface loopback 0 
 ip address 1.1.1.4/32 
 no shutdown 
 ip ospf 100 area 0.0.0.0

1.4.3 LEAF interface 구성 및 OSPF 정의

interface ethernet 1/1/3 
 no switchport 
 ip address 172.16.4.2/30 
 no shutdown 
 ip ospf 100 area 0.0.0.0 
 exit 
 
interface ethernet 1/1/4 
 no switchport 
 ip address 172.16.7.2/30 
 no shutdown 
 ip ospf 100 area 0.0.0.0

1.4.4 OSPF 활성화 및 구성 / 저장

router ospf 100 
 log-adjacency-changes 

write memory

 

1.5 OS10-SW05

1.5.1 Hostname 설정

configure terminal 
hostname OS10-SW05

1.5.2 VLAN 200 생성, Port-channel 30 생성 및 멤버 포트 추가

interface vlan 200 
 ip address 10.1.1.101/24 
 exit 
 
interface port-channel 30 
 switchport mode trunk 
 switchport trunk allowed vlan 200 
 no shutdown 
 exit 
 
interface range ethernet 1/1/1-1/1/2 
 channel-group 30 mode active 
 no shutdown 
 end 
 
write memory

2. show config 체크

2.1 OSPF neighbours 확인

show ip ospf neighbor

2.2 OSPF topology 확인

show ip ospf topology

2.3 OSPF routes 확인

show ip ospf routes

2.4 Port-Channel 확인

show vlt 1 vlt-port-detail

728x90