Changes between Version 3 and Version 4 of ipv6v4config


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

--

Legend:

Unmodified
Added
Removed
Modified
  • ipv6v4config

    v3 v4  
    8383}}}
    8484 - 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.
     85    * Configure a domain name. Use '''learn.ac.lk''' for this lab.
    8686{{{
    8787ip domain name learn.ac.lk
    8888}}}
    89 
    90 
     89    * Create a ssh user with a password. In here we will use the username admin with the class pasword
     90{{{
     91username admin secret <class password>
     92}}}
     93    * Create a certificate which will use for encryption
     94{{{
     95crypto key generate rsa
     96}}}
     97    * Give the size of key as 768 (minimum size needed to activate ssh version 2)
     98    * Then Configure the line vty
     99{{{
     100line vty 0 4
     101login local
     102transport input ssh
     103}}}