Configuration basique d’un routeur
Les Taches :
Allumez les équipements, puis configurez les appareils comme suit :
0) Configurez le nom de chaque routeur comme indiqué sur le schéma ;
1) Configurez les adresses IP comme indiqué sur le schéma ;
2) Assurez-vous que les routeurs peuvent se pinger entre eux (Vérifiez);
3) Activez un mot de passe « cisco »;
4) Crypter le mot de passe activé ;
5) Configurez un mot de passe secret « cisco123 »;
6) Configurez telnet sur le routeur en utilisant un mot de passe ci-dessus ;
7) Assurez-vous que la connexion telnet marche d’un appareil à l’autre;
8) Configurez un mot de passe du console de « cisco » et testez.
Télécharger le fichier du Lab ci-dessous :
Correction:
Configuration du nom de chaque routeur comme indiqué sur le schéma :
Sur le routeur R1 :
Router>enable Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R1 R1(config)#
Routeur R2 :
Router>enable Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R2 R2(config)#
1) Configuration des adresses IP sur les routeurs comme indiqué sur le schéma ;
R1#configure terminal R1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R1(config)# R1(config)#interface gigabitEthernet 0/0 R1(config-if)#ip address 10.1.1.1 255.255.255.0 R1(config-if)#no shutdown R1(config-if)# %LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to up R1(config-if)#
Sur R2 :
R2#configure terminal R2#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R2(config)# R2(config)#interface gigabitEthernet 0/0 R2(config-if)#ip address 10.1.1.2 255.255.255.0 R2(config-if)#no shutdown R2(config-if)# %LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to up R2(config-if)#
2) Vérification des pings entre les routeurs :
R1#ping 10.1.1.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.1.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms R1#
R2#ping 10.1.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms R2#
3) Activation du mot de passe « cisco »:
R1# R1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R1(config)#enable password cisco R1(config)#
R2# R2#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R2(config)#enable password cisco R2(config)#
4) Crypter le mot de passe activé :
R1# R1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R1(config)#service password-encryption R1(config)#
R2# R2#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R2(config)#service password-encryption R2(config)#
5) Configuration d’un mot de passe secret « cisco123 »
R1# R1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R1(config)#enable secret cisco123 R1(config)#
R2# R2#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R2(config)#enable secret cisco123 R2(config)#
6) Configuration du telnet sur le routeur en utilisant le meme mot de passe qu’avant ;
R1# R1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R1(config)#line vty 0 4 R1(config-line)#login % Login disabled on line 388, until 'password' is set % Login disabled on line 389, until 'password' is set % Login disabled on line 390, until 'password' is set % Login disabled on line 391, until 'password' is set % Login disabled on line 392, until 'password' is set R1(config-line)#password cisco123 R1(config-line)#
R2# R2#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R2(config)#line vty 0 4 R2(config-line)#login % Login disabled on line 388, until 'password' is set % Login disabled on line 389, until 'password' is set % Login disabled on line 390, until 'password' is set % Login disabled on line 391, until 'password' is set % Login disabled on line 392, until 'password' is set R2(config-line)#password cisco123 R2(config-line)#
7) Vérification de la connexion telnet d’un appareil à l’autre
R1# R1#telnet 10.1.1.2 Trying 10.1.1.2 ...Open User Access Verification Password: R2>enable Password: R2#
R2# R2#telnet 10.1.1.1 Trying 10.1.1.1 ...Open User Access Verification Password: R1>enable Password: R1#
8) Configuration du mot de passe console de « cisco » et teste :
R1# R1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R1(config)#line console 0 R1(config-line)#login % Login disabled on line 0, until 'password' is set R1(config-line)#password cisco R1(config-line)#
R2# R2#configure terminal Enter configuration commands, one per line. End with CNTL/Z. R2(config)#line console 0 R2(config-line)#login % Login disabled on line 0, until 'password' is set R2(config-line)#password cisco R2(config-line)#