Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. sudo iptables -t nat -vnL
  2. Chain PREROUTING (policy ACCEPT 2 packets, 574 bytes)
  3. pkts bytes target prot opt in out source destination
  4. 2 574 DOCKER all -- * * 0.0.0.0/0 0.0.0.0/0 ADDRTYPE match dst-type LOCAL
  5.  
  6. Chain INPUT (policy ACCEPT 2 packets, 574 bytes)
  7. pkts bytes target prot opt in out source destination
  8.  
  9. Chain OUTPUT (policy ACCEPT 54 packets, 3367 bytes)
  10. pkts bytes target prot opt in out source destination
  11. 0 0 DOCKER all -- * * 0.0.0.0/0 !127.0.0.0/8 ADDRTYPE match dst-type LOCAL
  12.  
  13. Chain POSTROUTING (policy ACCEPT 54 packets, 3367 bytes)
  14. pkts bytes target prot opt in out source destination
  15. 0 0 MASQUERADE all -- * !docker0 172.17.0.0/16 0.0.0.0/0
  16.  
  17. Chain DOCKER (2 references)
  18. pkts bytes target prot opt in out source destination
  19. 0 0 RETURN all -- docker0 * 0.0.0.0/0 0.0.0.0/0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement