본문 바로가기

Switch

[Config] Inter VLAN Routing (with Router)

 

 

그림처럼 각각의 VLAN 통신하기 위해서 라우터에 설정된 서브인터페이스를 사용한다.

VLAN 게이트웨이 주소를 라우터의 서브인터페이스에 설정하기 때문에 따로 라우팅을 해줄 필요는 없다.

 

 

 

 

 

[LAB Topology]

 

 

 

<스위치 설정>

 

Switch(config)# vlan 10 ,20

Switch(config)# interface fastethernet 0/1

Switch(config-if)# switchport mode trunk

Switch(config-if)# switchport trunk allowed vlan 10,20

 

 

<라우터 설정>

 

 

router(config)# interface fastethernet 0/0

router(config-if)#no shutdown

-서브인터페이스가 아니라 물리적 인터페이스에서 활성화를 시켜준다

 

router(config)# interface fastethernet 0/0.10

router(config-subif)# encapsulation dot1q 10

router(config-subif)# ip address 1.1.10.2 255.255.255.0

-인식하기 쉽게 서브인터페이스번호를 VLAN으로 만들고 인캡슐레이션 지정할때 뒤에 VLAN정보를 넣는다

 

router(config)# interface fastethernet 0/0.20

router(config-if)# encapsulation dot1q 20

router(config-if)# ip address 1.1.20.2 255.255.255.0

 

 

'Switch' 카테고리의 다른 글

이중화 게이트웨이 프로토콜 (HSRP/VRRP)  (2) 2014.10.05
[Config] Inter VLAN Routing (with L3 Switch)  (0) 2014.09.29
Inter VLAN Routing  (0) 2014.09.29
[Config] STP Convergence Time 조정  (1) 2014.09.25
STP의 Blocking port 선출과정  (1) 2014.08.21