Advertisement
Guest User

Untitled

a guest
May 3rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. Chain INPUT (policy ACCEPT)
  2. target prot opt source destination
  3. ACCEPT udp -- anywhere anywhere udp dpt:domain
  4. ACCEPT tcp -- anywhere anywhere tcp dpt:domain
  5. ACCEPT udp -- anywhere anywhere udp dpt:bootps
  6. ACCEPT tcp -- anywhere anywhere tcp dpt:bootps
  7.  
  8. Chain FORWARD (policy ACCEPT)
  9. target prot opt source destination
  10. DOCKER-USER all -- anywhere anywhere
  11. DOCKER-ISOLATION all -- anywhere anywhere
  12. ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
  13. DOCKER all -- anywhere anywhere
  14. ACCEPT all -- anywhere anywhere
  15. ACCEPT all -- anywhere anywhere
  16. ACCEPT all -- anywhere 192.168.122.0/24 ctstate RELATED,ESTABLISHED
  17. ACCEPT all -- 192.168.122.0/24 anywhere
  18. ACCEPT all -- anywhere anywhere
  19. REJECT all -- anywhere anywhere reject-with icmp-port-unreachable
  20. REJECT all -- anywhere anywhere reject-with icmp-port-unreachable
  21.  
  22. Chain OUTPUT (policy ACCEPT)
  23. target prot opt source destination
  24. ACCEPT udp -- anywhere anywhere udp dpt:bootpc
  25.  
  26. Chain DOCKER (1 references)
  27. target prot opt source destination
  28. ACCEPT tcp -- anywhere 172.17.0.2 tcp dpt:9980
  29.  
  30. Chain DOCKER-ISOLATION (1 references)
  31. target prot opt source destination
  32. RETURN all -- anywhere anywhere
  33.  
  34. Chain DOCKER-USER (1 references)
  35. target prot opt source destination
  36. RETURN all -- anywhere anywhere
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement