Advertisement
Guest User

Untitled

a guest
Dec 29th, 2013
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. hostname Router
  2. !
  3. !
  4. ip subnet-zero
  5. !
  6. !
  7. no ip dhcp conflict logging
  8. ip dhcp excluded-address 192.168.2.254
  9. !
  10. ip dhcp pool mypool
  11. network 192.168.2.0 255.255.255.0
  12. default-router 192.168.2.254
  13. dns-server 192.168.0.1
  14. !
  15. !
  16. !
  17. !
  18. interface FastEthernet0/0
  19. ip address dhcp
  20. ip nat outside
  21. duplex auto
  22. speed auto
  23. !
  24. interface FastEthernet0/1
  25. ip address 192.168.2.254 255.255.255.0
  26. ip nat inside
  27. duplex auto
  28. speed auto
  29. !
  30. ip nat inside source list 1 interface FastEthernet0/0 overload
  31. ip classless
  32. ip route 0.0.0.0 0.0.0.0 FastEthernet0/0
  33. ip route 0.0.0.0 0.0.0.0 FastEthernet0/1
  34. no ip http server
  35. ip pim bidir-enable
  36. !
  37. access-list 1 permit 192.168.2.0 0.0.0.255
  38. !
  39. line con 0
  40. line aux 0
  41. line vty 0 4
  42. !
  43. no scheduler allocate
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement