1. root@kubernetes-master co]# iptables -L
    2. Chain INPUT (policy ACCEPT)
    3. target prot opt source destination
    4. KUBE-SERVICES all -- anywhere anywhere ctstate NEW /* kubernetes service portals */
    5. KUBE-EXTERNAL-SERVICES all -- anywhere anywhere ctstate NEW /* kubernetes externally-visible service portals */
    6. KUBE-FIREWALL all -- anywhere anywhere
    7. Chain FORWARD (policy ACCEPT)
    8. target prot opt source destination
    9. KUBE-FORWARD all -- anywhere anywhere /* kubernetes forwarding rules */
    10. KUBE-SERVICES all -- anywhere anywhere ctstate NEW /* kubernetes service portals */
    11. DOCKER-USER all -- anywhere anywhere
    12. DOCKER-ISOLATION-STAGE-1 all -- anywhere anywhere
    13. ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
    14. DOCKER all -- anywhere anywhere
    15. ACCEPT all -- anywhere anywhere
    16. ACCEPT all -- anywhere anywhere
    17. ACCEPT all -- 10.244.0.0/16 anywhere
    18. ACCEPT all -- anywhere 10.244.0.0/16
    19. Chain OUTPUT (policy ACCEPT)
    20. target prot opt source destination
    21. KUBE-SERVICES all -- anywhere anywhere ctstate NEW /* kubernetes service portals */
    22. KUBE-FIREWALL all -- anywhere anywhere
    23. Chain DOCKER (1 references)
    24. target prot opt source destination
    25. Chain DOCKER-ISOLATION-STAGE-1 (1 references)
    26. target prot opt source destination
    27. DOCKER-ISOLATION-STAGE-2 all -- anywhere anywhere
    28. RETURN all -- anywhere anywhere
    29. Chain DOCKER-ISOLATION-STAGE-2 (1 references)
    30. target prot opt source destination
    31. DROP all -- anywhere anywhere
    32. RETURN all -- anywhere anywhere
    33. Chain DOCKER-USER (1 references)
    34. target prot opt source destination
    35. RETURN all -- anywhere anywhere
    36. Chain KUBE-EXTERNAL-SERVICES (1 references)
    37. target prot opt source destination
    38. Chain KUBE-FIREWALL (2 references)
    39. target prot opt source destination
    40. DROP all -- anywhere anywhere /* kubernetes firewall for dropping marked packets */ mark match 0x8000/0x8000
    41. DROP all -- !loopback/8 loopback/8 /* block incoming localnet connections */ ! ctstate RELATED,ESTABLISHED,DNAT
    42. Chain KUBE-FORWARD (1 references)
    43. target prot opt source destination
    44. DROP all -- anywhere anywhere ctstate INVALID
    45. ACCEPT all -- anywhere anywhere /* kubernetes forwarding rules */ mark match 0x4000/0x4000
    46. ACCEPT all -- anywhere anywhere /* kubernetes forwarding conntrack pod source rule */ ctstate RELATED,ESTABLISHED
    47. ACCEPT all -- anywhere anywhere /* kubernetes forwarding conntrack pod destination rule */ ctstate RELATED,ESTABLISHED
    48. Chain KUBE-KUBELET-CANARY (0 references)
    49. target prot opt source destination
    50. Chain KUBE-PROXY-CANARY (0 references)
    51. target prot opt source destination
    52. Chain KUBE-SERVICES (3 references)
    53. target prot opt source destination
    54. [root@kubernetes-master co]#