CCNA1 TI1
Commande de base de configuration de commutateur
• Passer à la mode privilégiée :
Router> enable
Router> enable
• Passer à la mode de configuration globale :
Router# configure terminal
Switch# configure terminal
• Empêcher les recherches DNS indésirables :
Switch(config)# no ip domain-lookup
• Attribuer un nom au commutateur :
Switch(config)# hostname S1
• Attribuer class en tant que mot de passe secret pour l'accès au mode d'exécution
privilégié.
S1(config)# enable secret class
• Attribuer cisco comme mot de passe pour la console et activation
S1(config)# line con 0
S1(config-line)# password cisco
S1(config-line)# login
S1(config-line)# logging synchronous
S1(config-line)# exit
• Attribuer cisco comme mot de passe pour vty et activation
S1(config)# line vty 0 15
S1(config-line)# password cisco
S1(config-line)# login
S1(config-line)# end
• Configurer une bannière MOTD.
S1(config)# banner motd #
Enter Text message. End with the character ‘#’.
Acces réservé à l'administrateur #
Melle Dhouibi Safa 1
CCNA1 TI1
• Configurer l'adresse IP indiquée dans la table d'adressage du VLAN 1 sur les deux
commutateurs
S1(config)# vlan 1
S1(config-vlan)# exit
S1(config)# interface vlan1
S1(config-if)# ip address 192.168.1.12 255.255.255.0
S1(config-if)# no shutdown
S1(config-if)# exit
• Copier la configuration en cours en tant que configuration initiale.
S1(config)# copy run start
Melle Dhouibi Safa 2
CCNA1 TI1
Commande de base de configuration de routeur
• Pour les commandes de configuration de base d’un routeur :
Celles d’un commutateur.
• Attribuer cisco comme mot de passe pour vty et activation
S1(config)# line vty 0 4
S1(config-line)# password cisco
S1(config-line)# login
S1(config-line)# end
• Configuration d’une interface fastethernet :
R1(config)# interface fa0/5
R1(config-if)# ip address 192.168.10.1 255.255.255.0
R1(config-if)# no shutdown
• Configuration d’une interface série avec un serial DCE :
R1(config)# interface s0/0/0
R1(config-if)# ip address 10.1.1.2 255.255.255.252
R1(config-if)# clock rate 128000
R1(config-if)# no shutdown
Les commandes d’affichages :
• Afficher la configuration en cours :
router# show running-config
• Afficher la configuration enregistrée dans NVRAM :
router# show startup-config
• Afficher les interfaces avec leurs informations en brief :
router# show interfaces
Melle Dhouibi Safa 3