-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnet_dev.log
2695 lines (2695 loc) · 640 KB
/
net_dev.log
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
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67697788875 51168782 0 0 0 0 0 17115 5827922404 13915804 0 2705 0 0 0 0
p2p-wlan0-0: 26675581 321011 0 0 0 0 0 58 984362270 666960 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67706445376 51176195 0 0 0 0 0 17126 5829010968 13918457 0 2705 0 0 0 0
p2p-wlan0-0: 26728152 321064 0 0 0 0 0 58 984368945 666996 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67713204822 51182312 0 0 0 0 0 17136 5830060577 13921042 0 2706 0 0 0 0
p2p-wlan0-0: 26728152 321064 0 0 0 0 0 58 984368945 666996 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67721306433 51189553 0 0 0 0 0 17136 5831160142 13923877 0 2707 0 0 0 0
p2p-wlan0-0: 26728152 321064 0 0 0 0 0 58 984368945 666996 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67728310587 51195997 0 0 0 0 0 17137 5832186089 13926545 0 2709 0 0 0 0
p2p-wlan0-0: 26728152 321064 0 0 0 0 0 58 984368945 666996 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67737046276 51203656 0 0 0 0 0 17150 5833264950 13929384 0 2709 0 0 0 0
p2p-wlan0-0: 26728180 321065 0 0 0 0 0 58 984368987 666997 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67746858110 51211997 0 0 0 0 0 17151 5834358459 13932238 0 2710 0 0 0 0
p2p-wlan0-0: 26760660 321684 0 0 0 0 0 58 986269289 668255 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67758023506 51221233 0 0 0 0 0 17152 5835444281 13935056 0 2710 0 0 0 0
p2p-wlan0-0: 26807564 322586 0 0 0 0 0 58 989006601 670063 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67768295245 51230065 0 0 0 0 0 17163 5836487636 13937791 0 2711 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67779395467 51239708 0 0 0 0 0 17164 5837577855 13940658 0 2711 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67790624035 51249454 0 0 0 0 0 17164 5838668704 13943572 0 2713 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67799617417 51257598 0 0 0 0 0 17165 5839766135 13946456 0 2713 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67805474744 51263731 0 0 0 0 0 17174 5840863966 13949385 0 2713 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67813489560 51271352 0 0 0 0 0 17174 5841970593 13952302 0 2715 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67822384130 51279599 0 0 0 0 0 17175 5843072678 13955361 0 2715 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67832512116 51288815 0 0 0 0 0 17175 5844243600 13958658 0 2716 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67841916861 51297274 0 0 0 0 0 17185 5845299569 13961561 0 2718 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67852067253 51306299 0 0 0 0 0 17196 5846402008 13964596 0 2718 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67863482009 51316172 0 0 0 0 0 17196 5847493981 13967623 0 2718 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67870949290 51323368 0 0 0 0 0 17206 5848588240 13970612 0 2718 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67879350397 51331297 0 0 0 0 0 17206 5849702127 13973692 0 2718 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67888843017 51339860 0 0 0 0 0 17206 5850782876 13976663 0 2721 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67899465574 51349203 0 0 0 0 0 17206 5851898723 13979635 0 2721 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67910692912 51358919 0 0 0 0 0 17206 5852996610 13982603 0 2722 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67922282902 51368922 0 0 0 0 0 17217 5854108682 13985578 0 2722 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67931750407 51377439 0 0 0 0 0 17218 5855194493 13988527 0 2724 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67940600580 51385607 0 0 0 0 0 17219 5856297732 13991520 0 2724 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67949337417 51393693 0 0 0 0 0 17220 5857405412 13994512 0 2725 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67959158379 51402497 0 0 0 0 0 17221 5858522169 13997518 0 2726 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67969692459 51411806 0 0 0 0 0 17221 5859637288 14000582 0 2728 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67980671510 51421193 0 0 0 0 0 17221 5860701819 14003465 0 2729 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67989431683 51429241 0 0 0 0 0 17232 5861785354 14006285 0 2729 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 67999598176 51438376 0 0 0 0 0 17244 5862957044 14009435 0 2730 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68009558821 51447132 0 0 0 0 0 17244 5864013311 14012357 0 2730 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68020717446 51456817 0 0 0 0 0 17252 5865092214 14015321 0 2732 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68030219863 51465365 0 0 0 0 0 17252 5866185199 14018330 0 2732 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68039515064 51473809 0 0 0 0 0 17252 5867297672 14021286 0 2733 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68047463607 51481393 0 0 0 0 0 17252 5868424554 14024361 0 2734 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68056703501 51489816 0 0 0 0 0 17269 5869523676 14027317 0 2734 0 0 0 0
p2p-wlan0-0: 26830860 323034 0 0 0 0 0 58 990283933 670908 0 343 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68066490503 51498515 0 0 0 0 0 17272 5870588369 14030229 0 2738 0 0 0 0
p2p-wlan0-0: 26906936 324497 0 0 0 0 0 58 994806441 673897 0 344 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68077801907 51508282 0 0 0 0 0 17276 5871683472 14033187 0 2740 0 0 0 0
p2p-wlan0-0: 26954776 325417 0 0 0 0 0 58 997570444 675724 0 347 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68087088104 51516776 0 0 0 0 0 17277 5872835621 14036240 0 2740 0 0 0 0
p2p-wlan0-0: 26954776 325417 0 0 0 0 0 58 997570444 675724 0 347 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68096018003 51524822 0 0 0 0 0 17286 5873886606 14039118 0 2742 0 0 0 0
p2p-wlan0-0: 27003552 326355 0 0 0 0 0 58 1000507421 677666 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68106257179 51533797 0 0 0 0 0 17286 5874971769 14042046 0 2742 0 0 0 0
p2p-wlan0-0: 27003552 326355 0 0 0 0 0 58 1000507421 677666 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68117666589 51543666 0 0 0 0 0 17288 5876082148 14045021 0 2743 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68126636568 51551797 0 0 0 0 0 17288 5877158458 14047876 0 2746 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68136032852 51560413 0 0 0 0 0 17299 5878287420 14050974 0 2746 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68145587271 51568976 0 0 0 0 0 17311 5879370556 14053907 0 2746 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68156319554 51578314 0 0 0 0 0 17311 5880456380 14056924 0 2748 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68167992548 51588469 0 0 0 0 0 17323 5881767785 14060131 0 2748 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68177576599 51597097 0 0 0 0 0 17323 5882906636 14063163 0 2750 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68186835150 51605511 0 0 0 0 0 17323 5883995947 14066163 0 2751 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68197330252 51614680 0 0 0 0 0 17323 5885095043 14069175 0 2751 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68208820914 51624584 0 0 0 0 0 17333 5886196293 14072219 0 2751 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68216081993 51631644 0 0 0 0 0 17333 5887309134 14075261 0 2751 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68224131176 51639283 0 0 0 0 0 17333 5888415858 14078396 0 2754 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68232116819 51646813 0 0 0 0 0 17333 5889496996 14081287 0 2754 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68240969660 51654981 0 0 0 0 0 17333 5890614954 14084402 0 2755 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68250277880 51663347 0 0 0 0 0 17333 5891702156 14087379 0 2755 0 0 0 0
p2p-wlan0-0: 27003608 326357 0 0 0 0 0 58 1000507505 677668 0 348 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68261406752 51672973 0 0 0 0 0 17334 5892803570 14090476 0 2757 0 0 0 0
p2p-wlan0-0: 27043856 327131 0 0 0 0 0 58 1002934542 679272 0 350 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68272784086 51682817 0 0 0 0 0 17334 5893960744 14093549 0 2759 0 0 0 0
p2p-wlan0-0: 27164204 328365 0 0 0 0 0 58 1006596474 681735 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68283742078 51692483 0 0 0 0 0 17338 5895249983 14096721 0 2759 0 0 0 0
p2p-wlan0-0: 27327825 328501 0 0 0 0 0 58 1006606357 681811 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68292590910 51700674 0 0 0 0 0 17355 5896349994 14099703 0 2759 0 0 0 0
p2p-wlan0-0: 27327825 328501 0 0 0 0 0 58 1006606357 681811 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68302224296 51709263 0 0 0 0 0 17355 5897418312 14102627 0 2760 0 0 0 0
p2p-wlan0-0: 27327825 328501 0 0 0 0 0 58 1006606357 681811 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68313087121 51718732 0 0 0 0 0 17364 5898537654 14105597 0 2760 0 0 0 0
p2p-wlan0-0: 27327825 328501 0 0 0 0 0 58 1006606357 681811 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68324607613 51728565 0 0 0 0 0 17367 5899638802 14108632 0 2761 0 0 0 0
p2p-wlan0-0: 27327825 328501 0 0 0 0 0 58 1006606357 681811 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68333682868 51736828 0 0 0 0 0 17367 5900717378 14111538 0 2761 0 0 0 0
p2p-wlan0-0: 27327825 328501 0 0 0 0 0 58 1006606357 681811 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68343761760 51745798 0 0 0 0 0 17367 5901801795 14114469 0 2761 0 0 0 0
p2p-wlan0-0: 27327825 328501 0 0 0 0 0 58 1006606357 681811 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68355038486 51755623 0 0 0 0 0 17378 5902943717 14117562 0 2762 0 0 0 0
p2p-wlan0-0: 27327825 328501 0 0 0 0 0 58 1006606357 681811 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68366378185 51765334 0 0 0 0 0 17378 5904012519 14120460 0 2763 0 0 0 0
p2p-wlan0-0: 27380241 329509 0 0 0 0 0 58 1009756737 683924 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68373276413 51772176 0 0 0 0 0 17378 5905122702 14123468 0 2763 0 0 0 0
p2p-wlan0-0: 27380241 329509 0 0 0 0 0 58 1009756737 683924 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68381043476 51779476 0 0 0 0 0 17378 5906208055 14126430 0 2765 0 0 0 0
p2p-wlan0-0: 27380241 329509 0 0 0 0 0 58 1009756737 683924 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68389844037 51787679 0 0 0 0 0 17388 5907328191 14129540 0 2767 0 0 0 0
p2p-wlan0-0: 27427977 330427 0 0 0 0 0 58 1012695228 685867 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68399143542 51796084 0 0 0 0 0 17391 5908431644 14132513 0 2767 0 0 0 0
p2p-wlan0-0: 27427977 330427 0 0 0 0 0 58 1012695228 685867 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68409125651 51804923 0 0 0 0 0 17391 5909528987 14135443 0 2768 0 0 0 0
p2p-wlan0-0: 27427977 330427 0 0 0 0 0 58 1012695228 685867 0 351 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68419719988 51814286 0 0 0 0 0 17392 5910639183 14138513 0 2770 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68431040234 51824068 0 0 0 0 0 17403 5911736418 14141569 0 2772 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68441677834 51833359 0 0 0 0 0 17408 5912825559 14144572 0 2773 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68453371536 51843365 0 0 0 0 0 17414 5913927278 14147594 0 2773 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68460832517 51850856 0 0 0 0 0 17425 5915121827 14150904 0 2775 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68467543649 51857395 0 0 0 0 0 17425 5916125804 14153727 0 2775 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68476384254 51865513 0 0 0 0 0 17425 5917243051 14156867 0 2776 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68485948454 51874117 0 0 0 0 0 17425 5918336812 14159930 0 2776 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68496821434 51883555 0 0 0 0 0 17435 5919433645 14162913 0 2778 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68507274937 51892763 0 0 0 0 0 17435 5920561931 14166072 0 2779 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68514500384 51899814 0 0 0 0 0 17435 5921650577 14169071 0 2781 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68521970375 51906934 0 0 0 0 0 17435 5922715805 14171883 0 2781 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68530670868 51914997 0 0 0 0 0 17435 5923825799 14174887 0 2783 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68539898066 51923403 0 0 0 0 0 17435 5924926967 14177879 0 2784 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68551005185 51933212 0 0 0 0 0 17439 5926100317 14181110 0 2784 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlan0: 68559867213 51941222 0 0 0 0 0 17439 5927139633 14183919 0 2785 0 0 0 0
p2p-wlan0-0: 27481225 331451 0 0 0 0 0 58 1015842312 687952 0 352 0 0 0 0
lo: 324680 3690 0 0 0 0 0 0 324680 3690 0 0 0 0 0 0
dummy0: 0 0 0 0 0 0 0 0 9531 63 0 0 0 0 0 0
swlan0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6tnl0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip6_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ip_vti0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0