-
Notifications
You must be signed in to change notification settings - Fork 0
/
nftables-rules-dump-putput.txt
725 lines (700 loc) · 43 KB
/
nftables-rules-dump-putput.txt
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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
table ip lb_nat {
chain postrouting {
type nat hook postrouting priority 100; policy accept;
oifname { "ether5", "ether6", "ether7", "ether8", "ether9", "ether10", "ether11", "ether12", "ether13", "ether14", "ether15" } counter packets 22 bytes 1340 masquerade
}
}
table ip lb_mangle {
chain prerouting {
type filter hook prerouting priority -150; policy accept;
jump SET_MARK_ON_PACKET
ct mark != 0x00000000 jump SET_MARK_ON_PACKET_NON_0
iifname "ether5" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1205
iifname "ether6" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1206
iifname "ether7" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1207
iifname "ether8" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1208
iifname "ether9" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1209
iifname "ether10" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1210
iifname "ether11" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1211
iifname "ether12" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1212
iifname "ether13" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1213
iifname "ether14" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1214
iifname "ether15" ct state new ct mark 0x00000000 counter packets 0 bytes 0 jump wan_rt_table_1215
iifname { "ether23" } ip protocol udp ct state new counter packets 1 bytes 56 jump PCC_OUT_UDP
iifname { "ether23" } ip protocol udplite ct state new counter packets 0 bytes 0 jump PCC_OUT_UDPLITE
iifname { "ether23" } ip protocol tcp ct state new counter packets 20 bytes 1200 jump PCC_OUT_TCP
iifname { "ether23" } ip protocol dccp ct state new counter packets 0 bytes 0 jump PCC_OUT_DCCP
iifname { "ether23" } ip protocol sctp ct state new counter packets 0 bytes 0 jump PCC_OUT_SCTP
iifname { "ether23" } ct state new counter packets 22 bytes 1340 jump PCC_OUT_OTHERS
ct mark 0x00001205 mark set 0x00001205 counter packets 2 bytes 120
ct mark 0x00001206 mark set 0x00001206 counter packets 2 bytes 120
ct mark 0x00001207 mark set 0x00001207 counter packets 4 bytes 240
ct mark 0x00001208 mark set 0x00001208 counter packets 3 bytes 180
ct mark 0x00001209 mark set 0x00001209 counter packets 2 bytes 116
ct mark 0x00001210 mark set 0x00001210 counter packets 2 bytes 120
ct mark 0x00001211 mark set 0x00001211 counter packets 3 bytes 180
ct mark 0x00001212 mark set 0x00001212 counter packets 2 bytes 144
ct mark 0x00001213 mark set 0x00001213 counter packets 2 bytes 120
ct mark 0x00001214 mark set 0x00001214 counter packets 0 bytes 0
ct mark 0x00001215 mark set 0x00001215 counter packets 0 bytes 0
}
chain input {
type filter hook input priority -150; policy accept;
}
chain forward {
type filter hook forward priority -150; policy accept;
}
chain output {
type route hook output priority -150; policy accept;
}
chain postrouting {
type filter hook postrouting priority -150; policy accept;
counter packets 190 bytes 11072 jump POSTROUTING_COUNTERS
ct mark set mark counter packets 190 bytes 11072
counter packets 190 bytes 11072
}
chain PCC_OUT_UDP {
jhash ip protocol . ip saddr . udp sport . ip daddr . udp dport mod 11 vmap { 0 : jump wan_rt_table_1205, 1 : jump wan_rt_table_1206, 2 : jump wan_rt_table_1207, 3 : jump wan_rt_table_1208, 4 : jump wan_rt_table_1209, 5 : jump wan_rt_table_1210, 6 : jump wan_rt_table_1211, 7 : jump wan_rt_table_1212, 8 : jump wan_rt_table_1213, 9 : jump wan_rt_table_1214, 10 : jump wan_rt_table_1215 } counter packets 0 bytes 0
}
chain PCC_OUT_UDPLITE {
jhash ip protocol . ip saddr . udplite sport . ip daddr . udplite dport mod 11 vmap { 0 : jump wan_rt_table_1205, 1 : jump wan_rt_table_1206, 2 : jump wan_rt_table_1207, 3 : jump wan_rt_table_1208, 4 : jump wan_rt_table_1209, 5 : jump wan_rt_table_1210, 6 : jump wan_rt_table_1211, 7 : jump wan_rt_table_1212, 8 : jump wan_rt_table_1213, 9 : jump wan_rt_table_1214, 10 : jump wan_rt_table_1215 } counter packets 0 bytes 0
}
chain PCC_OUT_TCP {
jhash ip protocol . ip saddr . tcp sport . ip daddr . tcp dport mod 11 vmap { 0 : jump wan_rt_table_1205, 1 : jump wan_rt_table_1206, 2 : jump wan_rt_table_1207, 3 : jump wan_rt_table_1208, 4 : jump wan_rt_table_1209, 5 : jump wan_rt_table_1210, 6 : jump wan_rt_table_1211, 7 : jump wan_rt_table_1212, 8 : jump wan_rt_table_1213, 9 : jump wan_rt_table_1214, 10 : jump wan_rt_table_1215 } counter packets 0 bytes 0
}
chain PCC_OUT_DCCP {
jhash ip protocol . ip saddr . dccp sport . ip daddr . dccp dport mod 11 vmap { 0 : jump wan_rt_table_1205, 1 : jump wan_rt_table_1206, 2 : jump wan_rt_table_1207, 3 : jump wan_rt_table_1208, 4 : jump wan_rt_table_1209, 5 : jump wan_rt_table_1210, 6 : jump wan_rt_table_1211, 7 : jump wan_rt_table_1212, 8 : jump wan_rt_table_1213, 9 : jump wan_rt_table_1214, 10 : jump wan_rt_table_1215 } counter packets 0 bytes 0
}
chain PCC_OUT_SCTP {
jhash ip protocol . ip saddr . sctp sport . ip daddr . sctp dport mod 11 vmap { 0 : jump wan_rt_table_1205, 1 : jump wan_rt_table_1206, 2 : jump wan_rt_table_1207, 3 : jump wan_rt_table_1208, 4 : jump wan_rt_table_1209, 5 : jump wan_rt_table_1210, 6 : jump wan_rt_table_1211, 7 : jump wan_rt_table_1212, 8 : jump wan_rt_table_1213, 9 : jump wan_rt_table_1214, 10 : jump wan_rt_table_1215 } counter packets 0 bytes 0
}
chain PCC_OUT_OTHERS {
ip protocol { tcp, udp, dccp, sctp, udplite } counter packets 21 bytes 1256 return
jhash ip protocol . ip saddr . ip daddr mod 11 vmap { 0 : jump wan_rt_table_1205, 1 : jump wan_rt_table_1206, 2 : jump wan_rt_table_1207, 3 : jump wan_rt_table_1208, 4 : jump wan_rt_table_1209, 5 : jump wan_rt_table_1210, 6 : jump wan_rt_table_1211, 7 : jump wan_rt_table_1212, 8 : jump wan_rt_table_1213, 9 : jump wan_rt_table_1214, 10 : jump wan_rt_table_1215 } counter packets 0 bytes 0
}
chain wan_rt_table_1205 {
ct mark set 0x00001205 counter packets 2 bytes 120
}
chain wan_rt_table_1206 {
ct mark set 0x00001206 counter packets 2 bytes 120
}
chain wan_rt_table_1207 {
ct mark set 0x00001207 counter packets 4 bytes 240
}
chain wan_rt_table_1208 {
ct mark set 0x00001208 counter packets 3 bytes 180
}
chain wan_rt_table_1209 {
ct mark set 0x00001209 counter packets 2 bytes 116
}
chain wan_rt_table_1210 {
ct mark set 0x00001210 counter packets 2 bytes 120
}
chain wan_rt_table_1211 {
ct mark set 0x00001211 counter packets 3 bytes 180
}
chain wan_rt_table_1212 {
ct mark set 0x00001212 counter packets 2 bytes 144
}
chain wan_rt_table_1213 {
ct mark set 0x00001213 counter packets 2 bytes 120
}
chain wan_rt_table_1214 {
ct mark set 0x00001214 counter packets 0 bytes 0
}
chain wan_rt_table_1215 {
ct mark set 0x00001215 counter packets 0 bytes 0
}
chain SET_MARK_ON_PACKET {
mark set ct mark counter packets 190 bytes 11072
ct mark != 0x00000000 counter packets 168 bytes 9732
ct mark != 0x00000000 ct state new counter packets 1 bytes 56
ct mark != 0x00000000 ct state established,related counter packets 167 bytes 9676
ct mark 0x00000000 counter packets 22 bytes 1340
ct mark 0x00000000 ct state new counter packets 22 bytes 1340
ct mark 0x00000000 ct state established,related counter packets 0 bytes 0
counter packets 190 bytes 11072
}
chain SET_MARK_ON_PACKET_NON_0 {
ct mark set mark counter packets 168 bytes 9732
ct state new counter packets 1 bytes 56
ct state established counter packets 166 bytes 9564
ct state related counter packets 1 bytes 112
counter packets 168 bytes 9732
jump SET_MARK_ON_PACKET_NON_0_COUNTERS
}
chain SET_MARK_ON_PACKET_NON_0_COUNTERS {
ct state new counter packets 1 bytes 56
ct state established counter packets 166 bytes 9564
ct state related counter packets 1 bytes 112
ct state invalid counter packets 0 bytes 0
ct state untracked counter packets 0 bytes 0
ct direction original counter packets 83 bytes 4328
ct direction reply counter packets 85 bytes 5404
ct status expected counter packets 0 bytes 0
ct status seen-reply counter packets 166 bytes 9564
ct status assured counter packets 145 bytes 8308
ct status confirmed counter packets 168 bytes 9732
ct status snat counter packets 168 bytes 9732
ct status dnat counter packets 0 bytes 0
ct status dying counter packets 0 bytes 0
iifname "ether23" ip protocol icmp counter packets 0 bytes 0
iifname "ether23" ip protocol esp counter packets 0 bytes 0
iifname "ether23" ip protocol ah counter packets 0 bytes 0
iifname "ether23" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether23" ip protocol udp counter packets 3 bytes 168
iifname "ether23" ip protocol udplite counter packets 0 bytes 0
iifname "ether23" ip protocol tcp counter packets 80 bytes 4160
iifname "ether23" ip protocol dccp counter packets 0 bytes 0
iifname "ether23" ip protocol sctp counter packets 0 bytes 0
iifname "ether23" ct state new counter packets 1 bytes 56
iifname "ether23" ct state established counter packets 82 bytes 4272
iifname "ether23" ct state related counter packets 0 bytes 0
iifname "ether23" ct state invalid counter packets 0 bytes 0
iifname "ether23" ct state untracked counter packets 0 bytes 0
iifname "ether23" ct direction original counter packets 83 bytes 4328
iifname "ether23" ct direction reply counter packets 0 bytes 0
iifname "ether23" ct status expected counter packets 0 bytes 0
iifname "ether23" ct status seen-reply counter packets 82 bytes 4272
iifname "ether23" ct status assured counter packets 82 bytes 4272
iifname "ether23" ct status confirmed counter packets 83 bytes 4328
iifname "ether23" ct status snat counter packets 83 bytes 4328
iifname "ether23" ct status dnat counter packets 0 bytes 0
iifname "ether23" ct status dying counter packets 0 bytes 0
iifname "ether5" ip protocol icmp counter packets 0 bytes 0
iifname "ether5" ip protocol esp counter packets 0 bytes 0
iifname "ether5" ip protocol ah counter packets 0 bytes 0
iifname "ether5" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether5" ip protocol udp counter packets 0 bytes 0
iifname "ether5" ip protocol udplite counter packets 0 bytes 0
iifname "ether5" ip protocol tcp counter packets 8 bytes 506
iifname "ether5" ip protocol dccp counter packets 0 bytes 0
iifname "ether5" ip protocol sctp counter packets 0 bytes 0
iifname "ether5" ct state new counter packets 0 bytes 0
iifname "ether5" ct state established counter packets 8 bytes 506
iifname "ether5" ct state related counter packets 0 bytes 0
iifname "ether5" ct state invalid counter packets 0 bytes 0
iifname "ether5" ct state untracked counter packets 0 bytes 0
iifname "ether5" ct direction original counter packets 0 bytes 0
iifname "ether5" ct direction reply counter packets 8 bytes 506
iifname "ether5" ct status expected counter packets 0 bytes 0
iifname "ether5" ct status seen-reply counter packets 8 bytes 506
iifname "ether5" ct status assured counter packets 6 bytes 386
iifname "ether5" ct status confirmed counter packets 8 bytes 506
iifname "ether5" ct status snat counter packets 8 bytes 506
iifname "ether5" ct status dnat counter packets 0 bytes 0
iifname "ether5" ct status dying counter packets 0 bytes 0
iifname "ether6" ip protocol icmp counter packets 0 bytes 0
iifname "ether6" ip protocol esp counter packets 0 bytes 0
iifname "ether6" ip protocol ah counter packets 0 bytes 0
iifname "ether6" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether6" ip protocol udp counter packets 0 bytes 0
iifname "ether6" ip protocol udplite counter packets 0 bytes 0
iifname "ether6" ip protocol tcp counter packets 8 bytes 506
iifname "ether6" ip protocol dccp counter packets 0 bytes 0
iifname "ether6" ip protocol sctp counter packets 0 bytes 0
iifname "ether6" ct state new counter packets 0 bytes 0
iifname "ether6" ct state established counter packets 8 bytes 506
iifname "ether6" ct state related counter packets 0 bytes 0
iifname "ether6" ct state invalid counter packets 0 bytes 0
iifname "ether6" ct state untracked counter packets 0 bytes 0
iifname "ether6" ct direction original counter packets 0 bytes 0
iifname "ether6" ct direction reply counter packets 8 bytes 506
iifname "ether6" ct status expected counter packets 0 bytes 0
iifname "ether6" ct status seen-reply counter packets 8 bytes 506
iifname "ether6" ct status assured counter packets 6 bytes 386
iifname "ether6" ct status confirmed counter packets 8 bytes 506
iifname "ether6" ct status snat counter packets 8 bytes 506
iifname "ether6" ct status dnat counter packets 0 bytes 0
iifname "ether6" ct status dying counter packets 0 bytes 0
iifname "ether7" ip protocol icmp counter packets 0 bytes 0
iifname "ether7" ip protocol esp counter packets 0 bytes 0
iifname "ether7" ip protocol ah counter packets 0 bytes 0
iifname "ether7" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether7" ip protocol udp counter packets 0 bytes 0
iifname "ether7" ip protocol udplite counter packets 0 bytes 0
iifname "ether7" ip protocol tcp counter packets 16 bytes 1012
iifname "ether7" ip protocol dccp counter packets 0 bytes 0
iifname "ether7" ip protocol sctp counter packets 0 bytes 0
iifname "ether7" ct state new counter packets 0 bytes 0
iifname "ether7" ct state established counter packets 16 bytes 1012
iifname "ether7" ct state related counter packets 0 bytes 0
iifname "ether7" ct state invalid counter packets 0 bytes 0
iifname "ether7" ct state untracked counter packets 0 bytes 0
iifname "ether7" ct direction original counter packets 0 bytes 0
iifname "ether7" ct direction reply counter packets 16 bytes 1012
iifname "ether7" ct status expected counter packets 0 bytes 0
iifname "ether7" ct status seen-reply counter packets 16 bytes 1012
iifname "ether7" ct status assured counter packets 12 bytes 772
iifname "ether7" ct status confirmed counter packets 16 bytes 1012
iifname "ether7" ct status snat counter packets 16 bytes 1012
iifname "ether7" ct status dnat counter packets 0 bytes 0
iifname "ether7" ct status dying counter packets 0 bytes 0
iifname "ether8" ip protocol icmp counter packets 0 bytes 0
iifname "ether8" ip protocol esp counter packets 0 bytes 0
iifname "ether8" ip protocol ah counter packets 0 bytes 0
iifname "ether8" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether8" ip protocol udp counter packets 0 bytes 0
iifname "ether8" ip protocol udplite counter packets 0 bytes 0
iifname "ether8" ip protocol tcp counter packets 12 bytes 759
iifname "ether8" ip protocol dccp counter packets 0 bytes 0
iifname "ether8" ip protocol sctp counter packets 0 bytes 0
iifname "ether8" ct state new counter packets 0 bytes 0
iifname "ether8" ct state established counter packets 12 bytes 759
iifname "ether8" ct state related counter packets 0 bytes 0
iifname "ether8" ct state invalid counter packets 0 bytes 0
iifname "ether8" ct state untracked counter packets 0 bytes 0
iifname "ether8" ct direction original counter packets 0 bytes 0
iifname "ether8" ct direction reply counter packets 12 bytes 759
iifname "ether8" ct status expected counter packets 0 bytes 0
iifname "ether8" ct status seen-reply counter packets 12 bytes 759
iifname "ether8" ct status assured counter packets 9 bytes 579
iifname "ether8" ct status confirmed counter packets 12 bytes 759
iifname "ether8" ct status snat counter packets 12 bytes 759
iifname "ether8" ct status dnat counter packets 0 bytes 0
iifname "ether8" ct status dying counter packets 0 bytes 0
iifname "ether9" ip protocol icmp counter packets 0 bytes 0
iifname "ether9" ip protocol esp counter packets 0 bytes 0
iifname "ether9" ip protocol ah counter packets 0 bytes 0
iifname "ether9" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether9" ip protocol udp counter packets 4 bytes 224
iifname "ether9" ip protocol udplite counter packets 0 bytes 0
iifname "ether9" ip protocol tcp counter packets 4 bytes 253
iifname "ether9" ip protocol dccp counter packets 0 bytes 0
iifname "ether9" ip protocol sctp counter packets 0 bytes 0
iifname "ether9" ct state new counter packets 0 bytes 0
iifname "ether9" ct state established counter packets 8 bytes 477
iifname "ether9" ct state related counter packets 0 bytes 0
iifname "ether9" ct state invalid counter packets 0 bytes 0
iifname "ether9" ct state untracked counter packets 0 bytes 0
iifname "ether9" ct direction original counter packets 0 bytes 0
iifname "ether9" ct direction reply counter packets 8 bytes 477
iifname "ether9" ct status expected counter packets 0 bytes 0
iifname "ether9" ct status seen-reply counter packets 8 bytes 477
iifname "ether9" ct status assured counter packets 6 bytes 361
iifname "ether9" ct status confirmed counter packets 8 bytes 477
iifname "ether9" ct status snat counter packets 8 bytes 477
iifname "ether9" ct status dnat counter packets 0 bytes 0
iifname "ether9" ct status dying counter packets 0 bytes 0
iifname "ether10" ip protocol icmp counter packets 0 bytes 0
iifname "ether10" ip protocol esp counter packets 0 bytes 0
iifname "ether10" ip protocol ah counter packets 0 bytes 0
iifname "ether10" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether10" ip protocol udp counter packets 0 bytes 0
iifname "ether10" ip protocol udplite counter packets 0 bytes 0
iifname "ether10" ip protocol tcp counter packets 8 bytes 508
iifname "ether10" ip protocol dccp counter packets 0 bytes 0
iifname "ether10" ip protocol sctp counter packets 0 bytes 0
iifname "ether10" ct state new counter packets 0 bytes 0
iifname "ether10" ct state established counter packets 8 bytes 508
iifname "ether10" ct state related counter packets 0 bytes 0
iifname "ether10" ct state invalid counter packets 0 bytes 0
iifname "ether10" ct state untracked counter packets 0 bytes 0
iifname "ether10" ct direction original counter packets 0 bytes 0
iifname "ether10" ct direction reply counter packets 8 bytes 508
iifname "ether10" ct status expected counter packets 0 bytes 0
iifname "ether10" ct status seen-reply counter packets 8 bytes 508
iifname "ether10" ct status assured counter packets 6 bytes 388
iifname "ether10" ct status confirmed counter packets 8 bytes 508
iifname "ether10" ct status snat counter packets 8 bytes 508
iifname "ether10" ct status dnat counter packets 0 bytes 0
iifname "ether10" ct status dying counter packets 0 bytes 0
iifname "ether11" ip protocol icmp counter packets 0 bytes 0
iifname "ether11" ip protocol esp counter packets 0 bytes 0
iifname "ether11" ip protocol ah counter packets 0 bytes 0
iifname "ether11" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether11" ip protocol udp counter packets 0 bytes 0
iifname "ether11" ip protocol udplite counter packets 0 bytes 0
iifname "ether11" ip protocol tcp counter packets 12 bytes 762
iifname "ether11" ip protocol dccp counter packets 0 bytes 0
iifname "ether11" ip protocol sctp counter packets 0 bytes 0
iifname "ether11" ct state new counter packets 0 bytes 0
iifname "ether11" ct state established counter packets 12 bytes 762
iifname "ether11" ct state related counter packets 0 bytes 0
iifname "ether11" ct state invalid counter packets 0 bytes 0
iifname "ether11" ct state untracked counter packets 0 bytes 0
iifname "ether11" ct direction original counter packets 0 bytes 0
iifname "ether11" ct direction reply counter packets 12 bytes 762
iifname "ether11" ct status expected counter packets 0 bytes 0
iifname "ether11" ct status seen-reply counter packets 12 bytes 762
iifname "ether11" ct status assured counter packets 9 bytes 582
iifname "ether11" ct status confirmed counter packets 12 bytes 762
iifname "ether11" ct status snat counter packets 12 bytes 762
iifname "ether11" ct status dnat counter packets 0 bytes 0
iifname "ether11" ct status dying counter packets 0 bytes 0
iifname "ether12" ip protocol icmp counter packets 1 bytes 112
iifname "ether12" ip protocol esp counter packets 0 bytes 0
iifname "ether12" ip protocol ah counter packets 0 bytes 0
iifname "ether12" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether12" ip protocol udp counter packets 0 bytes 0
iifname "ether12" ip protocol udplite counter packets 0 bytes 0
iifname "ether12" ip protocol tcp counter packets 4 bytes 254
iifname "ether12" ip protocol dccp counter packets 0 bytes 0
iifname "ether12" ip protocol sctp counter packets 0 bytes 0
iifname "ether12" ct state new counter packets 0 bytes 0
iifname "ether12" ct state established counter packets 4 bytes 254
iifname "ether12" ct state related counter packets 1 bytes 112
iifname "ether12" ct state invalid counter packets 0 bytes 0
iifname "ether12" ct state untracked counter packets 0 bytes 0
iifname "ether12" ct direction original counter packets 0 bytes 0
iifname "ether12" ct direction reply counter packets 5 bytes 366
iifname "ether12" ct status expected counter packets 0 bytes 0
iifname "ether12" ct status seen-reply counter packets 4 bytes 254
iifname "ether12" ct status assured counter packets 3 bytes 194
iifname "ether12" ct status confirmed counter packets 5 bytes 366
iifname "ether12" ct status snat counter packets 5 bytes 366
iifname "ether12" ct status dnat counter packets 0 bytes 0
iifname "ether12" ct status dying counter packets 0 bytes 0
iifname "ether13" ip protocol icmp counter packets 0 bytes 0
iifname "ether13" ip protocol esp counter packets 0 bytes 0
iifname "ether13" ip protocol ah counter packets 0 bytes 0
iifname "ether13" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether13" ip protocol udp counter packets 0 bytes 0
iifname "ether13" ip protocol udplite counter packets 0 bytes 0
iifname "ether13" ip protocol tcp counter packets 8 bytes 508
iifname "ether13" ip protocol dccp counter packets 0 bytes 0
iifname "ether13" ip protocol sctp counter packets 0 bytes 0
iifname "ether13" ct state new counter packets 0 bytes 0
iifname "ether13" ct state established counter packets 8 bytes 508
iifname "ether13" ct state related counter packets 0 bytes 0
iifname "ether13" ct state invalid counter packets 0 bytes 0
iifname "ether13" ct state untracked counter packets 0 bytes 0
iifname "ether13" ct direction original counter packets 0 bytes 0
iifname "ether13" ct direction reply counter packets 8 bytes 508
iifname "ether13" ct status expected counter packets 0 bytes 0
iifname "ether13" ct status seen-reply counter packets 8 bytes 508
iifname "ether13" ct status assured counter packets 6 bytes 388
iifname "ether13" ct status confirmed counter packets 8 bytes 508
iifname "ether13" ct status snat counter packets 8 bytes 508
iifname "ether13" ct status dnat counter packets 0 bytes 0
iifname "ether13" ct status dying counter packets 0 bytes 0
iifname "ether14" ip protocol icmp counter packets 0 bytes 0
iifname "ether14" ip protocol esp counter packets 0 bytes 0
iifname "ether14" ip protocol ah counter packets 0 bytes 0
iifname "ether14" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether14" ip protocol udp counter packets 0 bytes 0
iifname "ether14" ip protocol udplite counter packets 0 bytes 0
iifname "ether14" ip protocol tcp counter packets 0 bytes 0
iifname "ether14" ip protocol dccp counter packets 0 bytes 0
iifname "ether14" ip protocol sctp counter packets 0 bytes 0
iifname "ether14" ct state new counter packets 0 bytes 0
iifname "ether14" ct state established counter packets 0 bytes 0
iifname "ether14" ct state related counter packets 0 bytes 0
iifname "ether14" ct state invalid counter packets 0 bytes 0
iifname "ether14" ct state untracked counter packets 0 bytes 0
iifname "ether14" ct direction original counter packets 0 bytes 0
iifname "ether14" ct direction reply counter packets 0 bytes 0
iifname "ether14" ct status expected counter packets 0 bytes 0
iifname "ether14" ct status seen-reply counter packets 0 bytes 0
iifname "ether14" ct status assured counter packets 0 bytes 0
iifname "ether14" ct status confirmed counter packets 0 bytes 0
iifname "ether14" ct status snat counter packets 0 bytes 0
iifname "ether14" ct status dnat counter packets 0 bytes 0
iifname "ether14" ct status dying counter packets 0 bytes 0
iifname "ether15" ip protocol icmp counter packets 0 bytes 0
iifname "ether15" ip protocol esp counter packets 0 bytes 0
iifname "ether15" ip protocol ah counter packets 0 bytes 0
iifname "ether15" ip protocol ipcomp counter packets 0 bytes 0
iifname "ether15" ip protocol udp counter packets 0 bytes 0
iifname "ether15" ip protocol udplite counter packets 0 bytes 0
iifname "ether15" ip protocol tcp counter packets 0 bytes 0
iifname "ether15" ip protocol dccp counter packets 0 bytes 0
iifname "ether15" ip protocol sctp counter packets 0 bytes 0
iifname "ether15" ct state new counter packets 0 bytes 0
iifname "ether15" ct state established counter packets 0 bytes 0
iifname "ether15" ct state related counter packets 0 bytes 0
iifname "ether15" ct state invalid counter packets 0 bytes 0
iifname "ether15" ct state untracked counter packets 0 bytes 0
iifname "ether15" ct direction original counter packets 0 bytes 0
iifname "ether15" ct direction reply counter packets 0 bytes 0
iifname "ether15" ct status expected counter packets 0 bytes 0
iifname "ether15" ct status seen-reply counter packets 0 bytes 0
iifname "ether15" ct status assured counter packets 0 bytes 0
iifname "ether15" ct status confirmed counter packets 0 bytes 0
iifname "ether15" ct status snat counter packets 0 bytes 0
iifname "ether15" ct status dnat counter packets 0 bytes 0
iifname "ether15" ct status dying counter packets 0 bytes 0
counter packets 168 bytes 9732 accept
}
chain POSTROUTING_COUNTERS {
counter packets 190 bytes 11072
oifname "ether23" ip protocol icmp counter packets 1 bytes 112
oifname "ether23" ip protocol esp counter packets 0 bytes 0
oifname "ether23" ip protocol ah counter packets 0 bytes 0
oifname "ether23" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether23" ip protocol udp counter packets 4 bytes 224
oifname "ether23" ip protocol udplite counter packets 0 bytes 0
oifname "ether23" ip protocol tcp counter packets 80 bytes 5068
oifname "ether23" ip protocol dccp counter packets 0 bytes 0
oifname "ether23" ip protocol sctp counter packets 0 bytes 0
oifname "ether23" ct state new counter packets 0 bytes 0
oifname "ether23" ct state established counter packets 84 bytes 5292
oifname "ether23" ct state related counter packets 1 bytes 112
oifname "ether23" ct state invalid counter packets 0 bytes 0
oifname "ether23" ct state untracked counter packets 0 bytes 0
oifname "ether23" ct direction original counter packets 0 bytes 0
oifname "ether23" ct direction reply counter packets 85 bytes 5404
oifname "ether23" ct status expected counter packets 0 bytes 0
oifname "ether23" ct status seen-reply counter packets 84 bytes 5292
oifname "ether23" ct status assured counter packets 63 bytes 4036
oifname "ether23" ct status confirmed counter packets 85 bytes 5404
oifname "ether23" ct status snat counter packets 85 bytes 5404
oifname "ether23" ct status dnat counter packets 0 bytes 0
oifname "ether23" ct status dying counter packets 0 bytes 0
oifname "ether5" ip protocol icmp counter packets 0 bytes 0
oifname "ether5" ip protocol esp counter packets 0 bytes 0
oifname "ether5" ip protocol ah counter packets 0 bytes 0
oifname "ether5" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether5" ip protocol udp counter packets 0 bytes 0
oifname "ether5" ip protocol udplite counter packets 0 bytes 0
oifname "ether5" ip protocol tcp counter packets 10 bytes 536
oifname "ether5" ip protocol dccp counter packets 0 bytes 0
oifname "ether5" ip protocol sctp counter packets 0 bytes 0
oifname "ether5" ct state new counter packets 2 bytes 120
oifname "ether5" ct state established counter packets 8 bytes 416
oifname "ether5" ct state related counter packets 0 bytes 0
oifname "ether5" ct state invalid counter packets 0 bytes 0
oifname "ether5" ct state untracked counter packets 0 bytes 0
oifname "ether5" ct direction original counter packets 10 bytes 536
oifname "ether5" ct direction reply counter packets 0 bytes 0
oifname "ether5" ct status expected counter packets 0 bytes 0
oifname "ether5" ct status seen-reply counter packets 8 bytes 416
oifname "ether5" ct status assured counter packets 8 bytes 416
oifname "ether5" ct status confirmed counter packets 8 bytes 416
oifname "ether5" ct status snat counter packets 8 bytes 416
oifname "ether5" ct status dnat counter packets 0 bytes 0
oifname "ether5" ct status dying counter packets 0 bytes 0
oifname "ether6" ip protocol icmp counter packets 0 bytes 0
oifname "ether6" ip protocol esp counter packets 0 bytes 0
oifname "ether6" ip protocol ah counter packets 0 bytes 0
oifname "ether6" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether6" ip protocol udp counter packets 0 bytes 0
oifname "ether6" ip protocol udplite counter packets 0 bytes 0
oifname "ether6" ip protocol tcp counter packets 10 bytes 536
oifname "ether6" ip protocol dccp counter packets 0 bytes 0
oifname "ether6" ip protocol sctp counter packets 0 bytes 0
oifname "ether6" ct state new counter packets 2 bytes 120
oifname "ether6" ct state established counter packets 8 bytes 416
oifname "ether6" ct state related counter packets 0 bytes 0
oifname "ether6" ct state invalid counter packets 0 bytes 0
oifname "ether6" ct state untracked counter packets 0 bytes 0
oifname "ether6" ct direction original counter packets 10 bytes 536
oifname "ether6" ct direction reply counter packets 0 bytes 0
oifname "ether6" ct status expected counter packets 0 bytes 0
oifname "ether6" ct status seen-reply counter packets 8 bytes 416
oifname "ether6" ct status assured counter packets 8 bytes 416
oifname "ether6" ct status confirmed counter packets 8 bytes 416
oifname "ether6" ct status snat counter packets 8 bytes 416
oifname "ether6" ct status dnat counter packets 0 bytes 0
oifname "ether6" ct status dying counter packets 0 bytes 0
oifname "ether7" ip protocol icmp counter packets 0 bytes 0
oifname "ether7" ip protocol esp counter packets 0 bytes 0
oifname "ether7" ip protocol ah counter packets 0 bytes 0
oifname "ether7" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether7" ip protocol udp counter packets 0 bytes 0
oifname "ether7" ip protocol udplite counter packets 0 bytes 0
oifname "ether7" ip protocol tcp counter packets 20 bytes 1072
oifname "ether7" ip protocol dccp counter packets 0 bytes 0
oifname "ether7" ip protocol sctp counter packets 0 bytes 0
oifname "ether7" ct state new counter packets 4 bytes 240
oifname "ether7" ct state established counter packets 16 bytes 832
oifname "ether7" ct state related counter packets 0 bytes 0
oifname "ether7" ct state invalid counter packets 0 bytes 0
oifname "ether7" ct state untracked counter packets 0 bytes 0
oifname "ether7" ct direction original counter packets 20 bytes 1072
oifname "ether7" ct direction reply counter packets 0 bytes 0
oifname "ether7" ct status expected counter packets 0 bytes 0
oifname "ether7" ct status seen-reply counter packets 16 bytes 832
oifname "ether7" ct status assured counter packets 16 bytes 832
oifname "ether7" ct status confirmed counter packets 16 bytes 832
oifname "ether7" ct status snat counter packets 16 bytes 832
oifname "ether7" ct status dnat counter packets 0 bytes 0
oifname "ether7" ct status dying counter packets 0 bytes 0
oifname "ether8" ip protocol icmp counter packets 0 bytes 0
oifname "ether8" ip protocol esp counter packets 0 bytes 0
oifname "ether8" ip protocol ah counter packets 0 bytes 0
oifname "ether8" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether8" ip protocol udp counter packets 0 bytes 0
oifname "ether8" ip protocol udplite counter packets 0 bytes 0
oifname "ether8" ip protocol tcp counter packets 15 bytes 804
oifname "ether8" ip protocol dccp counter packets 0 bytes 0
oifname "ether8" ip protocol sctp counter packets 0 bytes 0
oifname "ether8" ct state new counter packets 3 bytes 180
oifname "ether8" ct state established counter packets 12 bytes 624
oifname "ether8" ct state related counter packets 0 bytes 0
oifname "ether8" ct state invalid counter packets 0 bytes 0
oifname "ether8" ct state untracked counter packets 0 bytes 0
oifname "ether8" ct direction original counter packets 15 bytes 804
oifname "ether8" ct direction reply counter packets 0 bytes 0
oifname "ether8" ct status expected counter packets 0 bytes 0
oifname "ether8" ct status seen-reply counter packets 12 bytes 624
oifname "ether8" ct status assured counter packets 12 bytes 624
oifname "ether8" ct status confirmed counter packets 12 bytes 624
oifname "ether8" ct status snat counter packets 12 bytes 624
oifname "ether8" ct status dnat counter packets 0 bytes 0
oifname "ether8" ct status dying counter packets 0 bytes 0
oifname "ether9" ip protocol icmp counter packets 0 bytes 0
oifname "ether9" ip protocol esp counter packets 0 bytes 0
oifname "ether9" ip protocol ah counter packets 0 bytes 0
oifname "ether9" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether9" ip protocol udp counter packets 4 bytes 224
oifname "ether9" ip protocol udplite counter packets 0 bytes 0
oifname "ether9" ip protocol tcp counter packets 5 bytes 268
oifname "ether9" ip protocol dccp counter packets 0 bytes 0
oifname "ether9" ip protocol sctp counter packets 0 bytes 0
oifname "ether9" ct state new counter packets 3 bytes 172
oifname "ether9" ct state established counter packets 6 bytes 320
oifname "ether9" ct state related counter packets 0 bytes 0
oifname "ether9" ct state invalid counter packets 0 bytes 0
oifname "ether9" ct state untracked counter packets 0 bytes 0
oifname "ether9" ct direction original counter packets 9 bytes 492
oifname "ether9" ct direction reply counter packets 0 bytes 0
oifname "ether9" ct status expected counter packets 0 bytes 0
oifname "ether9" ct status seen-reply counter packets 6 bytes 320
oifname "ether9" ct status assured counter packets 6 bytes 320
oifname "ether9" ct status confirmed counter packets 7 bytes 376
oifname "ether9" ct status snat counter packets 7 bytes 376
oifname "ether9" ct status dnat counter packets 0 bytes 0
oifname "ether9" ct status dying counter packets 0 bytes 0
oifname "ether10" ip protocol icmp counter packets 0 bytes 0
oifname "ether10" ip protocol esp counter packets 0 bytes 0
oifname "ether10" ip protocol ah counter packets 0 bytes 0
oifname "ether10" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether10" ip protocol udp counter packets 0 bytes 0
oifname "ether10" ip protocol udplite counter packets 0 bytes 0
oifname "ether10" ip protocol tcp counter packets 10 bytes 536
oifname "ether10" ip protocol dccp counter packets 0 bytes 0
oifname "ether10" ip protocol sctp counter packets 0 bytes 0
oifname "ether10" ct state new counter packets 2 bytes 120
oifname "ether10" ct state established counter packets 8 bytes 416
oifname "ether10" ct state related counter packets 0 bytes 0
oifname "ether10" ct state invalid counter packets 0 bytes 0
oifname "ether10" ct state untracked counter packets 0 bytes 0
oifname "ether10" ct direction original counter packets 10 bytes 536
oifname "ether10" ct direction reply counter packets 0 bytes 0
oifname "ether10" ct status expected counter packets 0 bytes 0
oifname "ether10" ct status seen-reply counter packets 8 bytes 416
oifname "ether10" ct status assured counter packets 8 bytes 416
oifname "ether10" ct status confirmed counter packets 8 bytes 416
oifname "ether10" ct status snat counter packets 8 bytes 416
oifname "ether10" ct status dnat counter packets 0 bytes 0
oifname "ether10" ct status dying counter packets 0 bytes 0
oifname "ether11" ip protocol icmp counter packets 0 bytes 0
oifname "ether11" ip protocol esp counter packets 0 bytes 0
oifname "ether11" ip protocol ah counter packets 0 bytes 0
oifname "ether11" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether11" ip protocol udp counter packets 0 bytes 0
oifname "ether11" ip protocol udplite counter packets 0 bytes 0
oifname "ether11" ip protocol tcp counter packets 15 bytes 804
oifname "ether11" ip protocol dccp counter packets 0 bytes 0
oifname "ether11" ip protocol sctp counter packets 0 bytes 0
oifname "ether11" ct state new counter packets 3 bytes 180
oifname "ether11" ct state established counter packets 12 bytes 624
oifname "ether11" ct state related counter packets 0 bytes 0
oifname "ether11" ct state invalid counter packets 0 bytes 0
oifname "ether11" ct state untracked counter packets 0 bytes 0
oifname "ether11" ct direction original counter packets 15 bytes 804
oifname "ether11" ct direction reply counter packets 0 bytes 0
oifname "ether11" ct status expected counter packets 0 bytes 0
oifname "ether11" ct status seen-reply counter packets 12 bytes 624
oifname "ether11" ct status assured counter packets 12 bytes 624
oifname "ether11" ct status confirmed counter packets 12 bytes 624
oifname "ether11" ct status snat counter packets 12 bytes 624
oifname "ether11" ct status dnat counter packets 0 bytes 0
oifname "ether11" ct status dying counter packets 0 bytes 0
oifname "ether12" ip protocol icmp counter packets 1 bytes 84
oifname "ether12" ip protocol esp counter packets 0 bytes 0
oifname "ether12" ip protocol ah counter packets 0 bytes 0
oifname "ether12" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether12" ip protocol udp counter packets 0 bytes 0
oifname "ether12" ip protocol udplite counter packets 0 bytes 0
oifname "ether12" ip protocol tcp counter packets 5 bytes 268
oifname "ether12" ip protocol dccp counter packets 0 bytes 0
oifname "ether12" ip protocol sctp counter packets 0 bytes 0
oifname "ether12" ct state new counter packets 2 bytes 144
oifname "ether12" ct state established counter packets 4 bytes 208
oifname "ether12" ct state related counter packets 0 bytes 0
oifname "ether12" ct state invalid counter packets 0 bytes 0
oifname "ether12" ct state untracked counter packets 0 bytes 0
oifname "ether12" ct direction original counter packets 6 bytes 352
oifname "ether12" ct direction reply counter packets 0 bytes 0
oifname "ether12" ct status expected counter packets 0 bytes 0
oifname "ether12" ct status seen-reply counter packets 4 bytes 208
oifname "ether12" ct status assured counter packets 4 bytes 208
oifname "ether12" ct status confirmed counter packets 4 bytes 208
oifname "ether12" ct status snat counter packets 4 bytes 208
oifname "ether12" ct status dnat counter packets 0 bytes 0
oifname "ether12" ct status dying counter packets 0 bytes 0
oifname "ether13" ip protocol icmp counter packets 0 bytes 0
oifname "ether13" ip protocol esp counter packets 0 bytes 0
oifname "ether13" ip protocol ah counter packets 0 bytes 0
oifname "ether13" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether13" ip protocol udp counter packets 0 bytes 0
oifname "ether13" ip protocol udplite counter packets 0 bytes 0
oifname "ether13" ip protocol tcp counter packets 10 bytes 536
oifname "ether13" ip protocol dccp counter packets 0 bytes 0
oifname "ether13" ip protocol sctp counter packets 0 bytes 0
oifname "ether13" ct state new counter packets 2 bytes 120
oifname "ether13" ct state established counter packets 8 bytes 416
oifname "ether13" ct state related counter packets 0 bytes 0
oifname "ether13" ct state invalid counter packets 0 bytes 0
oifname "ether13" ct state untracked counter packets 0 bytes 0
oifname "ether13" ct direction original counter packets 10 bytes 536
oifname "ether13" ct direction reply counter packets 0 bytes 0
oifname "ether13" ct status expected counter packets 0 bytes 0
oifname "ether13" ct status seen-reply counter packets 8 bytes 416
oifname "ether13" ct status assured counter packets 8 bytes 416
oifname "ether13" ct status confirmed counter packets 8 bytes 416
oifname "ether13" ct status snat counter packets 8 bytes 416
oifname "ether13" ct status dnat counter packets 0 bytes 0
oifname "ether13" ct status dying counter packets 0 bytes 0
oifname "ether14" ip protocol icmp counter packets 0 bytes 0
oifname "ether14" ip protocol esp counter packets 0 bytes 0
oifname "ether14" ip protocol ah counter packets 0 bytes 0
oifname "ether14" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether14" ip protocol udp counter packets 0 bytes 0
oifname "ether14" ip protocol udplite counter packets 0 bytes 0
oifname "ether14" ip protocol tcp counter packets 0 bytes 0
oifname "ether14" ip protocol dccp counter packets 0 bytes 0
oifname "ether14" ip protocol sctp counter packets 0 bytes 0
oifname "ether14" ct state new counter packets 0 bytes 0
oifname "ether14" ct state established counter packets 0 bytes 0
oifname "ether14" ct state related counter packets 0 bytes 0
oifname "ether14" ct state invalid counter packets 0 bytes 0
oifname "ether14" ct state untracked counter packets 0 bytes 0
oifname "ether14" ct direction original counter packets 0 bytes 0
oifname "ether14" ct direction reply counter packets 0 bytes 0
oifname "ether14" ct status expected counter packets 0 bytes 0
oifname "ether14" ct status seen-reply counter packets 0 bytes 0
oifname "ether14" ct status assured counter packets 0 bytes 0
oifname "ether14" ct status confirmed counter packets 0 bytes 0
oifname "ether14" ct status snat counter packets 0 bytes 0
oifname "ether14" ct status dnat counter packets 0 bytes 0
oifname "ether14" ct status dying counter packets 0 bytes 0
oifname "ether15" ip protocol icmp counter packets 0 bytes 0
oifname "ether15" ip protocol esp counter packets 0 bytes 0
oifname "ether15" ip protocol ah counter packets 0 bytes 0
oifname "ether15" ip protocol ipcomp counter packets 0 bytes 0
oifname "ether15" ip protocol udp counter packets 0 bytes 0
oifname "ether15" ip protocol udplite counter packets 0 bytes 0
oifname "ether15" ip protocol tcp counter packets 0 bytes 0
oifname "ether15" ip protocol dccp counter packets 0 bytes 0
oifname "ether15" ip protocol sctp counter packets 0 bytes 0
oifname "ether15" ct state new counter packets 0 bytes 0
oifname "ether15" ct state established counter packets 0 bytes 0
oifname "ether15" ct state related counter packets 0 bytes 0
oifname "ether15" ct state invalid counter packets 0 bytes 0
oifname "ether15" ct state untracked counter packets 0 bytes 0
oifname "ether15" ct direction original counter packets 0 bytes 0
oifname "ether15" ct direction reply counter packets 0 bytes 0
oifname "ether15" ct status expected counter packets 0 bytes 0
oifname "ether15" ct status seen-reply counter packets 0 bytes 0
oifname "ether15" ct status assured counter packets 0 bytes 0
oifname "ether15" ct status confirmed counter packets 0 bytes 0
oifname "ether15" ct status snat counter packets 0 bytes 0
oifname "ether15" ct status dnat counter packets 0 bytes 0
oifname "ether15" ct status dying counter packets 0 bytes 0
ct mark set mark counter packets 190 bytes 11072
counter packets 190 bytes 11072
}
}