Changes between Version 2 and Version 3 of ipv6v4config


Ignore:
Timestamp:
May 8, 2017, 5:21:35 PM (8 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ipv6v4config

    v2 v3  
    3939=== Initial Configurations ===
    4040Before configure the devices for the network setup. Let's configure some initial settings in the router. If your router is boot up when you logged in you will be prompted to the following line.
     41{{{
     42Would you like to enter the initial configuration dialog? [yes/no]:
     43}}}
     44Type '''no''' (Might have to press the '''Enter''' key again) to go to the user mode of the router. Prompt will look as following.
     45{{{
     46Router>
     47}}}
     48In the user mode of the router give the command '''enable''' to go the privileged mode. Prompt will change to following
     49{{{
     50Router#
     51}}}
     52To add configurations you have to go configuration mode. Type '''config terminal'''. Note the prompt change.
     53{{{
     54Router(config)#
     55}}}
     56
     57You 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{{{
     60hostname <device name>
     61}}}
     62You 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{{{
     65enable 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{{{
     69banner 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{{{
     74line 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{{{
     78login
     79}}}
     80    * Set the password
     81{{{
     82password <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{{{
     87ip domain name learn.ac.lk
     88}}}
    4189
    4290
    43