Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. interface FastEthernet0/0
  2. description WAN Interface
  3. no ip address
  4. duplex auto
  5. speed auto
  6. pppoe enable group global
  7. pppoe-client dial-pool-number 1
  8.  
  9. interface FastEthernet0/1
  10. description LAN interface
  11. ip address 10.1.1.1 255.255.255.0
  12. ip nat inside
  13. ip virtual-reassembly in
  14. duplex auto
  15. speed auto
  16.  
  17. interface Dialer1
  18. description
  19. ip address negotiated
  20. ip mtu 1458
  21. ip nat outside
  22. ip virtual-reassembly in
  23. encapsulation ppp
  24. ip tcp adjust-mss 1456
  25. dialer pool 1
  26. ppp authentication chap callin
  27. ppp chap hostname hohoho@santa.isp
  28. ppp chap password 0 sneakyelves
  29.  
  30. ip nat inside source list 1 interface Dialer1 overload
  31. ip route 0.0.0.0 0.0.0.0 Dialer1
  32.  
  33. access-list 1 remark NAT for LAN
  34. access-list 1 permit 10.1.1.0 0.0.0.255
  35. dialer-list 1 protocol ip permit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement