cisco - comandos básicos

Versão em .pdf disponível para download (Ideal para ler em gadgets)
Download


- Mudar para o modo privilegiado
Switch> enable
Switch#

- Atribuir um nome ao switch
Switch#configure terminal
Switch(config)#hostname Fatec
Fatec(config)#exit

- Definir as senhas de acesso
Fatec#configure terminal
Fatec(config)#line con 0
Fatec(config-line)#password cisco
Fatec(config-line)#login

- Definir senha para o modo privilegiado
Fatec#configure terminal
Fatec(config)#enable secret cisco

- velocidade e o modo de operação das portas
Fatec#configure terminal
Fatec(config)#interface fasttethernet0/1
Fatec(config-if)#speed 100
Fatec(config-if)#duplex full
Fatec(config-if)#exit


- Configurar IP de acesso na Vlan1
Fatec#configure terminal
Fatec(config)#interface VLAN 1
Fatec(config-if)#ip address 192.168.1.2 255.255.255.0
Fatec(config-if)#exit
Fatec(config)#ip default-gateway 192.168.1.1
Fatec(config)#exit



Share on Google Plus

About Carlos Castro

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

2 comentários:

  1. Ajudo muito, mas como eu faço pra configurar todas as portas ao mesmo tempo. É possível?

    ResponderExcluir
  2. Claro que sim amigo, uma porta por vez daria trabalho né ? ehehe

    Podes fazer como no exemplo abaixo. No exemplo, acesso ao mesmo tempo as portas GigabitEthernet de 3 até 6. É só colocar o comando range e o id da interface que tu quer entrar.

    SERVERS(config)#interface range GigabitEthernet0/3-6
    SERVERS(config-if-range)#

    Abraço

    ResponderExcluir