[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