Un etherchannel di livello 3 è simile a un’interfaccia su un router. Lo switch non “commuterà ” il traffico su questa interfaccia ma lo instraderà . Poiché è un’interfaccia di livello 3, configuriamo un indirizzo IP su di essa.
Userò due interruttori per questo:
Prima di configurare le impostazioni del port channel, è necessario assicurarsi che tutte le interfacce abbiano la stessa identica configurazione. Una volta utilizzato il comando channel-group , l’interfaccia port-channel erediterà automaticamente tutte le impostazioni dall’interfaccia fisica. Se dimentichi di eseguire il comando no switchport su un’interfaccia, il tuo etherchannel sarà il livello 2 anziché il livello 3!
Detto questo, configuriamo i nostri switch:
SW1(config)#interface range fastEthernet 0/1 - 2
SW1(config-if-range)#no switchport
SW1(config-if-range)#channel-group 12 mode on
Creating a port-channel interface Port-channel 12
SW2(config)#interface range fa0/1 - 2
SW2(config-if-range)#no switchport
SW2(config-if-range)#channel-group 12 mode on
Creating a port-channel interface Port-channel 12
Questo crea il nostro Etherchannel, possiamo verificare il nostro lavoro in questo modo:
SW1#show etherchannel 12 summary
Flags: D - down P - bundled in port-channel
I - stand-alone s - suspended
H - Hot-standby (LACP only)
R - Layer3 S - Layer2
U - in use f - failed to allocate aggregator
M - not in use, minimum links not met
u - unsuitable for bundling
w - waiting to be aggregated
d - default port
Number of channel-groups in use: 1
Number of aggregators: 1
Group Port-channel Protocol Ports
------+-------------+-----------+-----------------------------------------------
12 Po12(RU) - Fa0/1(P) Fa0/2(P)
Sopra puoi vedere che la nostra interfaccia port-channel 12 è di livello 3 ed è operativa. Proprio come qualsiasi altra interfaccia di livello 3, possiamo configurare un indirizzo IP su questa interfaccia port-channel:
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
Vediamo se funziona:
SW1#ping 192.168.12.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.12.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/8 ms
Nessun problema! Se hai abilitato il routing IP sul tuo switch, vedrai che lo switch utilizza l’interfaccia port-channel nella sua tabella di routing:
SW1#show ip route connected
C 192.168.12.0/24 is directly connected, Port-channel12