-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopenshift-iptables
447 lines (355 loc) · 27.9 KB
/
openshift-iptables
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
[root@dhcp-49-5 ~]# iptables -t nat -L
Chain PREROUTING (policy ACCEPT)
target prot opt source destination
KUBE-SERVICES all -- anywhere anywhere /* kubernetes service portals */
KUBE-PORTALS-CONTAINER all -- anywhere anywhere /* handle ClusterIPs; NOTE: this must be before the NodePort rules */
PREROUTING_direct all -- anywhere anywhere
PREROUTING_ZONES_SOURCE all -- anywhere anywhere
PREROUTING_ZONES all -- anywhere anywhere
DOCKER all -- anywhere anywhere ADDRTYPE match dst-type LOCAL
KUBE-NODEPORT-CONTAINER all -- anywhere anywhere ADDRTYPE match dst-type LOCAL /* handle service NodePorts; NOTE: this must be the last rule in the chain */
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
KUBE-SERVICES all -- anywhere anywhere /* kubernetes service portals */
KUBE-PORTALS-HOST all -- anywhere anywhere /* handle ClusterIPs; NOTE: this must be before the NodePort rules */
OUTPUT_direct all -- anywhere anywhere
DOCKER all -- anywhere !loopback/8 ADDRTYPE match dst-type LOCAL
KUBE-NODEPORT-HOST all -- anywhere anywhere ADDRTYPE match dst-type LOCAL /* handle service NodePorts; NOTE: this must be the last rule in the chain */
Chain POSTROUTING (policy ACCEPT)
target prot opt source destination
KUBE-POSTROUTING all -- anywhere anywhere /* kubernetes postrouting rules */
MASQUERADE all -- 172.17.0.0/16 anywhere
RETURN all -- 192.168.100.0/24 base-address.mcast.net/24
RETURN all -- 192.168.100.0/24 255.255.255.255
MASQUERADE tcp -- 192.168.100.0/24 !192.168.100.0/24 masq ports: 1024-65535
MASQUERADE udp -- 192.168.100.0/24 !192.168.100.0/24 masq ports: 1024-65535
MASQUERADE all -- 192.168.100.0/24 !192.168.100.0/24
POSTROUTING_direct all -- anywhere anywhere
POSTROUTING_ZONES_SOURCE all -- anywhere anywhere
POSTROUTING_ZONES all -- anywhere anywhere
Chain DOCKER (2 references)
target prot opt source destination
RETURN all -- anywhere anywhere
Chain KUBE-MARK-DROP (0 references)
target prot opt source destination
MARK all -- anywhere anywhere MARK or 0x8000
Chain KUBE-MARK-MASQ (11 references)
target prot opt source destination
MARK all -- anywhere anywhere MARK or 0x4000
Chain KUBE-NODEPORT-CONTAINER (1 references)
target prot opt source destination
Chain KUBE-NODEPORT-HOST (1 references)
target prot opt source destination
Chain KUBE-NODEPORTS (1 references)
target prot opt source destination
KUBE-MARK-MASQ tcp -- anywhere anywhere /* myproject/zanata-mariadb: */ tcp dpt:31829
KUBE-SVC-TKJXVK5BQZAB2KFR tcp -- anywhere anywhere /* myproject/zanata-mariadb: */ tcp dpt:31829
KUBE-MARK-MASQ tcp -- anywhere anywhere /* myproject/zanata-localization: */ tcp dpt:ndmps
KUBE-SVC-A3Z62ONHYXNEOOXO tcp -- anywhere anywhere /* myproject/zanata-localization: */ tcp dpt:ndmps
Chain KUBE-PORTALS-CONTAINER (1 references)
target prot opt source destination
Chain KUBE-PORTALS-HOST (1 references)
target prot opt source destination
Chain KUBE-POSTROUTING (1 references)
target prot opt source destination
MASQUERADE all -- anywhere anywhere /* kubernetes service traffic requiring SNAT */ mark match 0x4000/0x4000
Chain KUBE-SEP-37QI5NYO3WDRAYAJ (2 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/kubernetes:dns-tcp */
DNAT tcp -- anywhere anywhere /* default/kubernetes:dns-tcp */ recent: SET name: KUBE-SEP-37QI5NYO3WDRAYAJ side: source mask: 255.255.255.255 tcp to:10.18.49.93:8053
Chain KUBE-SEP-3DDMAB3JMKYJH2MH (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- 172.17.0.7 anywhere /* myproject/zanata-localization: */
DNAT tcp -- anywhere anywhere /* myproject/zanata-localization: */ tcp to:172.17.0.7:8080
Chain KUBE-SEP-AVHPG52HMOAJO3BT (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- 172.17.0.6 anywhere /* myproject/zanata-mariadb: */
DNAT tcp -- anywhere anywhere /* myproject/zanata-mariadb: */ tcp to:172.17.0.6:3306
Chain KUBE-SEP-GHHZ5HLKQOLYNMIP (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/router:443-tcp */
DNAT tcp -- anywhere anywhere /* default/router:443-tcp */ tcp to:10.18.49.93:443
Chain KUBE-SEP-KIFR4PZ5SVSQQ24K (2 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/kubernetes:https */
DNAT tcp -- anywhere anywhere /* default/kubernetes:https */ recent: SET name: KUBE-SEP-KIFR4PZ5SVSQQ24K side: source mask: 255.255.255.255 tcp to:10.18.49.93:8443
Chain KUBE-SEP-LWOYOYE5FBDPV3ZV (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/router:1936-tcp */
DNAT tcp -- anywhere anywhere /* default/router:1936-tcp */ tcp to:10.18.49.93:1936
Chain KUBE-SEP-POAYXJDFZUSTCXO4 (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/router:80-tcp */
DNAT tcp -- anywhere anywhere /* default/router:80-tcp */ tcp to:10.18.49.93:80
Chain KUBE-SEP-QWMJLIGOOPK5E4HY (2 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/kubernetes:dns */
DNAT udp -- anywhere anywhere /* default/kubernetes:dns */ recent: SET name: KUBE-SEP-QWMJLIGOOPK5E4HY side: source mask: 255.255.255.255 udp to:10.18.49.93:8053
Chain KUBE-SEP-Y4VJ4WLG5Y25LS3M (2 references)
target prot opt source destination
KUBE-MARK-MASQ all -- 172.17.0.8 anywhere /* default/docker-registry:5000-tcp */
DNAT tcp -- anywhere anywhere /* default/docker-registry:5000-tcp */ recent: SET name: KUBE-SEP-Y4VJ4WLG5Y25LS3M side: source mask: 255.255.255.255 tcp to:172.17.0.8:5000
Chain KUBE-SERVICES (2 references)
target prot opt source destination
KUBE-SVC-BA6I5HTZKAAAJT56 tcp -- anywhere 172.30.0.1 /* default/kubernetes:dns-tcp cluster IP */ tcp dpt:domain
KUBE-SVC-GQKZAHCS5DTMHUQ6 tcp -- anywhere 172.30.68.34 /* default/router:80-tcp cluster IP */ tcp dpt:http
KUBE-SVC-IKV43KYNCXS2W7KZ tcp -- anywhere 172.30.68.34 /* default/router:443-tcp cluster IP */ tcp dpt:https
KUBE-SVC-TKJXVK5BQZAB2KFR tcp -- anywhere 172.30.254.99 /* myproject/zanata-mariadb: cluster IP */ tcp dpt:mysql
KUBE-SVC-A3Z62ONHYXNEOOXO tcp -- anywhere 172.30.103.219 /* myproject/zanata-localization: cluster IP */ tcp dpt:webcache
KUBE-SVC-3VQ6B3MLH7E2SZT4 udp -- anywhere 172.30.0.1 /* default/kubernetes:dns cluster IP */ udp dpt:domain
KUBE-SVC-ECTPRXTXBM34L34Q tcp -- anywhere 172.30.134.72 /* default/docker-registry:5000-tcp cluster IP */ tcp dpt:commplex-main
KUBE-SVC-4JCRTMMYZAAYMIJ2 tcp -- anywhere 172.30.68.34 /* default/router:1936-tcp cluster IP */ tcp dpt:jetcmeserver
KUBE-SVC-NPX46M4PTMTKRN6Y tcp -- anywhere 172.30.0.1 /* default/kubernetes:https cluster IP */ tcp dpt:https
KUBE-NODEPORTS all -- anywhere anywhere /* kubernetes service nodeports; NOTE: this must be the last rule in this chain */ ADDRTYPE match dst-type LOCAL
Chain KUBE-SVC-3VQ6B3MLH7E2SZT4 (1 references)
target prot opt source destination
KUBE-SEP-QWMJLIGOOPK5E4HY all -- anywhere anywhere /* default/kubernetes:dns */ recent: CHECK seconds: 180 reap name: KUBE-SEP-QWMJLIGOOPK5E4HY side: source mask: 255.255.255.255
KUBE-SEP-QWMJLIGOOPK5E4HY all -- anywhere anywhere /* default/kubernetes:dns */
Chain KUBE-SVC-4JCRTMMYZAAYMIJ2 (1 references)
target prot opt source destination
KUBE-SEP-LWOYOYE5FBDPV3ZV all -- anywhere anywhere /* default/router:1936-tcp */
Chain KUBE-SVC-A3Z62ONHYXNEOOXO (2 references)
target prot opt source destination
KUBE-SEP-3DDMAB3JMKYJH2MH all -- anywhere anywhere /* myproject/zanata-localization: */
Chain KUBE-SVC-BA6I5HTZKAAAJT56 (1 references)
target prot opt source destination
KUBE-SEP-37QI5NYO3WDRAYAJ all -- anywhere anywhere /* default/kubernetes:dns-tcp */ recent: CHECK seconds: 180 reap name: KUBE-SEP-37QI5NYO3WDRAYAJ side: source mask: 255.255.255.255
KUBE-SEP-37QI5NYO3WDRAYAJ all -- anywhere anywhere /* default/kubernetes:dns-tcp */
Chain KUBE-SVC-ECTPRXTXBM34L34Q (1 references)
target prot opt source destination
KUBE-SEP-Y4VJ4WLG5Y25LS3M all -- anywhere anywhere /* default/docker-registry:5000-tcp */ recent: CHECK seconds: 180 reap name: KUBE-SEP-Y4VJ4WLG5Y25LS3M side: source mask: 255.255.255.255
KUBE-SEP-Y4VJ4WLG5Y25LS3M all -- anywhere anywhere /* default/docker-registry:5000-tcp */
Chain KUBE-SVC-GQKZAHCS5DTMHUQ6 (1 references)
target prot opt source destination
KUBE-SEP-POAYXJDFZUSTCXO4 all -- anywhere anywhere /* default/router:80-tcp */
Chain KUBE-SVC-IKV43KYNCXS2W7KZ (1 references)
target prot opt source destination
KUBE-SEP-GHHZ5HLKQOLYNMIP all -- anywhere anywhere /* default/router:443-tcp */
Chain KUBE-SVC-NPX46M4PTMTKRN6Y (1 references)
target prot opt source destination
KUBE-SEP-KIFR4PZ5SVSQQ24K all -- anywhere anywhere /* default/kubernetes:https */ recent: CHECK seconds: 180 reap name: KUBE-SEP-KIFR4PZ5SVSQQ24K side: source mask: 255.255.255.255
KUBE-SEP-KIFR4PZ5SVSQQ24K all -- anywhere anywhere /* default/kubernetes:https */
Chain KUBE-SVC-TKJXVK5BQZAB2KFR (2 references)
target prot opt source destination
KUBE-SEP-AVHPG52HMOAJO3BT all -- anywhere anywhere /* myproject/zanata-mariadb: */
Chain OUTPUT_direct (1 references)
target prot opt source destination
Chain POSTROUTING_ZONES (1 references)
target prot opt source destination
POST_FedoraWorkstation all -- anywhere anywhere [goto]
POST_FedoraWorkstation all -- anywhere anywhere [goto]
Chain POSTROUTING_ZONES_SOURCE (1 references)
target prot opt source destination
Chain POSTROUTING_direct (1 references)
target prot opt source destination
Chain POST_FedoraWorkstation (2 references)
target prot opt source destination
POST_FedoraWorkstation_log all -- anywhere anywhere
POST_FedoraWorkstation_deny all -- anywhere anywhere
POST_FedoraWorkstation_allow all -- anywhere anywhere
Chain POST_FedoraWorkstation_allow (1 references)
target prot opt source destination
Chain POST_FedoraWorkstation_deny (1 references)
target prot opt source destination
Chain POST_FedoraWorkstation_log (1 references)
target prot opt source destination
Chain PREROUTING_ZONES (1 references)
target prot opt source destination
PRE_FedoraWorkstation all -- anywhere anywhere [goto]
PRE_FedoraWorkstation all -- anywhere anywhere [goto]
Chain PREROUTING_ZONES_SOURCE (1 references)
target prot opt source destination
Chain PREROUTING_direct (1 references)
target prot opt source destination
Chain PRE_FedoraWorkstation (2 references)
target prot opt source destination
PRE_FedoraWorkstation_log all -- anywhere anywhere
PRE_FedoraWorkstation_deny all -- anywhere anywhere
PRE_FedoraWorkstation_allow all -- anywhere anywhere
Chain PRE_FedoraWorkstation_allow (1 references)
target prot opt source destination
Chain PRE_FedoraWorkstation_deny (1 references)
target prot opt source destination
Chain PRE_FedoraWorkstation_log (1 references)
target prot opt source destination
[root@dhcp-49-5 ~]# iptables -t nat -Lv
iptables: No chain/target/match by that name.
[root@dhcp-49-5 ~]# iptables -t nat -L
Chain PREROUTING (policy ACCEPT)
target prot opt source destination
KUBE-SERVICES all -- anywhere anywhere /* kubernetes service portals */
KUBE-PORTALS-CONTAINER all -- anywhere anywhere /* handle ClusterIPs; NOTE: this must be before the NodePort rules */
PREROUTING_direct all -- anywhere anywhere
PREROUTING_ZONES_SOURCE all -- anywhere anywhere
PREROUTING_ZONES all -- anywhere anywhere
DOCKER all -- anywhere anywhere ADDRTYPE match dst-type LOCAL
KUBE-NODEPORT-CONTAINER all -- anywhere anywhere ADDRTYPE match dst-type LOCAL /* handle service NodePorts; NOTE: this must be the last rule in the chain */
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
KUBE-SERVICES all -- anywhere anywhere /* kubernetes service portals */
KUBE-PORTALS-HOST all -- anywhere anywhere /* handle ClusterIPs; NOTE: this must be before the NodePort rules */
OUTPUT_direct all -- anywhere anywhere
DOCKER all -- anywhere !loopback/8 ADDRTYPE match dst-type LOCAL
KUBE-NODEPORT-HOST all -- anywhere anywhere ADDRTYPE match dst-type LOCAL /* handle service NodePorts; NOTE: this must be the last rule in the chain */
Chain POSTROUTING (policy ACCEPT)
target prot opt source destination
KUBE-POSTROUTING all -- anywhere anywhere /* kubernetes postrouting rules */
MASQUERADE all -- 172.17.0.0/16 anywhere
RETURN all -- 192.168.100.0/24 base-address.mcast.net/24
RETURN all -- 192.168.100.0/24 255.255.255.255
MASQUERADE tcp -- 192.168.100.0/24 !192.168.100.0/24 masq ports: 1024-65535
MASQUERADE udp -- 192.168.100.0/24 !192.168.100.0/24 masq ports: 1024-65535
MASQUERADE all -- 192.168.100.0/24 !192.168.100.0/24
POSTROUTING_direct all -- anywhere anywhere
POSTROUTING_ZONES_SOURCE all -- anywhere anywhere
POSTROUTING_ZONES all -- anywhere anywhere
Chain DOCKER (2 references)
target prot opt source destination
RETURN all -- anywhere anywhere
Chain KUBE-MARK-DROP (0 references)
target prot opt source destination
MARK all -- anywhere anywhere MARK or 0x8000
Chain KUBE-MARK-MASQ (11 references)
target prot opt source destination
MARK all -- anywhere anywhere MARK or 0x4000
Chain KUBE-NODEPORT-CONTAINER (1 references)
target prot opt source destination
Chain KUBE-NODEPORT-HOST (1 references)
target prot opt source destination
Chain KUBE-NODEPORTS (1 references)
target prot opt source destination
KUBE-MARK-MASQ tcp -- anywhere anywhere /* myproject/zanata-localization: */ tcp dpt:ndmps
KUBE-SVC-A3Z62ONHYXNEOOXO tcp -- anywhere anywhere /* myproject/zanata-localization: */ tcp dpt:ndmps
KUBE-MARK-MASQ tcp -- anywhere anywhere /* myproject/zanata-mariadb: */ tcp dpt:31829
KUBE-SVC-TKJXVK5BQZAB2KFR tcp -- anywhere anywhere /* myproject/zanata-mariadb: */ tcp dpt:31829
Chain KUBE-PORTALS-CONTAINER (1 references)
target prot opt source destination
Chain KUBE-PORTALS-HOST (1 references)
target prot opt source destination
Chain KUBE-POSTROUTING (1 references)
target prot opt source destination
MASQUERADE all -- anywhere anywhere /* kubernetes service traffic requiring SNAT */ mark match 0x4000/0x4000
Chain KUBE-SEP-37QI5NYO3WDRAYAJ (2 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/kubernetes:dns-tcp */
DNAT tcp -- anywhere anywhere /* default/kubernetes:dns-tcp */ recent: SET name: KUBE-SEP-37QI5NYO3WDRAYAJ side: source mask: 255.255.255.255 tcp to:10.18.49.93:8053
Chain KUBE-SEP-3DDMAB3JMKYJH2MH (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- 172.17.0.7 anywhere /* myproject/zanata-localization: */
DNAT tcp -- anywhere anywhere /* myproject/zanata-localization: */ tcp to:172.17.0.7:8080
Chain KUBE-SEP-AVHPG52HMOAJO3BT (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- 172.17.0.6 anywhere /* myproject/zanata-mariadb: */
DNAT tcp -- anywhere anywhere /* myproject/zanata-mariadb: */ tcp to:172.17.0.6:3306
Chain KUBE-SEP-GHHZ5HLKQOLYNMIP (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/router:443-tcp */
DNAT tcp -- anywhere anywhere /* default/router:443-tcp */ tcp to:10.18.49.93:443
Chain KUBE-SEP-KIFR4PZ5SVSQQ24K (2 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/kubernetes:https */
DNAT tcp -- anywhere anywhere /* default/kubernetes:https */ recent: SET name: KUBE-SEP-KIFR4PZ5SVSQQ24K side: source mask: 255.255.255.255 tcp to:10.18.49.93:8443
Chain KUBE-SEP-LWOYOYE5FBDPV3ZV (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/router:1936-tcp */
DNAT tcp -- anywhere anywhere /* default/router:1936-tcp */ tcp to:10.18.49.93:1936
Chain KUBE-SEP-POAYXJDFZUSTCXO4 (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/router:80-tcp */
DNAT tcp -- anywhere anywhere /* default/router:80-tcp */ tcp to:10.18.49.93:80
Chain KUBE-SEP-QWMJLIGOOPK5E4HY (2 references)
target prot opt source destination
KUBE-MARK-MASQ all -- dhcp-49-93.bos.redhat.com anywhere /* default/kubernetes:dns */
DNAT udp -- anywhere anywhere /* default/kubernetes:dns */ recent: SET name: KUBE-SEP-QWMJLIGOOPK5E4HY side: source mask: 255.255.255.255 udp to:10.18.49.93:8053
Chain KUBE-SEP-Y4VJ4WLG5Y25LS3M (2 references)
target prot opt source destination
KUBE-MARK-MASQ all -- 172.17.0.8 anywhere /* default/docker-registry:5000-tcp */
DNAT tcp -- anywhere anywhere /* default/docker-registry:5000-tcp */ recent: SET name: KUBE-SEP-Y4VJ4WLG5Y25LS3M side: source mask: 255.255.255.255 tcp to:172.17.0.8:5000
Chain KUBE-SERVICES (2 references)
target prot opt source destination
KUBE-SVC-NPX46M4PTMTKRN6Y tcp -- anywhere 172.30.0.1 /* default/kubernetes:https cluster IP */ tcp dpt:https
KUBE-SVC-ECTPRXTXBM34L34Q tcp -- anywhere 172.30.134.72 /* default/docker-registry:5000-tcp cluster IP */ tcp dpt:commplex-main
KUBE-SVC-4JCRTMMYZAAYMIJ2 tcp -- anywhere 172.30.68.34 /* default/router:1936-tcp cluster IP */ tcp dpt:jetcmeserver
KUBE-SVC-A3Z62ONHYXNEOOXO tcp -- anywhere 172.30.103.219 /* myproject/zanata-localization: cluster IP */ tcp dpt:webcache
KUBE-SVC-3VQ6B3MLH7E2SZT4 udp -- anywhere 172.30.0.1 /* default/kubernetes:dns cluster IP */ udp dpt:domain
KUBE-SVC-BA6I5HTZKAAAJT56 tcp -- anywhere 172.30.0.1 /* default/kubernetes:dns-tcp cluster IP */ tcp dpt:domain
KUBE-SVC-GQKZAHCS5DTMHUQ6 tcp -- anywhere 172.30.68.34 /* default/router:80-tcp cluster IP */ tcp dpt:http
KUBE-SVC-IKV43KYNCXS2W7KZ tcp -- anywhere 172.30.68.34 /* default/router:443-tcp cluster IP */ tcp dpt:https
KUBE-SVC-TKJXVK5BQZAB2KFR tcp -- anywhere 172.30.254.99 /* myproject/zanata-mariadb: cluster IP */ tcp dpt:mysql
KUBE-NODEPORTS all -- anywhere anywhere /* kubernetes service nodeports; NOTE: this must be the last rule in this chain */ ADDRTYPE match dst-type LOCAL
Chain KUBE-SVC-3VQ6B3MLH7E2SZT4 (1 references)
target prot opt source destination
KUBE-SEP-QWMJLIGOOPK5E4HY all -- anywhere anywhere /* default/kubernetes:dns */ recent: CHECK seconds: 180 reap name: KUBE-SEP-QWMJLIGOOPK5E4HY side: source mask: 255.255.255.255
KUBE-SEP-QWMJLIGOOPK5E4HY all -- anywhere anywhere /* default/kubernetes:dns */
Chain KUBE-SVC-4JCRTMMYZAAYMIJ2 (1 references)
target prot opt source destination
KUBE-SEP-LWOYOYE5FBDPV3ZV all -- anywhere anywhere /* default/router:1936-tcp */
Chain KUBE-SVC-A3Z62ONHYXNEOOXO (2 references)
target prot opt source destination
KUBE-SEP-3DDMAB3JMKYJH2MH all -- anywhere anywhere /* myproject/zanata-localization: */
Chain KUBE-SVC-BA6I5HTZKAAAJT56 (1 references)
target prot opt source destination
KUBE-SEP-37QI5NYO3WDRAYAJ all -- anywhere anywhere /* default/kubernetes:dns-tcp */ recent: CHECK seconds: 180 reap name: KUBE-SEP-37QI5NYO3WDRAYAJ side: source mask: 255.255.255.255
KUBE-SEP-37QI5NYO3WDRAYAJ all -- anywhere anywhere /* default/kubernetes:dns-tcp */
Chain KUBE-SVC-ECTPRXTXBM34L34Q (1 references)
target prot opt source destination
KUBE-SEP-Y4VJ4WLG5Y25LS3M all -- anywhere anywhere /* default/docker-registry:5000-tcp */ recent: CHECK seconds: 180 reap name: KUBE-SEP-Y4VJ4WLG5Y25LS3M side: source mask: 255.255.255.255
KUBE-SEP-Y4VJ4WLG5Y25LS3M all -- anywhere anywhere /* default/docker-registry:5000-tcp */
Chain KUBE-SVC-GQKZAHCS5DTMHUQ6 (1 references)
target prot opt source destination
KUBE-SEP-POAYXJDFZUSTCXO4 all -- anywhere anywhere /* default/router:80-tcp */
Chain KUBE-SVC-IKV43KYNCXS2W7KZ (1 references)
target prot opt source destination
KUBE-SEP-GHHZ5HLKQOLYNMIP all -- anywhere anywhere /* default/router:443-tcp */
Chain KUBE-SVC-NPX46M4PTMTKRN6Y (1 references)
target prot opt source destination
KUBE-SEP-KIFR4PZ5SVSQQ24K all -- anywhere anywhere /* default/kubernetes:https */ recent: CHECK seconds: 180 reap name: KUBE-SEP-KIFR4PZ5SVSQQ24K side: source mask: 255.255.255.255
KUBE-SEP-KIFR4PZ5SVSQQ24K all -- anywhere anywhere /* default/kubernetes:https */
Chain KUBE-SVC-TKJXVK5BQZAB2KFR (2 references)
target prot opt source destination
KUBE-SEP-AVHPG52HMOAJO3BT all -- anywhere anywhere /* myproject/zanata-mariadb: */
Chain OUTPUT_direct (1 references)
target prot opt source destination
Chain POSTROUTING_ZONES (1 references)
target prot opt source destination
POST_FedoraWorkstation all -- anywhere anywhere [goto]
POST_FedoraWorkstation all -- anywhere anywhere [goto]
Chain POSTROUTING_ZONES_SOURCE (1 references)
target prot opt source destination
Chain POSTROUTING_direct (1 references)
target prot opt source destination
Chain POST_FedoraWorkstation (2 references)
target prot opt source destination
POST_FedoraWorkstation_log all -- anywhere anywhere
POST_FedoraWorkstation_deny all -- anywhere anywhere
POST_FedoraWorkstation_allow all -- anywhere anywhere
Chain POST_FedoraWorkstation_allow (1 references)
target prot opt source destination
Chain POST_FedoraWorkstation_deny (1 references)
target prot opt source destination
Chain POST_FedoraWorkstation_log (1 references)
target prot opt source destination
Chain PREROUTING_ZONES (1 references)
target prot opt source destination
PRE_FedoraWorkstation all -- anywhere anywhere [goto]
PRE_FedoraWorkstation all -- anywhere anywhere [goto]
Chain PREROUTING_ZONES_SOURCE (1 references)
target prot opt source destination
Chain PREROUTING_direct (1 references)
target prot opt source destination
Chain PRE_FedoraWorkstation (2 references)
target prot opt source destination
PRE_FedoraWorkstation_log all -- anywhere anywhere
PRE_FedoraWorkstation_deny all -- anywhere anywhere
PRE_FedoraWorkstation_allow all -- anywhere anywhere
Chain PRE_FedoraWorkstation_allow (1 references)
target prot opt source destination
Chain PRE_FedoraWorkstation_deny (1 references)
target prot opt source destination
Chain PRE_FedoraWorkstation_log (1 references)
target prot opt source destination
[root@dhcp-49-5 ~]#