1w|1w
Enviado por au3TIucf • 17 de Agosto de 2015 • Documentos de Investigación • 307 Palabras (2 Páginas) • 717 Visitas
------------------------------------------------------------
CONFIGURACION BASICAS
enable
config term
hostname (S1)
enable secret (class)
no ip domain-lookup
ip default-gateway 172.17.99.1 (gateway de vlan 99)
line console 0
password (cisco)
login
line vty 0 15
password (cisco)
login
end
copy running-config startup-config (S1#)
----------------------------------------------------------
HABILTAR MODO DE ACCESO (los troncales no)
interface fa0/6 (range f0/6-11)
switchport mode access
no shutdown
-------------------------------------------------------------
Configurar puertos de enlaces troncales (todos los switch)
interface fa0/1
switchport mode trunk
switchport trunk native vlan 99
no shutdown
end
--------------------------------------------------------
Asignar puertos del switch a las VLAN en Switch
interface fa0/6
switchport access vlan 30
---------------------------------------------------
CONFIGURAR INTEFAZ CON LAS VLAN EN EL ROUTER
interface fastethernet 0/0
no shutdown
interface fastethernet (0/0.1)
encapsulation dot1q 1
ip address (172.17.1.1 255.255.255.0)
interface fastethernet (0/0.10)
encapsulation dot1q (10)
ip address (172.17.10.1 255.255.255.0)
-------------------------------------------------------------
Configurar la interfaz de LAN servidor en R1
interface FastEthernet0/0
ip address 172.17.50.1 255.255.255.0
description server interface
no shutdown
end
-----------------------------------------------------------
CONFIGURAR VTP
vtp mode server
vtp domain xxxx
vtp password cisco
end
vtp mode client
vtp domain xxx
vtp password cisco
S2(config)#end
-----------------------------------------------------------
Configurar el servidor VTP con las VLAN.
vlan 99
name management
vlan 10
name faculty-staff
vlan 20
name students
vlan 30
name guest
end
------------------------------------------------------------
Configurar la dirección de la interfaz de administración en los tres switches.(solo esta ip a los todos los switch)
interface vlan99
ip address (172.17.99.11 255.255.255.0)
...