CCNA (200-120) 문제풀이 NO. 125
QUESTION 125
Which three elements must be used when you configure a router interface for VLAN trunking? (Choose three.)
A. one physical interface for each subinterface.
B. one IP network or subnetwork for each subinterface.
C. a management domain for each subinterface.
D. subinterface encapsulation identifiers that match VLAN tags.
E. one subinterface per VLAN.
F. subinterface numbering that matches VLAN tags.
Explanation
문제 : VLAN 트렁킹을 위해 라우터 인터페이스를 구성 할 때 사용해야하는 세 가지 요소는 무엇입니까?
하나의 라우터 인터페이스에 여러 개의 VLAN과 연결을 하기 위해서는 VLAN의 수와 동일하게 서브인터페이스를 구성해야 하고,
Encapsulation을 VLAN ID와 일치해야 합니다.
아래는 서브인터페이스 구성 예시 입니다.
먼저 인터페이스를 활성화 하고, 서브인터페이스 0/0.1개를 생성하여 "encapsulation dot1q 10" 명령어로 VLAN 10에 할당 했고,
서브인터페이스 0/0.2는 "encapsulation dot1q 20" 명령어로 VLAN 20에 할당 했네요.
예시와 같이 서브인터페이스의 넘버를 반드시 VLAN ID와 동일하게 설정 할 필요는 없습니다.
Router(config)# interface fastethernet 0/0
Router(config-if)# no shut down
Router(config)# interface fastethernet 0/0.1
Router(config-subif)# encapsulation dot1q 10
Router(config-subif)# ip address 192.168.10.1 255.255.255.0
Router(config)# interface fastethernet 0/0.2
Router(config-subif)# encapsulation dot1q 20
Router(config-subif)# ip address 192.168.20.1 255.255.255.0
정답은 B, D, E 입니다.