Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. no ip domain lookup
  2. ip dhcp excluded-address 192.168.1.1 192.168.1.99
  3. !
  4. ip dhcp pool DHCP_POOL
  5. network 192.168.1.0 255.255.255.0
  6. default-router 192.168.1.1
  7. dns-server 192.168.1.1
  8. domain-name burk.tech
  9. !
  10. !
  11. !
  12. !
  13. !
  14. interface Ethernet0/0
  15. description "Connection to Modem"
  16. ip address dhcp
  17. ip nat outside
  18. half-duplex
  19. !
  20. interface Serial0/0
  21. no ip address
  22. shutdown
  23. !
  24. interface Ethernet0/1
  25. description "Connection to internal network"
  26. ip address 192.168.1.1 255.255.255.0
  27. ip nat inside
  28. half-duplex
  29. !
  30. ip default-gateway 192.168.1.1
  31. ip nat inside source list 1 interface Ethernet0/0 overload
  32. ip http server
  33. ip classless
  34. ip route 0.0.0.0 0.0.0.0 Ethernet0/0
  35. !
  36. !
  37. access-list 1 permit 192.168.1.0 0.0.0.255
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement