
Algunos comandos pueden variar de acuerdo a la version del firmaware instalado en el switch, pero por lo general, estos comandos funcionaran.
Configuración de nombre
-----------------------------------------------------------------------------------------------------------
Switch> enable
Switch# configure
Switch(config)# hostname Sw1_Central
Configuración de usuario y contraseña de enable
-----------------------------------------------------------------------------------------------------------
Sw#1_Centra# configure
Sw#1_Central(config)# username admin pasword dell level 15
Sw#1_Central(config)# enable secret dell ( ojo no se recomienda esta password)
Configuración de IP administrativa del switch
-----------------------------------------------------------------------------------------------------------
Sw#1_Central# configure
Sw#1_Central(config)# interface vlan 1
Sw#1_Central(config-if)# ip address 192.168.50.20 255.255.255.0
Sw#1_Central(config-if)# no shutdown
Creación de Vlans switches Dell
-----------------------------------------------------------------------------------------------------------
Sw#1_Central# configure
Sw#1_Central(config)# vlan database
Sw#1_Central(config-if)# vlan 200
Sw#1_Central(config-vlan)# name RRHH
Configuración de Puertos Trunk (switches dell)
-----------------------------------------------------------------------------------------------------------
Sw#1_Central#configure
Sw#1_Central(config)# interface ethernet g1 { e e1 o e g1}
Sw#1_Central(config-if)# switchport mode trunk
Sw#1_Central(config-if)# switchport trunk allowed vlan add all
Sw#1_Central(config-if))# description Enlace a Sw#2
Configuración básica de interfaces switches Dell
-----------------------------------------------------------------------------------------------------------
Sw#1_Central(config)# interface e e1{e1, g1} y en algunos casos {1/e1}
Sw#1_Central(config-if)# switchport mode access
Sw#1_Central(config-if)# switchport access vlan 2 (si se va asignar alguna vlan)
Sw#1_Central(config-if)# speed 100 {10, 100, auto}
Sw#1_Central(config-if)# duplex full {full, half o auto}
Sw#1_Central(config-if))# description PC-Marcos
Configuración de un rango de interfaces
-----------------------------------------------------------------------------------------------------------
Sw#1_Central#configure
Sw#1_Central(config)# interface range e e(1-10) (realizar config del 1 al 10)
Sw#1_Central(config-if)# switchport mode access
Sw#1_Central(config-if)# switchport access vlan 2 (si se va asignar alguna vlan)
Configuración de agente snmp (snmp agent)
-----------------------------------------------------------------------------------------------------------
Sw#1_Central#configure
Sw#1_Central(config)# snmp-server community public RO
Configuración de acceso remoto al switch por medio de telnet
-----------------------------------------------------------------------------------------------------------
Sw#1_Central#configure
Sw#1_Central(config)# line vty 0 4
Sw#1_Central(config-line)# login local
Configuración de contraseñas a la Consola
-----------------------------------------------------------------------------------------------------------
Sw#1_Central#configure
Sw#1_Central(config)# line console 0
Sw#1_Central(config-line)# password contraseña
2 comentarios:
Una pregunta saben si se le puede poner una ip estatica a un interfaz porque lo estoy intentando y no puedo. ya le intente con el ip add xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx pero no me acepta
El switch que estoy configurando es un DELL N2048P
Publicar un comentario