네트워크

vlan 복습과 PVST

MIN--A 2021. 8. 23. 12:46
728x90

r

 

1) 스위치에 이름부여
(config)#hostname L3

2) 각 switch에 vlan을 설정
L3(config)#vlan 10
L3(config-vlan)#exit
L3(config)#vlan 20
L3(config-vlan)#exit

나머지도 다 !

3) pc 연결 부분만 access port 설정
L2_4(config)#interface f0/21
L2_4(config-if)#switchport mode access 
L2_4(config-if)#switchport access vlan 10
L2_4(config-if)#int f0/22
L2_4(config-if)#switchport mode access 
L2_4(config-if)#switchport access vlan 20
L2_4(config-if)#exit

L2_3(config)#int f0/11
L2_3(config-if)#switchport mode access 
L2_3(config-if)#switchport access vlan 10
L2_3(config-if)#int f0/12
L2_3(config-if)#switchport mode access 
L2_3(config-if)#switchport access vlan 20
L2_3(config-if)#exit


4) trunk port 설정(tagging) 
L2_1(config)#int f0/11
L2_1(config-if)#switchport mode trunk 
L2_1(config-if)#switchport trunk allowed vlan 10,20

DTP에 의해 자동설정 
L2_4#sh interfaces f0/11 switchport 
Name: Fa0/11
Switchport: Enabled
Administrative Mode: dynamic auto
Operational Mode: trunk

sh interfaces f0/X switchport -> 다 트렁크 되어 있어야함 

5) SVI 주소 입력 후 L3기능 활성화(라우팅?)
L3(config)#int vlan 10
L3(config-if)#ip addr 192.168.10.254 255.255.255.0
L3(config-if)#int vlan 20
L3(config-if)#ip addr 192.168.20.254 255.255.255.0

L3(config)#ip routing
L3(config)#exit
L3#sh ip route
C    192.168.10.0/24 is directly connected, Vlan10
C    192.168.20.0/24 is directly connected, Vlan20


ping 테스트
게이트웨이
다른 네트워크주소 

 

192.168.10.10

 

 

 

 

6) root bridge 확인 
#sh spanning-tree
L3 : (vlan 0001, vlan 0010, vlan 0020 다 root bridge)

PVST (Per Vlan Spanning Tree protocl)
모든 vlan의 root bridge가 같음
- 우선순위를 조절해서 vlan 별 root bridge
- primmary secondary

루트 브릿지 변경
L2_1(config)#spanning-tree vlan 10 priority 0 
L2_2(config)#spanning-tree vlan 20 priority 0
#sh spanning-tree
확인 => 루트 브릿지를 이중화
L2_2(config)#spanning-tree vlan 10 root secondary 
L2_1(config)#spanning-tree vlan 10 root primary 

728x90