Advertisement
tirabytes

Cisco IOS: Source NAT

Jul 23rd, 2013
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. ## NAT
  2. !
  3. ip nat inside source list 101 interface Ethernet0 overload
  4. !
  5. access-list 101 remark NAT_SOURCE
  6. access-list 101 permit ip any any
  7.  
  8.  
  9.  
  10. ## ROUTE-MAP NAT
  11. !
  12. route-map NAT-OVERLOAD permit 1
  13. match ip address 101
  14. !
  15. access-list 101 remark NAT_SOURCE
  16. access-list 101 permit ip any any
  17. !
  18. ip nat inside source route-map NAT-OVERLOAD interface Ethernet0 overload
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement