Advertisement
Guest User

cisco opdracht

a guest
Jan 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. Company#
  2. -------------------
  3. conf t
  4. int g0/0
  5. ip nat out
  6. int g0/1
  7. ip nat in
  8. ip nat inside source static 10.0.0.240 209.165.100.29
  9. -----------------------------------------------------------------
  10. int g0/0
  11. ip nat out
  12. int g0/1
  13. ip nat in
  14. exit
  15. ip nat inside source static tcp 10.0.0.250 80 209.165.100.30 80
  16. -----------------------------------------------------------------
  17. access-list 10 permit 10.0.0.0 0.0.0.255
  18. ip nat inside source list 10 interface g0/0 overload
  19.  
  20. ===================================================================================
  21. ______________________________________________________________________________
  22. ===================================================================================
  23.  
  24. Your router#
  25. ---------------------------
  26. en
  27. conf t
  28. int g0/0
  29. ip nat outside
  30. int g0/1
  31. ip nat inside
  32. access-list 1 permit 192.168.1.0 0.0.0.255
  33. ip nat pool MYPOOL 209.165.100.17 209.165.100.24 netmask 255.255.255.240
  34. ip nat inside source list 1 pool MYPOOL overload
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement