A network administrator is inspecting the interface configurations on two interconnecting enterprise switches, SW-CORP-A and SW-CORP-B. The partial configuration snippet for interface GigabitEthernet1/0/12 on SW-CORP-A is shown below:
interface GigabitEthernet1/0/12
switchport mode trunk
switchport trunk native vlan 50
switchport trunk allowed vlan 10,20,30
The corresponding interconnecting interface GigabitEthernet1/0/12 on SW-CORP-B is configured as follows:
interface GigabitEthernet1/0/12
switchport mode trunk
switchport trunk native vlan 10
switchport trunk allowed vlan 10,20,50
If an untagged broadcast frame originating from an end-host assigned to VLAN 50 arrives at SW-CORP-A, what will happen to the frame when SW-CORP-A attempts to process it for transmission across interface GigabitEthernet1/0/12?
- The frame is dropped at the egress interface of SW-CORP-A because VLAN 50 is excluded from the trunk's allowed VLAN list.Cevap
- BThe frame is transmitted untagged across the link and mapped directly into VLAN 10 upon arriving at SW-CORP-B due to the native VLAN mismatch.
- CThe frame is encapsulated with an 802.1Q tag for VLAN 50 and routed to VLAN 10 via Layer 3 switch processing on SW-CORP-B.
- DThe frame is transmitted untagged across the trunk link and successfully placed into VLAN 50 on SW-CORP-B because native VLAN traffic bypasses allowed VLAN restrictions.