1.PortChannel01~04を作成する
MC1 & MC2とも同様に設定する
sudo config portchannel add PortChannel01
sudo config portchannel add PortChannel02
sudo config portchannel add PortChannel03
sudo config portchannel add PortChannel04
2.PortChannel01~04に其々Ethernet portを付属させる
MC1 & MC2とも同様に設定する
sudo config portchannel member add PortChannel01 Ethernet48
sudo config portchannel member add PortChannel01 Ethernet52
sudo config portchannel member add PortChannel02 Ethernet0
sudo config portchannel member add PortChannel03 Ethernet1
sudo config portchannel member add PortChannel04 Ethernet2
3.PortChannel01~04をVlanに其々付属させる
MC1 & MC2とも同様に設定する
sudo config vlan add 10
sudo config vlan add 1
sudo config vlan member add 10 PortChannel01
sudo config vlan member add -u 1 PortChannel01
sudo config vlan member add -u 1 PortChannel02
sudo config vlan member add -u 1 PortChannel03
sudo config vlan member add -u 1 PortChannel04
4.MCLAGのDomainおよび、Vlanにunique-ipを設定する準備
MC1
sudo config mclag add 1 192.168.10.1 192.168.10.2 PortChannel01
sudo config mclag unique-ip add Vlan10
sudo config mclag member add 1 PortChannel02
sudo config mclag member add 1 PortChannel03
sudo config mclag member add 1 PortChannel04
MC2
sudo config mclag add 1 192.168.10.2 192.168.10.1 PortChannel01
sudo config mclag unique-ip add Vlan10
sudo config mclag member add 1 PortChannel02
sudo config mclag member add 1 PortChannel03
sudo config mclag member add 1 PortChannel04
5.MCLAGのVlanにunique-ipを設定する
MC1
sudo config interface ip add Vlan10 192.168.10.1/24
MC2
sudo config interface ip add Vlan10 192.168.10.2/24
設定が終了したら保存を必ず行います