본문 바로가기
Network/Dell

[Dell] OS9 vs OS10 VLT 구성 및 차이점

by 오송나라 2024. 12. 12.
728x90

구성도

  • 서로의 장비 사이에 링크 3개 연결
  • 2개의 링크는 LACP 구성
  • 1개의 링크는 백업 링크로 Routed port로 사용
  • 장비 : S4048-ON 2EA

OS9

  • VLAN을 사용하려면, 기존에 Cisco 처럼 사용하던 access mode, trunk mode가 아니고 untagged, tagged를 사용한다.
  • 기존에는 물리적인 Interface Port에 tag를 설정하였지만, OS9에서는 Interface Vlan 에서 설정해야한다.

OS10

  • VLAN을 사용하려면 기존처럼 access mode, trunk mode 사용하면 된다.
  • Interface Port에 tag 넣는다.

정리

  • OS9은 Tagged, Untagged를 사용
  • OS10은 Access, Trunk 사용

OS9 vs OS10 Config 차이점

OS9#1

interface GigabitEthernet 1/48
 description ##Backup_Link##
 ip address 1.1.1.1/24
 mtu 9216
 no shutdown

interface TenGigabitEthernet 1/49
 description ##VLTi##
 no ip address
 no shutdown

interface TenGigabitEthernet 1/50
 description ##VLTi##
 no ip address
 no shutdown

interface Port-channel 99
 description ##VLTi##
 no ip address
 channel-member TenGigabitEthernet 1/49-1/50
 no shutdown

interface Vlan 10
 ip address 10.10.10.2/24
 vrrp-group 10
  priority 110
  virtual-address 10.10.10.1
 no shutdown

interface Vlan 20
 ip address 20.20.20.2/24
 vrrp-group 20
  priority 110
  virtual-address 20.20.20.1
 no shutdown
 
interface Vlan 30
 ip address 30.30.30.2/24
 vrrp-group 30
  priority 110
  virtual-address 30.30.30.1
 no shutdown

vlt domain 10
 peer-link port-channel 99
 back-up destination 1.1.1.2
 primary-priority 110
 unit-id 0
 peer-routing

OS9#2

interface GigabitEthernet 1/48
 description ##Backup_Link##
 ip address 1.1.1.2/24
 mtu 9216
 no shutdown

interface TenGigabitEthernet 1/49
 description ##VLTi##
 no ip address
 no shutdown

interface TenGigabitEthernet 1/50
 description ##VLTi##
 no ip address
 no shutdown

interface Port-channel 99
 description ##VLTi##
 no ip address
 channel-member TenGigabitEthernet 1/49-1/50
 no shutdown

interface Vlan 10
 ip address 10.10.10.3/24
 vrrp-group 10
  virtual-address 10.10.10.1
 no shutdown

interface Vlan 20
 ip address 20.20.20.3/24
 vrrp-group 20
  virtual-address 20.20.20.1
 no shutdown
 
interface Vlan 30
 ip address 30.30.30.3/24
 vrrp-group 30
  virtual-address 30.30.30.1
 no shutdown

vlt domain 10
 peer-link port-channel 99
 back-up destination 1.1.1.1
 primary-priority 100
 unit-id 1
 peer-routing

OS10#1

interface GigabitEthernet 1/48
 description ##Backup_Link##
 ip address 1.1.1.1/24
 no ip address dhcp
 no shutdown
 
interface TenGigabitEthernet 1/49
 description ##VLTi##
 no shutdown
 channel-group 99 mode active

interface TenGigabitEthernet 1/50
 description ##VLTi##
 no shutdown
 channel-group 99 mode active

interface port-channel 99
 description ##VLTi##
 no shutdown
 switchport mode trunk
 vlt-port-channel 99
 
interface vlan 10
 no shutdown
 ip address 10.10.10.2/24
 vrrp-group 10
  virtual-address 10.10.10.1
  priority 110
  
interface vlan 20
 no shutdown
 ip address 20.20.20.2/24
 vrrp-group 20
  virtual-address 20.20.20.1
  priority 110
  
interface vlan 30
 no shutdown
 ip address 30.30.30.2/24
 vrrp-group 30
  virtual-address 30.30.30.1
  priority 110
  
vlt doamin 10
 backup destination 1.1.1.2
 discovery-interface TenGigabitEthernet 1/49-1/50
 primary-priority 8192

OS10#2

interface GigabitEthernet 1/48
 description ##Backup_Link##
 ip address 1.1.1.2/24
 no ip address dhcp
 no shutdown
 
interface TenGigabitEthernet 1/49
 description ##VLTi##
 no shutdown
 channel-group 99 mode active

interface TenGigabitEthernet 1/50
 description ##VLTi##
 no shutdown
 channel-group 99 mode active

interface port-channel 99
 description ##VLTi##
 no shutdown
 switchport mode trunk
 vlt-port-channel 99
 
interface vlan 10
 no shutdown
 ip address 10.10.10.3/24
 vrrp-group 10
  virtual-address 10.10.10.1
  
interface vlan 20
 no shutdown
 ip address 20.20.20.3/24
 vrrp-group 20
  virtual-address 20.20.20.1
  
interface vlan 30
 no shutdown
 ip address 30.30.30.3/24
 vrrp-group 30
  virtual-address 30.30.30.1
  
vlt doamin 10
 backup destination 1.1.1.1
 discovery-interface TenGigabitEthernet 1/49-1/50

 

추가 자료

[Dell] Dell OS10에 대해서 알아보자

 

[Dell] Dell OS10에 대해서 알아보자

Dell Networking OS10 이란?Linux, 오픈 컴퓨팅, 네트워킹의 장점을 결합하여 다중 계층의 분화를 지원하도록 설계되었습니다.Dell Networking SmartFabric OS10은 PowerSwitch 플랫폼에서 실행되도록 설계된 Debian Li

ohsong-city.tistory.com

 

[Dell] OS10 Switch VLT 구성

 

[Dell] OS10 Switch VLT 구성

안녕하세요. 오송입니다. 오늘은 Dell Switch의 VLT 설정을 해보도록 하겠습니다. 천천히 따라오시면서 모르는 부분이 있으시면, 댓글 달아주시면 됩니다.기본 내용Dell VLT와 Cisco VPC의 차이점은?Dell

ohsong-city.tistory.com

 

728x90

'Network > Dell' 카테고리의 다른 글

[Dell] Dell OS10에 대해서 알아보자  (0) 2024.08.27
[Dell] OS10 Switch VLT 구성  (0) 2024.04.08
[Dell] OS10 Switch 기본 설정  (0) 2024.04.08