Created
June 4, 2018 13:43
-
-
Save bigfleet/24c1bb951262f395558150f857da6f7a to your computer and use it in GitHub Desktop.
DO457 CSR1000V Hotfix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Router>en | |
Router#config t | |
Router(config)#service password-encryption | |
Router(config)#hostname cs01 | |
cs01(config)#ip domain-name lab.example.com | |
cs01(config)#username admin privilege 15 secret student | |
cs01(config)#interface GigabitEthernet1 | |
cs01(config-if)#ip address 172.25.250.195 255.255.255.0 | |
cs01(config-if)#no shut | |
cs01(config-if)#exit | |
cs01(config)# | |
cs01(config)#line vty 0 4 | |
cs01(config-line)#transport input ssh | |
cs01(config-line)#transport output none | |
cs01(config-line)#login local | |
cs01(config-line)#exec-timeout 5 0 | |
cs01(config-line)#exit | |
cs01(config)#crypto key generate rsa general-keys modulus 2048 | |
cs01(config)#ip ssh version 2 | |
cs01(config)#end | |
cs01#wr mem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment