Cisco 2501



Cisco 2501 Initial Setup


Standard Disclaimer :

This document is only for use by me and my friends as a very general explanation of how to setup a router. If you have any questions or comments, you can e-mail me. But I will not be responsible for any damage to your systems or routers. This is still very much a document in progress.


Abstract :

OK. You should have your router up and running now. (If you haven't, please setup your router FIRST by clicking here).

Time to setup the routing tables ...


Procedure :

  1. Hook up a PC to the router via the console cable
  2. Power ON the router
  3. After the normal bootup messages, there should be a message saying

    ' Would you like to enter the initial dialog ?[yes] : no'

  4. Wait a short while. An EXEC prompt should then appear (ie. ROUTER>)
  5. Type 'enable'. You'll need to go into the privileged EXEC mode to make configuration changes
  6. The prompt should change to : ROUTER#
  7. Time to enter the configuration terminal command... type 'configure terminal'

    Note : you can also type 'config t'

  8. Now, you can change the configuration. Below, you will see a list of the things you can change
  9. Change/Assign hostname to router (use hostname command)
  10. Change password (use enable password command)
  11. Setup the routing tables

I'm going to briefly outline the procedure for setting up a route

  1. I have a router straddling 2 networks : aaa.bbb.ccc.ddd and eee.fff.ggg.hhh
  2. (fuiyun, please put a diagram here)
  3. ROUTER# configure terminal
  4. ROUTER# hostname
  5. ROUTER# enable password XXXXXXXX
  6. ROUTER# line vty 0 4
  7. ROUTER(config-line)# password XXXXXXXXX
  8. ROUTER# interface e0
  9. ROUTER(config-if)# ipaddress (given by ISP)
  10. ROUTER(config-if)# interface s0
  11. ROUTER(config-if)# ipaddress (given by ISP)
  12. ROUTER(config-if)# exit
  13. ROUTER# ip route 0.0.0.0 0.0.0.0 (route given by ISP)
  14. ROUTER# ip route 165.21.0.0 255.255.0.0 (route given by ISP)
  15. ROUTER# exit
  16. ROUTER# write memory
  17. ROUTER# reload
  18. router will reboot, and the routing table should be set.
  19. To check, type 'show config' at the ROUTER# prompt.
  20. ...And that's all folks !

Created by Chong Yu Meng, March 1998