物理接続は 2 つのレイヤ 2 スイッチ間に実装されており、それらの間のネットワーク接続を構成する必要があります。
1. LACP EtherChannel を設定し、番号を 1 に設定します。両側のインターフェイス Ethernet0/0 と Ethernet0/1 を使用して、スイッチ SW1 と SVV2 の間に構成します。LACP モードは両端で一致する必要があります
2 EtherChannel をトランク リンクとして設定します。
3. 802.1 q タグを使用してトランク リンクを設定します。
4. EtherChannel のネイティブ VLAN を VLAN 15 として設定します。


正解:
See the Explanation below.
Explanation
Answer as below configuration:
On SW1:
conf terminal
vlan 15
exit
interface range eth0/0 - 1
channel-group 1 mode active
exit
interface port-channel 1
switchport trunk encapsulation dot1q
switchport mode trunk
switchport trunk native vlan 15
end
copy run start
on SW2:
conf terminal
vlan 15
exit
interface range eth0/0 - 1
channel-group 1 mode active
exit
interface port-channel 1
switchport trunk encapsulation dot1q
switchport mode trunk
switchport trunk native vlan 15
end
copy run start