Changes between Version 3 and Version 4 of ipv6v4config
- Timestamp:
- May 8, 2017, 5:39:08 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ipv6v4config
v3 v4 83 83 }}} 84 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 * 85 * Configure a domain name. Use '''learn.ac.lk''' for this lab. 86 86 {{{ 87 87 ip domain name learn.ac.lk 88 88 }}} 89 90 89 * Create a ssh user with a password. In here we will use the username admin with the class pasword 90 {{{ 91 username admin secret <class password> 92 }}} 93 * Create a certificate which will use for encryption 94 {{{ 95 crypto 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 {{{ 100 line vty 0 4 101 login local 102 transport input ssh 103 }}}