Podcast: Download (Duration: 16:00 — 15.7MB)
Link Aggregation Control Protocol (LACP) es parte del estándar IEEE802.3ad y permite agregar varios puertos físicos a uno lógico. Además LACP permite negociar entre los dos extremos de la conexión.
Configuración en Cisco:
12345678910111213141516171819 interface Port-channel10description Portchannel con lacpswitchport trunk encapsulation dot1qswitchport trunk allowed vlan 100,200switchport mode trunkspanning-tree portfast trunk!interface GigabitEthernet0/2description PCconLACP1switchport trunk encapsulation dot1qswitchport mode trunkchannel-group 10 mode active!interface GigabitEthernet0/3description PCconLACP2switchport trunk encapsulation dot1qswitchport mode trunkchannel-group 10 mode active!
Configuración en Mikrotik
1 [admin@Router1] interface bonding> add slaves=ether1,ether2
Configuración en Debian
12345678 auto bond0iface bond0 inet staticaddress 10.0.0.80gateway 10.0.0.1broadcast 10.0.0.255netmask 255.255.255.0up /sbin/ifenslave bond0 eth1 eth2down /sbin/ifenslave -d bond0 eth0 eth1
Enlaces recomendados:
Os puede ayudar a comprender concepto LCAP=TRUNK
https://youtu.be/PJHAEpBJkXo
Gracias por el vídeo.