Layer 3 Etherchannel on Cisco IOS Switch
Layer 3 Etherchannel on Cisco IOS Switch
Rene Molenaar
In a previous lesson I explained how Etherchannels work and how to configure them, but I didn’t write
about layer 3 Etherchannels before. In this lesson, I’ll show you how to configure them.
A layer three etherchannel is similar to an interface on a router. The switch won’t “switch” traffic on this
interface but route it. Because it’s a layer three interface, we configure an IP address on it.
Before we configure the port channel settings, you need to make sure that all interfaces have the exact same
configuration. Once you use the channel-group command, the port-channel interface will automatically
inherit all settings from your physical interface. If you forget to run the no switchport command on an
interface, your etherchannel will be layer 2 instead of layer 3!
This creates our Etherchannel. We can verify our work like this:
1 of 2 2/22/25, 16:33
Layer 3 Etherchannel on Cisco IOS Switch https://networklessons.com/switching/layer-3-etherch...
Above, you can see that our port-channel 12 interface is layer 3, and it’s operational. Just like any other layer
3 interface, we can configure an IP address on this port-channel interface:
SW1(config)#interface port-channel 12
SW1(config-if)#ip address 192.168.12.1 255.255.255.0
SW2(config)#interface port-channel 12
SW2(config-if)#ip address 192.168.12.2 255.255.255.0
2 of 2 2/22/25, 16:33