ENRUTAMIENTO CISCO
Enviado por felvel • 28 de Octubre de 2014 • 327 Palabras (2 Páginas) • 154 Visitas
Laboratorio 3.- VLANs
Realizar la topología siguiente:
Entrar a la ventana de comandos del switch
habilitar config
Configurando Vlan para los teléfonos
Switch(config)#vlan 3
Switch(config-vlan)#name phones
Switch(config-vlan)#exit
Switch(config)#interface range fa0/6-fa0/12 Definimos el rango de las interfaces
Switch(config-if-range)#switchport voice vlan 3 Trafica solamente voz
Switch(config-if-range)#exit
Configurando Vlan para workstations
Switch(config)#vlan 4
Switch(config-vlan)#name workstations
Switch(config-vlan)#exit
Switch(config)#interface range fa0/13-fa0/24
Switch(config-if-range)#switchport mode access
Switch(config-if-range)#switchport access vlan 4
Switch(config-if-range)#exit
Configurando Vlan para Servidores
Switch(config)#vlan 2
Switch(config-vlan)#name servers
Switch(config-vlan)#exit
Switch(config)#interface range fa0/2-fa0/5
Switch(config-if-range)#switchport mode access
Switch(config-if-range)#switchport access vlan 2
Switch(config-if-range)#exit
Luego de configurar nuestro switch con las diferentes redes virtuales que existen en el podremos configurar nuestro enlace troncal, quien será soporte de las redes virtuales
Enlace troncal:
Es el soporte de nuestra VLAn creada por medio de un administrador de ips (router) y subordinado (switch)
Preparamos el switch para esto:
Switch>ENABLE
Switch#config terminal
Switch(config)#interface fa0/1
Switch(config-if)#switchport mode trunk generamos el enlace troncal
Switch(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
Switch(config-if)#exit
Switch(config)#
Vamos a configurar el router con enlaces virtuales con los siguientes comandos.
Router>enable
Router#conf ter
Router#conf terminal
Router(config)#interface fa0/0 ingresamos a la interface Ethernet
Router(config-if)#no shutdown prendemos el router
Router(config-if)#interface fa0/0.2 se habilita la interfaz Fa0/0 de la red virtual 2
Router(config-subif)#encapsulation dot1q 2 encargado de separar el tráfico de las
Vlan encapsuladamente
Router(config-subif)#ip address 192.168.2.1 255.255.255.0
Router(config-subif)#exit
Router(config)#
Router(config)#interface fa0/0.3
Router(config-subif)#
%LINK-5-CHANGED: Interface FastEthernet0/0.3,
...