Lab 3 1 Configuring Switches in Packet Tracer - SYSAD36/Tech-Journal---Cloud-Virtualization GitHub Wiki

  • Setting enable password The code for setting a password for privelidged mode is as follows:
  1. Enable Password password This password on its own however can be seen in the show running config which is a no no. To fix this we want to encrypt it:
  2. enable secret password This is not enough encryption. Now we want to encrypt all of the passwords with a hard to bvreak format:
  3. service password-encryption
  • Setting a username for remote logins:
  1. Username username priviledge 15 password 0 password
  • Enabling SSH access on a switch:
  1. crypto key generate rsa
  2. ip authentication-retries 3
  3. ssh time-out 120
  • Configuring LINE and CONSOLE access From config mode:
  1. line con 0
  2. password password
  3. login local
  4. exec-timeout 0 0
  5. logging synchronous
  • How to show MAC table
  1. show mac address-table