Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. ip domain-name yourdomain.but.it.doesnt.really.matter.com
  2. ip ssh version 2
  3. crypto key gen rsa ! you may get prompted for bits, I use 1024
  4. line vty 0 15
  5. transport input telnet ssh ! compare to existing config first
  6. end
  7.  
  8. copy run start
  9.  
  10. line vty 0 15
  11. transport input ssh
  12. end
  13. copy run start
  14.  
  15. access-list 23 permit 10.10.10.0 0.0.0.255 ! NMS subnet
  16. line vty 0 15
  17. access-class 23 in
  18. end
  19. copy run start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement