viernes, 14 de diciembre de 2012

Inicialización y gestión de un switch

Una vez accedemos al switch mediante el puerto de consola  podemos darle una dirección IP para ello lo podemos hacer de dos formas:

Un switch configurado previamente podemos ponerlo en mode factory-defaults mediate el comando:

test-sw>enable 
test-sw#restore factory-default


1) mediante un scrip de inicio

En función del modelo y/o versión el script de inicio se ejecuta automáticamente cuanto el switch esta en modo factory default,  que sin hacer nada más que conectarnos la primera vez que el switch arranca aparecera el script.

Si este no aparece lo podemos llamar mediante el comando :

test-sw>enable 
test-sw#install

Una vez lanzado , manualmente o automáticamente el script este  nos realizara las siguienmtes preguntas para poder inicializar el switch


###############################################################################
         Welcome to the  setup utility.
You will be requested to provide the switch basic connectivity settings. 
After entering the requested info, the configuration will be applied and 
stored into the switch NVRAM. 

Once the basic connectivity settings are applied, additional configuration 
can be done using the available management interfaces. 
Use Ctrl+C to abort the configuration at any time.

###############################################################################

Please provide the in-band IP Address[0.0.0.0]: 192.168.1.10
Please provide the in-band sub-net mask[255.255.255.0]:
Please provide the Default Gateway[0.0.0.0]:192.168.1.1
Please provide the Read-Only Community String[public]:
Please provide the Read-Write Community String[private]:
Please provide the Quick Start VLAN <1-4094> []:1
Please provide the in-band IPV6 Address/Prefix_length[::/0]:
Please provide the in-band IPV6 Default Gateway[::]:


###############################################################################
Basic switch parameters have now been configured and saved.

############################################################################

Una vez completado el switch quedara configurado con los valores que nosotros hemos contestado.

El script se puede interrumpir en cualquier momento usando Ctrl+C


2) La segunda posibilidad es configurar la dirección ip por comandos sin usar el script:

Los comandos serian :

test-sw#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
test-sw(config)#ip address ?
  A.B.C.D  IP address
  netmask  The subnet mask
  source   BootP/DHCP mode
  switch   To set the IP address of local unit
test-sw(config)#ip address 192.168.1.10 netmask 255.255.255.0 default-gateway 192.168.1.1
o tambien

test-sw#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
test-sw(config)#ip address 192.168.1.10
test-sw(config)#ip address netmask 255.255.255.0
test-sw(config)#ip ip default-gateway 192.168.1.1
Para ver que dirección ip tiene configurado el switch podemos usar:

test-sw(config)#show ip 
Bootp/DHCP Mode: BootP Or Default IP

                      Configured        In Use        Last BootP/DHCP
                    --------------- --------------- --------------------
Switch IP Address:  192.168.1.10    192.168.1.10     0.0.0.0        
Switch Subnet Mask: 255.255.255.0   255.255.255.0   0.0.0.0        
Default Gateway:    192.168.1.1                     0.0.0.0        
test-sw(config)#



1 comentario: