| 41 | {{{ |
| 42 | Would you like to enter the initial configuration dialog? [yes/no]: |
| 43 | }}} |
| 44 | Type '''no''' (Might have to press the '''Enter''' key again) to go to the user mode of the router. Prompt will look as following. |
| 45 | {{{ |
| 46 | Router> |
| 47 | }}} |
| 48 | In the user mode of the router give the command '''enable''' to go the privileged mode. Prompt will change to following |
| 49 | {{{ |
| 50 | Router# |
| 51 | }}} |
| 52 | To add configurations you have to go configuration mode. Type '''config terminal'''. Note the prompt change. |
| 53 | {{{ |
| 54 | Router(config)# |
| 55 | }}} |
| 56 | |
| 57 | You can now start making configurations. |
| 58 | - First thing you have to add is the hostname of the device. Hostname is the device's identification. In this Lab device name is the same as host name. (Eg. CampusCore switch's hostname is CampusCore). Use the following command |
| 59 | {{{ |
| 60 | hostname <device name> |
| 61 | }}} |
| 62 | You will see your prompt change from Router to the hostname you add. |
| 63 | - Then let's give a enable secret. Which is a password you set when you go to the privileged mode from the user mode. We will use the '''class password''' as the enable secret |
| 64 | {{{ |
| 65 | enable secret <class password> |
| 66 | }}} |
| 67 | - Next you can add a banner to your device. This will display every time you log in to the device |
| 68 | {{{ |
| 69 | banner motd @ Unauthorized Access is Prohibited! @ |
| 70 | }}} |
| 71 | - Then lets's configure the line console which are the console port settings |
| 72 | * Go to line console config mode |
| 73 | {{{ |
| 74 | line console 0 |
| 75 | }}} |
| 76 | * Enable login authentication. Make sure not to save or exit the router after this command without executing the next command. |
| 77 | {{{ |
| 78 | login |
| 79 | }}} |
| 80 | * Set the password |
| 81 | {{{ |
| 82 | password <class password> |
| 83 | }}} |
| 84 | - Finally let's enable ssh (version 2) in the device. Type '''exit''' to go back to previous mode (config mode) from line console config mode |
| 85 | * Configure a domain name. Use '''learn.ac.lk''' for this lab. |
| 86 | {{{ |
| 87 | ip domain name learn.ac.lk |
| 88 | }}} |