Advertisement
gizmobrat

Router Config

Oct 2nd, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. enable
  2. conf t
  3. no ip domain-lookup
  4. hostname EdgeR
  5. banner motd "This is a Router No Toutcy"
  6. ip domain-name harfordlab.com
  7. crypto key generate rsa
  8. 1024
  9. service password-encryption
  10. security passwords min-length 10
  11. username admin password harford1pass
  12. enable secret harfordenpass
  13. line vty 0 15
  14. password harfordvtypass
  15. transport input ssh
  16. login local
  17. exit
  18. line con 0
  19. password harfordconpass
  20. login
  21. exit
  22. ipv6 unicast-routing
  23. interface G0/0/0
  24. description To Subnet A / PC-A
  25. ipv6 add 2006:DB7:AAAA:A::/64
  26. ipv6 add FE80::1 link-local
  27. no shutdown
  28. exit
  29. interface G0/0/1
  30. description To Subnet A / Switch
  31. ipv6 add 2006:DB7:AAAA:B::/64
  32. ipv6 add FE80::1 link-local
  33. no shutdown
  34. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement