Comandos Básicos de Switches Cisco: mudanças entre as edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 24: | Linha 24: | ||
Router(config-line)#password cisco@123 | Router(config-line)#password cisco@123 | ||
Configurando acesso telnet para 05 usuários | |||
Switch>enable | Switch>enable | ||
Switch#configure terminal | Switch#configure terminal | ||
Linha 31: | Linha 31: | ||
Switch(config-line)#password cisco@123 | Switch(config-line)#password cisco@123 | ||
Configurando o endereço IP do switch | |||
Switch>enable | Switch>enable | ||
Switch#configure terminal | Switch#configure terminal | ||
Linha 38: | Linha 38: | ||
Switch(config-if)#no shutdown | Switch(config-if)#no shutdown | ||
Configurando o gateway do switch | |||
Switch>enable | Switch>enable | ||
Linha 44: | Linha 44: | ||
Switch(config)#ip default-gateway 10.0.10.1 | Switch(config)#ip default-gateway 10.0.10.1 | ||
Configurando vlan no switch | |||
Switch>enable | Switch>enable | ||
Linha 60: | Linha 60: | ||
Switch#sh vlan | Switch#sh vlan | ||
Configurando trunk no switch | |||
Switch>enable | Switch>enable | ||
Linha 67: | Linha 67: | ||
Switch(config-if)#switchport mode trunk | Switch(config-if)#switchport mode trunk | ||
==Comandos de verificação e diagnóstico== | |||
O comando show ? fornece uma lista dos comandos show disponíveis | O comando show ? fornece uma lista dos comandos show disponíveis |
Edição das 12h34min de 6 de outubro de 2024
Comandos Básicos de Switches Cisco
Configurando um nome
Switch>enable Switch#configure terminal Switch(config)#hostname sw01vkn8 sw01vkn8#
Configurando senha enable
Switch>enable Switch#configure terminal Switch(config)#enable password cisco
Configurando senha enable secret
Router>enable Router#configure terminal Router(config)#enable secret cisco@10
Configurando senha da console
Router>enable Router#configure terminal Router(config)#line console 0 Router(config-line)#password cisco@123
Configurando acesso telnet para 05 usuários
Switch>enable Switch#configure terminal Switch(config)#line vty 0 4 Switch(config-line)#login Switch(config-line)#password cisco@123
Configurando o endereço IP do switch
Switch>enable Switch#configure terminal Switch(config)#interface vlan 1 Switch(config-if)#ip address 10.0.10.1 255.255.255.0 Switch(config-if)#no shutdown
Configurando o gateway do switch
Switch>enable Switch#configure terminal Switch(config)#ip default-gateway 10.0.10.1
Configurando vlan no switch
Switch>enable Switch#configure terminal Switch(config)#vlan 10 Switch(config-vlan)#name dep-administrativo Switch(config-vlan)#exit Switch(config)# Switch(config)#interface fastEthernet 0/1 Switch(config-if)#switchport mode access Switch(config-if)#switchport access vlan 10 Switch(config-if)#exit Switch(config)#exit Switch#sh vlan
Configurando trunk no switch
Switch>enable Switch#configure terminal Switch(config)#interface fastEthernet 0/1 Switch(config-if)#switchport mode trunk
Comandos de verificação e diagnóstico
O comando show ? fornece uma lista dos comandos show disponíveis
Switch#show ?
Exibe a tabela ARP do roteador
Switch#show arp
Verifica detalhadamente as configurações das interfaces
Switch#sh interfaces
Verifica as configurações das interfaces
Switch #sh ip interface brief
Verifica a tabela de endereçamento MAC
Switch#show mac-address-table dynamic
Exibe as vlans configuradas
Switch#show vlan
Verifica as configirações ativas na RAM
Switch #sh running-config
Verifica as configurações da NVRAM
Switch#sh startup-config
Verifica os arquivos de sistema operacional da Flash
Switch#sh flash:
Salva as configurações ativas na RAM para a NVRAM
Switch#copy running-config startup-config