<sxh>show inter brief</sxh>
Podemos ver la vlan a la que pertenece <sxh> show interfaces e modulo/puerto </sxh>
<sxh>show ip interface</sxh>
<sxh>show module</sxh>
<sxh>show configure</sxh>
<sxh>write memory</sxh>
<sxh>show log</sxh>
<sxh>show process cpu </sxh>
<sxh>ping x.x.x.x source x.x.x.x</sxh>
<sxh>device> enable device# configure terminal device(config)# ip address 10.140.90.100/24 device(config)# ip default-gateway 10.140.90.1</sxh>
<sxh>ip route red_destino ip_siguientesalto</sxh>
<sxh>(config)# fdp run</sxh> fdp es el equivalente en brocade al cisco discovery protocol
<sxh>device(config)#lldp run</sxh> <sxh>device(config)# lldp enable ports ethernet all</sxh> <sxh>device(config)#lldp enable ports e 6/32</sxh>
<sxh>lag <nombre> static ports ethernet modulo/puerto to modulo/puerto primary modulo/puerto deploy </sxh>
<sxh>lag <nombre> dynamic ports ethernet modulo/puerto to modulo/puerto primary modulo/puerto deploy </sxh>
<sxh>show lag brief</sxh>
<sxh> enable configure terminal vlan <numero> untag e modulo/puerto tagged e modulo/puerto </sxh>
<sxh>vlan numero_vlan untagged ethernet modulo/puerto</sxh>
Entramos en la vlan donde este ese puerto y ejecutamos <sxh>no untagged ethernet modulo/puerto</sxh>
<sxh>show vlan </sxh>
Para ver la vlan de un puerto determinado ejecutariamos show vlan e modulo/puerto. <sxh>show vlan e 8/10 </sxh>
Múltiples VLAN dentro de otra VLAN http://www.brocade.com/support/Product_Manuals/ServerIron_SwitchRouterGuide/VLANs.5.8.html
Ejemplo <sxh> vlan 10 name user_vlan10 by port
tagged ethe 1/1/10 router-interface ve 10
</sxh>
<sxh> vlan 20 name user_vlan20 by port
tagged ethe 1/1/10 router-interface ve 20
</sxh>
<sxh> vlan 30 name user_vlan30 by port
tagged ethe 1/1/10 router-interface ve 30
</sxh>
<sxh> ip route 0.0.0.0 0.0.0.0 172.27.10.1 </sxh>
<sxh> interface ethernet 1/1/20
ip address 172.27.10.2 255.255.255.0
</sxh>
<sxh> interface ve 10
ip address 192.168.10.1 255.255.255.0
</sxh>
<sxh> interface ve 20
ip address 192.168.20.1 255.255.255.0
</sxh>
<sxh> interface ve 30
ip address 192.168.30.1 255.255.255.0
</sxh>
Para ver la tabla de rutas creadas ejecutar <sxh>show ip route</sxh>
las access-list pueden ser:
Nos permite modificar las rutas en función de las políticas que queramos. El proceso es el siguiente:
Veamos un ejemplo para cambiar el gateway de una vlan según el origen y el destino
creamos la lista de acceso de la siguiente forma access-list <numero> <permit|deny> <parámetros> <origen> <destino> <sxh> (config)# access-list 103 permit ip 172.19.3.0/24 172.19.100.253/25 </sxh>
Creamos el route-map de la siguiente forma route-map <nombrequeledamos> <permit|deny> <access-list> <sxh>(config)# route-map control-route permit 103 match ip address 103 set ip next-hop 172.19.3.1 </sxh>
Entramos a la vlan donde queremos aplicar la política de ruteo <sxh>vlan 103</sxh> Aplicamos a una interaz determinada ip policy route-map <nombre que le dimos a la route map>
<sxh>(config)#router-interface ve 1 (config)# interface ve 1 (config-vif-1)ip policy route-map control-route </sxh>
para redirigir las peticiones de DHCP de una vlan a un servidor DHCP centralizado Vamos al interfaz virtual de la vlan <sxh>(config)# int ve101 (config)# ip helper-address <ipservidor></sxh>