18 Déc2015
Configuration de SSH sur un commutateur
Objectif:
- Sécuriser l'accès à un commutateur en utilisant SSH
Topologie:
Table d'adressage:
Périphérique |
Interface |
Adresse IP |
Masque de sous-réseau |
---|---|---|---|
S1 |
VLAN 1 |
10.10.10.1 |
255.255.255.0 |
PC1 |
NIC |
10.10.10.2 |
255.255.255.0 |
Travail à faire:
Configurer un accès SSH à S1 en respectant les exigences suivantes:
- Définissez le nom de domaine sur exelib.net.
- Générez des clés RSA en spécifiant une longueur de 1024.
- Créez l'utilisateur administrateur en lui attribuant exelib comme mot de passe.
- Configurer les lignes VTY pour vérifier les informations de connexion dans la base de données et pour autoriser uniquement l'accès à distance SSH
Question 1:
S1(config)# ip domain-name exelib.net
Question 2:
S1(config)# crypto key generate rsa The name for the keys will be: S1.exelib.net Choose the size of the key modulus in the range of 360 to 2048 for your General Purpose Keys. Choosing a key modulus greater than 512 may take a few minutes. How many bits in the modulus [512]: 1024 % Generating 1024 bit RSA keys, keys will be non-exportable...[OK]
Question 3:
S1(config)# username administrateur password exelib
Question 4:
S1(config)#line vty 0 15 S1(config-line)# login local S1(config-line)# transport input ssh