Advertisement
Guest User

Untitled

a guest
Aug 14th, 2016
575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. version 12.4
  2. service timestamps debug datetime msec
  3. service timestamps log datetime msec
  4. no service password-encryption
  5. !
  6. hostname Router
  7. !
  8. boot-start-marker
  9. boot-end-marker
  10. !
  11. enable secret 5 $1$6wVe$dopEx7j1NUI7ALrqLosjt.
  12. !
  13. no aaa new-model
  14. ip cef
  15. !
  16. !
  17. no ip dhcp use vrf connected
  18. ip dhcp excluded-address 10.0.0.1
  19. ip dhcp excluded-address 10.0.0.10
  20. ip dhcp excluded-address 10.0.0.20
  21. ip dhcp excluded-address 10.0.0.30
  22. ip dhcp excluded-address 10.0.0.40
  23. !
  24. ip dhcp pool home
  25. import all
  26. network 10.0.0.0 255.255.255.0
  27. dns-server 8.8.8.8
  28. default-router 10.0.0.1
  29. !
  30. !
  31. !
  32. !
  33. !
  34. !
  35. interface FastEthernet0/0
  36. ip address dhcp
  37. ip nat outside
  38. duplex auto
  39. speed auto
  40. !
  41. interface FastEthernet0/1
  42. ip address 10.0.0.1 255.255.255.0
  43. ip nat inside
  44. duplex auto
  45. speed auto
  46. !
  47. interface Serial0/0/0
  48. no ip address
  49. shutdown
  50. !
  51. router rip
  52. network 192.168.1.0
  53. !
  54. ip forward-protocol nd
  55. ip route 192.168.0.0 255.255.255.0 192.168.1.1
  56. ip route 192.168.1.0 255.255.255.0 FastEthernet0/0
  57. !
  58. no ip http server
  59. ip nat inside source list 101 interface FastEthernet0/0 overload
  60. !
  61. access-list 101 permit ip 10.0.0.0 0.0.0.255 any
  62. access-list 101 permit ip any any
  63. !
  64. control-plane
  65. !
  66. !
  67. line con 0
  68. line aux 0
  69. line vty 0 4
  70. login
  71. !
  72. scheduler allocate 20000 1000
  73. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement