2つのレイヤ2スイッチ間には物理的な接続が実装されており、それらの間のネットワーク接続を構成する必要があります。
1. LACP EtherChannelを設定し、番号を1にします。スイッチSW1とSVV2の間で、両側のインターフェイスEthernet0/0とEthernet0/1を使用して設定します。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