CCNA (200-120) 문제풀이 NO. 121

QUESTION 121

Refer to the exhibit.
What commands must be configured on the 2950 switch and the router to allow communication between host 1 and host 2? (Choose two.)


A. Router(config)# interface fastethernet 0/0
Router(config-if)# ip address 192.168.1.1 255.255.255.0
Router(config-if)# no shut down

B. 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

C. Router(config)# router eigrp 100
Router(config-router)# network 192.168.10.0
Router(config-router)# network 192.168.20.0

D. Switch1(config)# vlan database
Switch1(config-vlan)# vtp domain XYZ
Switch1(config-vlan)# vtp server

E. Switch1(config)# interface fastethernet 0/1
Switch1(config-if)# switchport mode trunk

F. Switch1(config)# interface vlan 1
Switch1(config-if)# ip default-gateway 192.168.1.1

Explanation
문제 : 호스트 1과 호스트 2 간의 통신을 허용하려면 2950 스위치와 라우터에 어떤 명령을 구성해야 합니까?

스위치1에는 VLAN 2개가 있으며, 서로 다른 VLAN이 통신을 하려면 라우터가 필요합니다.
여러 개의 VLAN을 하나의 인터페이스를 통해 통신을 하려면 스위치 fa0/1에서는 스위치 포트를 trunk로 설정해야하고,
라우터의 fa0/0에서는 서브인터페이스를 VLAN 개수에 맞게 구성하고 encapsulation을 지정해야 합니다.

정답은 B, E 입니다.
Powered by Blogger.