0% found this document useful (0 votes)
29 views2 pages

Switchnormal 2

The document provides configuration steps for basic switch setup including hostname, banners, passwords, SSH configuration, and VLAN configuration. It shows how to create VLANs, assign ports, and verify the VLAN configuration.

Uploaded by

manuteoihu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views2 pages

Switchnormal 2

The document provides configuration steps for basic switch setup including hostname, banners, passwords, SSH configuration, and VLAN configuration. It shows how to create VLANs, assign ports, and verify the VLAN configuration.

Uploaded by

manuteoihu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

Configuración básica + ssh

---------------------
Configuración básica del Switch

Switch>enable
Switch# configure terminal
Switch(config)# hostname SW3
SW1 (config)# banner motd #Mensaje#
SW1 (config)# no ip domain-lookup
SW1 (config)# service password-encryption
SW1 (config)# line console 0
SW1 (configline)# password ciscoconpa$$
SW1 (configline)# login
SW1 (configline)# exec-timeout [tiempo]
SW1 (configline)# exit
SW1 (config)# enable secret ciscoenpa$$

SW1 (config)# ip domain-name cisco.com


SW1 (config)# username admin privilege 15 secret ciscosshpa$$
SW1 (config)# crypto key generate rsa general-keys modulus 1024
SW1 (config)# line vty 0 15
SW1 (configline)# transport input ssh
SW1 (configline)# login local
SW1 (configline)# exec-timeout [tiempo]
SW1 (configline)# exit

Crear VLAN
------------
vlan 70
name IT
vlan 80
name Marketing
vlan 90
name Admin3
vlan 99
name Nativa
vlan 150
name Deposito

show vlan

interface vlan 90
ip address 192.168.90.254 255.255.255.0
no shut
exit

ip default-gateway 192.168.90.1

interface range f0/5 - 24, g0/1 - 2


swtichport mode access
switchport access vlan 150
shutdown

interface f0/1
switchport nonegotiate
swtchport mode trunk
switchport trunk native vlan 99
switchport trunk allowed vlan 70,80,90,99
no shut
interface f0/2
swtchport mode access
switchport access vlan 70
no shut

interface f0/3
swtchport mode access
switchport access vlan 80
no shut

interface f0/4
swtchport mode access
switchport access vlan 90
no shut

do show vlan

You might also like