Cisco Basic Router Configuration

  1. Hostname
    • config terminal
    • hostname R1

  2. Console Password
    • config terminal
    • line console 0
    • password cisco
    • login
    • exit

  3. Telnet Password
    • config terminal
    • line vty 0 5
    • password cisco
    • login
    • exit

  4. Enable Secret/Password
    • config terminal
    • enable secret class

    • config terminal
    • enable password class

  5. Banner
    • config terminal
    • banner motd #You Are Not Authorized#

  6. Interface Configuration
    • config terminal
    • interface fa0/0
    • ip address 192.168.1.1 255.255.255.0
    • end

  7. Description
    • description R1 to R2 connection

  8. Save Configuration
    • copy running-config startup-config

  9. Delete Configuration
    • copy startup-config running-config
    • erase startup-config
    • reload
blog comments powered by Disqus