Creacion VLANS routers CISCO y otras marcas
CREACION DE VLANS
sw0(config)# interface vlan 4
sw0(config-if)# description Vlan4
sw0(config-if)# no shutdown
sw0(config)# interface vlan 5
sw0(config-if)# description Vlan5sw0(config-if)# no shutdown
PORT CHANNELS
(En ambos switch)
interface fasthethernet 0/6 - 7
channel-group 1 mode desirable
LINUX (CentOS, Fedora, RedHat)
CREACION DE VLANS
yum -yinstall vconfig
Editar archivo /etc/sysconfig/network
vim /etc/sysconfig/network
Agregar la linea
VLAN=yes
Editar este archivo de configuración
vim/etc/sysconfig/network-scripts/ifcfg-eth1
Dejar el contenido como el sig. Ejemplo
DEVICE=eth1
TYPE=Ethernet
BOOTPROTO=none
ONBOOT=yes
HWADDR=44:87:FC:AA:DD:2D
NM_CONTROLED=no
Reiniciar el servicio de red
Service networkrestart
LINK AGGREGATION PROTOCOL
Instalar ifenslave
sudo apt-get install ifenslave
Editar el archivo /etc/network/interfaces de la sig. Manera
Auto lo
Iface lo inet loopback#Bonding Interface with two member interfaces: eth0 and eth1
Auto bond0
iface bond0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.123
bond_miimon 100
bond_modeactive-backup
slaves eth0 eth1
Reiniciar servicio de red
sudo /etc/init.d/networking restart
LACP (Link Aggregation Control Protocol)
Vincula interfaces de red individuales en unvincula logico individual que provee el agregar el
ancho de banda de hasta 4 vinculos físicos. Un Router cisco serie 1000 soporta un máximo de 4
puertos en un etherchannel.
La configuración deun LACP funciona de la sig. Forma
Hay 3 estados para los canales LACP
Pasivo
Coloca al puerto en un estado pasivo de negociación que responde a los paquetes LACP, pero no
inicia lanegociación activa.
Activo
Inicia la negociación activa con otros puertos LACP enviando paquetes LACP.
On (Encendido)
Puertos que no están corriendo LACP se quedan en este modo.
Regístrate para leer el documento completo.