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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
Starting kernel ...

DEBUG_MEM_AUTO: DCR=0x21221003
DEBUG_MEM_AUTO: dcr=0x21221003, bankcnt=0x00000008, mem_size=0x08000000, banksize=0x01000000
DEBUG_MEM_AUTO: LUNA_PBO_DL_DRAM_SIZE_BARRIER=0x00400000, LUNA_PBO_UL_DRAM_SIZE_BARRIER=0x00100000
DEBUG_MEM_AUTO: LUNA_PBO_UL_DRAM_OFFSET=0x07700000,LUNA_PBO_DL_DRAM_OFFSET=0x06c00000
DEBUG_MEM_AUTO: PAGE_SIZE=0x00001000
DEBUG_MEM_AUTO: BSP_DSP_MEM_BASE=0x7900000, BSP_IPC_MEM_BASE=0x7800000 
DEBUG_MEM_AUTO: [bsp_prom_memmap]add_memory_region(0, 113246208, BOOT_MEM_RAM)
DEBUG_MEM_AUTO: [bsp_prom_memmap]add_memory_region(0x00000000, 0x06c00000, BOOT_MEM_RAM)
DEBUG_MEM_AUTO: [bsp_prom_memmap]add_memory_region(117440512, 7340032, BOOT_MEM_RAM)
DEBUG_MEM_AUTO: [bsp_prom_memmap]add_memory_region(0x07000000, 0x00700000, BOOT_MEM_RAM)
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.140 (edison_chen@jenkins) (gcc version 4.8.5 20150209 (prerelease) (Realtek MSDK-4.8.5p1 Build 3068) ) #28 SMP Fri Jun 11 16:19:02 CST 2021
[    0.000000] MIPS: machine is Realtek Semiconductor RTL8198D
[    0.000000] [L2_DEBUG:(bsp_scache_config,54)] - L2_Bypass: Disable
[    0.000000] [L2_DEBUG:(bsp_setup_scache,82)]SCache LineSize= 32 (B)
[    0.000000] Disable SRAM PLL...done
[    0.000000] bootconsole [early0] enabled
[    0.000000] CPU0 revision is: 0001a120 (MIPS interAptiv (multi))
[    0.000000] MIPS: machine is rtk,9607c
[    0.000000] Determined physical RAM map:
[    0.000000]  memory: 06c00000 @ 00000000 (usable)
[    0.000000]  memory: 00700000 @ 07000000 (usable)
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x00000000076fffff]
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000006bfffff]
[    0.000000]   node   0: [mem 0x0000000007000000-0x00000000076fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000076fffff]
[    0.000000] VPE topology {2,2} total 4
[    0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
[    0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
[    0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
[    0.000000] PERCPU: Embedded 11 pages/cpu @81eb9000 s12416 r8192 d24448 u45056
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 29172
[    0.000000] Kernel command line: console=ttyS0,115200 ubi.mtd=4 root=31:7 rootfs=squashfs mtdparts=spinand:768K(boot),128K(env),128K(env2),256K(static_conf),255744K(ubi_device)
[    0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
[    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Writing ErrCtl register=00000000
[    0.000000] Readback ErrCtl register=00000000
[    0.000000] Memory: 86092K/117760K available (8277K kernel code, 6453K rwdata, 2496K rodata, 248K init, 12609K bss, 31668K reserved, 0K cma-reserved, 0K highmem)
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 32.
[    0.000000] NR_IRQS:256
[    0.000000] CPU clock is 950
[    0.000000] [apro_clocks_init]clk_data.clk_num=2, ocp=950000000, lx=200000000
[    0.000000] rtktimer: base freq=200000000
[    0.000000] rtktimer: 18003280h map to b8003280
[    0.000000] clocksource: rtk-timer: mask: 0xfffffff max_cycles: 0xfffffff, max_idle_ns: 1194537775 ns
[    0.000007] sched_clock: 28 bits at 100MHz, resolution 10ns, wraps every 1342177275ns
[    0.008715] rtktimer: 18003200h map to b8003200
[    0.013743] rtktimer: 18003210h map to b8003210
[    0.018766] rtktimer: 3 hw timer used
[    0.023312] Console: colour dummy device 80x25
[    0.028179] Calibrating delay loop... 632.01 BogoMIPS (lpj=3160064)
[    0.085740] pid_max: default: 32768 minimum: 301
[    0.091104] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.098383] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.107065] Initializing cgroup subsys io
[    0.111442] Initializing cgroup subsys memory
[    0.116340] Initializing cgroup subsys devices
[    0.121216] Initializing cgroup subsys freezer
[    0.126157] Initializing cgroup subsys debug
[    0.132688] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
[    0.132695] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
[    0.132703] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
[    0.132786] CPU1 revision is: 0001a120 (MIPS interAptiv (multi))
[    0.212188] Synchronize counters for CPU 1: done.
[    0.217522] Brought up 2 CPUs
[    0.221291] devtmpfs: initialized
[    0.228129] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.239024] futex hash table entries: 512 (order: 2, 16384 bytes)
[    0.246582] NET: Registered protocol family 16
[    0.271209] pm-cps: CPC does not support clock gating
[    0.281806] SCSI subsystem initialized
[    0.286075] usbcore: registered new interface driver usbfs
[    0.292123] usbcore: registered new interface driver hub
[    0.298065] usbcore: registered new device driver usb
[    0.304374] clocksource: Switched to clocksource rtk-timer
[    0.318826] NET: Registered protocol family 2
[    0.324250] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    0.331923] TCP bind hash table entries: 1024 (order: 1, 8192 bytes)
[    0.339017] TCP: Hash tables configured (established 1024 bind 1024)
[    0.346196] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    0.352615] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    0.359835] NET: Registered protocol family 1
[    0.364798] EHCI2 initialization2
[    0.373395] register USB PHY: ehci2-phy, RTK USB PHY version: v1.1 (2021.03.10)
[    0.607764] [Kthread : luan_watchdog ] init complete!
[    0.613303] ************ Watchdog Setting ****************
[    0.619391] WDT_E=0, (1-enable, 0-disable)
[    0.623945] WDT_CLK_SC=3
[    0.626747] PH1_TO=31
[    0.629263] PH2_TO=0
[    0.631684] WDT_RESET_MODE=0
[    0.634883] **********************************************
[    0.641006] ====   Luna Watchdog Regs   =====
[    0.645823] BSP_WDTCNTRR(0xb8003260): 0x00000000
[    0.650948] BSP_WDTINTRR(0xb8003264): 0x00000000
[    0.656084] BSP_WDTCTRLR(0xb8003268): 0xe7c00000
[    0.661207] =================================
[    0.667474] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.673964] ntfs: driver 2.1.32 [Flags: R/W].
[    0.678753] fuse init (API version 7.23)
[    0.687298] io scheduler noop registered
[    0.691574] io scheduler deadline registered
[    0.696356] io scheduler cfq registered (default)
[    0.701673] rtk-mips-ia-gpio 1b000038.gpio-controller: resource - [mem 0x1b000038-0x1b000043 flags 0x200] mapped at 0xbb000038
[    0.714282] rtk-mips-ia-gpio 1b000038.gpio-controller: resource - [mem 0x18003308-0x1800335b flags 0x200] mapped at 0xb8003308
[    0.727115] rtk-mips-ia-gpio 1b000038.gpio-controller: Setting up IRQs for GPIO bank 0
[    0.736063] rtk-mips-ia-gpio 1b000038.gpio-controller: Setting up IRQs for GPIO bank 1
[    0.744994] rtk-mips-ia-gpio 1b000038.gpio-controller: Setting up IRQs for GPIO bank 2
[    0.753864] Realtek GPIO Driver for Flash Reload Default
[    0.823147] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
[    0.831179] console [ttyS0] disabled
[    0.835115] 18002000.serial: ttyS0 at MMIO 0x18002000 (irq = 46, base_baud = 12327200) is a 16550A
[    0.845064] console [ttyS0] enabled
[    0.845064] console [ttyS0] enabled
[    0.852636] bootconsole [early0] disabled
[    0.852636] bootconsole [early0] disabled
[    0.861789] of_serial: probe of 18002100.serial failed with error -28
[    0.868949] aipcBoardChipId=0x96070001 aipcBoardChipRev=0x00000002 aipcBoardChipSubType=0x00000004
[    0.878757] RTL9607C_CHIP_ID 0x96070001
[    0.882952] CHIP_REV_ID_B   0x00000002
[    0.987016] aipc: register chrdev(254,0)
[    0.991511] aipc: create device successed
[    0.996006] aipc: start aipc irq init
[    1.000015] aipc: Request IRQ for IPC OK
[    1.004447] aipc: create dsp console device successed
[    1.009970] aipc: init done
[    1.013387] Realtek Luna SPI NAND Flash Driver Rev:00:00:00 (ChaoYuan_Yang)
[    1.020996] [SPINAND] Blocks number under 6 are protected
[    1.026907] [SPINAND] Allow max 4 bits flip in blank page!
[    1.034003] Use RTK bb func
[    1.037047] Use RTK bb scan
[    1.041103] nand: device found, Manufacturer ID: 0xef, Chip ID: 0xab
[    1.048053] nand: Unknown 
[    1.051005] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    1.176413] good block number 2048
[    1.180146] 5 cmdlinepart partitions found on MTD device spinand
[    1.186716] RTK: using dynamic nand partition
[    1.191471] Creating 5 MTD partitions on "spinand":
[    1.196806] 0x000000000000-0x0000000c0000 : "boot"
[    1.203277] 0x0000000c0000-0x0000000e0000 : "env"
[    1.209427] 0x0000000e0000-0x000000100000 : "env2"
[    1.215648] 0x000000100000-0x000000140000 : "static_conf"
[    1.222514] 0x000000140000-0x00000fb00000 : "ubi_device"
[    1.229709] Size of the first partition is 6 blocks.
[    1.235183] Realtek SPINAND Flash Driver is successfully installing.
[    1.242195] Init RTK Driver Module....rtk_switch_irq_init 358 irq=38 name=apl_sw
[    1.302777] OK
[    1.304614] Init RTK Core Dev Module....OK
[    1.309101] 
[    1.309101]  rtdrv_init !!!! for netfilter
[    1.315194] [rtdrv_init]: rtdrv_ext_igmpHook_sockopts init.
[    1.321278] [rtdrv_init]: rtdrv_ext_igmpHook_sockopts success.
[    1.327702] pkt_redirect_init complete
[    1.331817] interrupt broadcaster init ok!
[    1.336476] drivers/net/ethernet/realtek/rtl86900/sdk/src/module/dspbo_queue/dspbo_queue_main.c:284 pDsPboQueueTask complete!
[    1.348935] rtk_gmac_9607c_associative_init 9829
[    1.354018] GMAC0 Tx Ring Size:
[    1.357445] [#0]:1024 [#1]:64 [#2]:64 [#3]:64 [#4]:64 
GMAC0 Rx Ring Size:
[    1.365056] [#0]:1024 [#1]:256 [#2]:256 [#3]:64 [#4]:64 [#5]:64 
[    1.371990] eth0: RTL-8686 at 0xb8012000, 00:00:00:01:00:02, IRQ 59
[    1.379523] eth0.2: RTL-8686 at 0xb8012000, 00:00:00:01:00:02, IRQ 59
[    1.386993] eth0.3: RTL-8686 at 0xb8012000, 00:00:00:01:00:02, IRQ 59
[    1.394455] eth0.4: RTL-8686 at 0xb8012000, 00:00:00:01:00:02, IRQ 59
[    1.401892] eth0.5: RTL-8686 at 0xb8012000, 00:00:00:01:00:02, IRQ 59
[    1.409356] eth0.6: RTL-8686 at 0xb8012000, 00:00:00:01:00:02, IRQ 59
[    1.416824] eth0.7: RTL-8686 at 0xb8012000, 00:00:00:01:00:02, IRQ 59
[    1.424293] eth0.8: RTL-8686 at 0xb8012000, 00:00:00:01:00:02, IRQ 59
[    1.431752] eth0.9: RTL-8686 at 0xb8012000, 00:00:00:01:00:02, IRQ 59
[    1.439228] nas0: RTL-8686 at 0xb8012000, 00:00:00:01:00:02, IRQ 59
[    1.446082] >>>> Set nas0 carrier off !!! 
[    1.450555] can't find dev eth0
[    1.453986] eth0.2 -> 0x1
[    1.456840] eth0.3 -> 0x2
[    1.459691] eth0.4 -> 0x4
[    1.462542] eth0.5 -> 0x8
[    1.465403] eth0.6 -> 0x10
[    1.468358] eth0.7 -> 0x100
[    1.471407] eth0.8 -> 0x40
[    1.474359] eth0.9 -> 0x80
[    1.477308] nas0 -> 0x20
[    1.527572] Disable gmac[0] padding
[    1.531419] GMAC1 Tx Ring Size:
[    1.534849] [#0]:1024 [#1]:64 [#2]:64 [#3]:64 [#4]:64 
GMAC1 Rx Ring Size:
[    1.542454] [#0]:1024 [#1]:256 [#2]:256 [#3]:64 [#4]:64 [#5]:64 
rtk_gmac_netdev_init 10459: netdev name=eth0 exist
[    1.572325] Disable gmac[1] padding
[    1.576173] GMAC2 Tx Ring Size:
[    1.579597] [#0]:256 [#1]:64 [#2]:64 [#3]:64 [#4]:64 
GMAC2 Rx Ring Size:
[    1.587113] [#0]:256 [#1]:256 [#2]:256 [#3]:64 [#4]:64 [#5]:64 
rtk_gmac_netdev_init 10459: netdev name=eth0 exist
[    1.613518] Disable gmac[2] padding
[    1.617333] first entry: 0, portmask 2047, rx: 80825f88
[    1.623048] re8670_set_mtu-952: dev=eth0 new_mtu=1500
[    1.628570] re8670_set_mtu-952: dev=eth0.2 new_mtu=1500
[    1.634287] re8670_set_mtu-952: dev=eth0.3 new_mtu=1500
[    1.639991] re8670_set_mtu-952: dev=eth0.4 new_mtu=1500
[    1.645708] re8670_set_mtu-952: dev=eth0.5 new_mtu=1500
[    1.651414] re8670_set_mtu-952: dev=eth0.6 new_mtu=1500
[    1.657130] re8670_set_mtu-952: dev=eth0.7 new_mtu=1500
[    1.662836] re8670_set_mtu-952: dev=eth0.8 new_mtu=1500
[    1.668552] re8670_set_mtu-952: dev=eth0.9 new_mtu=1500
[    1.674263] re8670_set_mtu-952: dev=nas0 new_mtu=1500
[    1.679900] [FCEXT] rtk_fc_extmodule_init 
[    1.706881] [FCMGR] module init @rtk_fc_mgr_init(461)
[    1.712407] [FCMGR] hybrid image detect 0x96070001 @rtk_fc_mgr_init(486)
[    1.720889] fc_db.controlFuc.special_fast_forward_mode = 0
[    1.726913] fc_db.controlFuc.hwnat_customize = 0
[    1.731954] fc_db.controlFuc.hwnat_customize_nptv6_sram_acc_v2 = 0
[    2.557970] RTK FleetConntrack Driver - core module init
[    2.563825]  - build ver. 0.2.5.671 06/11/21-16:17:53
[    2.569347]  - mem usage 7143 KB (malloc:2189912  fc_db:5124552 pro_db:532)
[    2.576967] priority: 0, portmask 2047, rx: 80825f88
[    2.582391] insert here, priority: 1, portmask 2047, rx: 8082a970
[    2.589058] RTK FleetConntrack Driver - manager module init
[    2.595151]  - mem usage 260 KB (db:249312 nicrx_ipi:17792)
[    2.601531] smuxdev: loaded
[    2.604599] PPP generic driver version 2.4.2
[    2.609466] NET: Registered protocol family 24
[    2.614360] PPTP driver version 0.8.5
[    2.618648] MPPE/MPPC encryption/compression module registered
[    2.625058] __rtl8192cd_init(18869): SIZE=1 b8b30000/ba000000/72
[    2.631623] __rtl8192cd_init(18876): SIZE=1 b8b30000/ba000000/72
[    2.638199] Realtek WLAN driver - version 4.0.8.2(2021-05-11)(Git SHA-1 ID:1e7123a3de9ce2596507a8ad5a69ed34e667e6b8)
[    2.649712] Adaptivity function - version 9.7.08
[    2.657506] CFG0 
[    2.659634] PCIE0 reset pin is set to GPIO 40
[    2.664417] ===> PCIE reset try 0
[    2.878852] 9607c pcie port 0
[    2.882084] IC-B
[    3.060732] Port0 Link@2.5GHz
[    3.063993] rtl8192cd_init_one(15905): vendor_deivce_id(818c10ec) sub(818c10ec)
[    3.072012] IS_RTL8192F_SERIES value8 = d 
[    3.076501] MACHAL_version_init
[    3.079938] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    3.092622] 
[    3.092622] 
[    3.092622] #######################################################
[    3.102759] SKB_BUF_SIZE=2832 MAX_SKB_NUM=384
[    3.107519] #######################################################
[    3.107519] 
[    3.125787] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    3.134967] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    3.144153] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    3.153340] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    3.162466] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    3.171731] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.178974] ehci-platform: EHCI generic platform driver
[    3.184812] ehci-platform ehci-platform.1: EHCI Host Controller
[    3.191298] ehci-platform ehci-platform.1: new USB bus registered, assigned bus number 1
[    3.200280] ehci-platform ehci-platform.1: irq 40, io mem 0x18021200
[    3.222892] ehci-platform ehci-platform.1: USB 2.0 started, EHCI 1.00
[    3.230829] hub 1-0:1.0: USB hub found
[    3.235011] hub 1-0:1.0: 1 port detected
[    3.239672] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.246515] ohci-platform: OHCI generic platform driver
[    3.252295] ohci-platform ohci-platform.1: Generic Platform OHCI controller
[    3.259938] ohci-platform ohci-platform.1: new USB bus registered, assigned bus number 2
[    3.268861] ohci-platform ohci-platform.1: irq 40, io mem 0x18020200
[    3.337670] hub 2-0:1.0: USB hub found
[    3.341813] hub 2-0:1.0: 1 port detected
[    3.346568] usbcore: registered new interface driver cdc_acm
[    3.352749] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    3.361599] usbcore: registered new interface driver usblp
[    3.367660] usbcore: registered new interface driver uas
[    3.373593] usbcore: registered new interface driver usb-storage
[    3.380261] usbcore: registered new interface driver usbserial
[    3.386681] usbcore: registered new interface driver usbserial_generic
[    3.393854] usbserial: USB Serial support registered for generic
[    3.400457] usbcore: registered new interface driver ftdi_sio
[    3.406774] usbserial: USB Serial support registered for FTDI USB Serial Device
[    3.414955] usbcore: registered new interface driver option
[    3.421067] usbserial: USB Serial support registered for GSM modem (1-port)
[    3.428940] usbcore: registered new interface driver pl2303
[    3.435080] usbserial: USB Serial support registered for pl2303
[    3.441894] hidraw: raw HID events driver (C) Jiri Kosina
[    3.448176] usbcore: registered new interface driver usbhid
[    3.454282] usbhid: USB HID core driver
[    3.458486] /proc/slicReadID created
[    3.462561] u32 classifier
[    3.465553] nf_conntrack version 0.5.0 (1345 buckets, 5380 max)
[    3.472571] gre: GRE over IPv4 demultiplexor driver
[    3.478119] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.484273] NET: Registered protocol family 10
[    3.491886] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    3.498192] sit: IPv6 over IPv4 tunneling driver
[    3.504666] NET: Registered protocol family 17
[    3.509607] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[    3.523438] Bridge firewalling registered
[    3.527822] Ebtables v2.0 registered
[    3.532024] l2tp_core: L2TP core driver, V2.0
[    3.536826] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[    3.542067] 8021q: 802.1Q VLAN Support v1.8
[    3.546757] Register system dying gasp...Done
[    3.552930] usb 1-1: new high-speed USB device number 2 using ehci-platform
[    3.561069] ubi0: attaching mtd4
[    3.723558] usb-storage 1-1:1.0: USB Mass Storage device detected
[    3.730609] scsi host0: usb-storage 1-1:1.0
[    4.734031] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra USB 3.0    1.00 PQ: 0 ANSI: 6
[    4.735311] ubi0: scanning is finished
[    4.749146] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
[    4.757834] ubi0: attached mtd4 (name "ubi_device", size 249 MiB)
[    4.764553] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
[    4.772075] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
[    4.779522] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
[    4.787156] ubi0: good PEBs: 1998, bad PEBs: 0, corrupted PEBs: 0
[    4.793842] ubi0: user volume: 8, internal volumes: 1, max. volumes count: 128
[    4.801747] ubi0: max/mean erase counter: 59/1, WL threshold: 4096, image sequence number: 1208829963
[    4.811848] ubi0: available PEBs: 855, total reserved PEBs: 1143, PEBs reserved for bad PEB handling: 40
[    4.822245] ubi0: background thread "ubi_bgt0d" started, PID 68
[    4.823158] sd 0:0:0:0: [sda] Write Protect is off
[    4.825443] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    4.836744] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    4.837641] VoIP control bind 1 (1) instances successfully.
[    4.837655] index dsp_cpuid dsp_cch host_cch
[    4.837657] ----- --------- ------- --------
[    4.837664]    0        0         0       0   
[    4.837685]  voip spin lock init done
[    4.837705] VoIP RX netfilter hook init done!
[    4.837710] VoIP RX netfilter hook for IPv6 init done!
[    4.837725] =============RTK VOIP SUITE=============
[    4.837729] SDK VoIP Version: VoIP-1.6-DSP-R5523-Luna-R24-Integrate_RTL_CA 
[    4.837732] Board CFG Model :  
[    4.837734] INITIAL VOIP MANAGER PROGRAM
[    4.838686]  sda: sda1
[    4.842437] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    4.918171] VFS: Mounted root (squashfs filesystem) readonly on device 31:7.
[    4.928381] devtmpfs: mounted
[    4.932124] Freeing unused kernel memory: 248K
Bad inittab entry at line 33
starting pid 78, tty '': '/etc/init.d/rcS'
=== Start to run rc0 / rc63 ===
----- do_rc [/etc/init.d/rc2] -----

WARN: conflicting configurations in /etc/fstab and /etc/default/rcS
      regar[    5.603011] tv_sec:5      ding the writabitv_usec:578667
lity of rootfs. [    5.608330] luna_watchdog: luna_watchdog/1 not respond!
Please fix one of them.

Open /dev/voip/mgr fail, ret = -1, errno = 2
usbmount: usbmount.c:310: main: Assertion `devpath != NULL' failed.
Aborted
Open /dev/voip/mgr fail, ret = -1, errno = 2
usbmount: usbmount.c:310: main: Assertion `devpath != NULL' failed.
Aborted
[    6.435423] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 109
[    6.470437] UBIFS (ubi0:0): recovery needed
[    6.566219] UBIFS (ubi0:0): recovery completed
[    6.571198] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "ubi_Config"
[    6.579683] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
[    6.590539] UBIFS (ubi0:0): FS size: 9777152 bytes (9 MiB, 77 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs)
[    6.601583] UBIFS (ubi0:0): reserved for root: 461798 bytes (450 KiB)
[    6.608640] UBIFS (ubi0:0): media format: w4/r0 (latest is w4/r0), UUID CB695EBB-EC9E-4CDE-A068-7305DF535E5A, small LPT model
----- do_rc [/etc/init.d/rc3] -----
Open /dev/voip/mgr fail, ret = -1, errno = 2
set_msgqueue_max_size:414> set msgqidds.msg_qbytes=36000 OK
set_msgqueue_max_size:414> set msgqidds.msg_qbytes=36000 OK
[    7.160873] aipc: (0419)prepare_BIR  

aipc: write image successful. size=2881648 rc=2881648 wc=2881648 da=0xb02c0400 remain=0

[    7.572160] aipc: (0528)aipc_dev_ioctl  boot dsp
[    7.581234] aipc: (0530)aipc_dev_ioctl  boot dsp done

Wait DSP 0/1 booting ......
.[    8.101364] aipc: (0599)aipc_dsp_disable_mem  
Wait DSP ok. wait_cnt=1
DSP 0 Software Ready!
diable printk=  0  parameter is  1
==  Now update province sw version...  =======================================
/etc/scripts/update_ver.sh: line 30: /bin/.get_new_sw_ver: not found
cat: can't open '/tmp/tmpProvinceConfig': No such file or directory
Usage: flash cmd
cmd:
  info                          show flash offset information.
  loop                          enter a infinite loop.
  get <MIB-NAME> [...]          get the specific mib from flash memory.
    Example:
      get NTP_ENABLED           get the specific mib table entry from flash memory.
      get ATM_VC_TBL            get all the specific mib chain records from flash memory.
      get ATM_VC_TBL.NUM        get the specific mib chain record size from flash memory.
      get ATM_VC_TBL.0.ifIndex  get the specific member of the mib chain record from flash memory.
  set <MIB-NAME MIB-VALUE> [...]set the specific mib into flash memory.
    Example:
      set NTP_ENABLED 0         set the specific mib table entry into flash memory.
      set ATM_VC_TBL.1.vpi 8    set the specific member of the mib chain recrod into flash memory.
  add <MIB-CHAIN-NAME> [...]    add mib chain record(s) into flash memory.
    Example:
      add ATM_VC_TBL            add a mib chain record into flash memory.
      add ATM_VC_TBL.2          add mib chain record(s) into flash memory.
  del <MIB-CHAIN-NAME> [...]    delete mib chain record(s) into flash memory.
    Example:
      del ATM_VC_TBL            delete the last mib chain record into flash memory.
      del ATM_VC_TBL.2          delete the specific mib chain record into flash memory.
  all [cs|hs]                   dump all flash parameters.
  list [cs|hs|all] [sorted]     list mib parameters(sorted).
  default <cs/hs>               write program default value to flash.
  clear                         clear flash setting.
  voip                          voip setings.
  r <OFFSET>                    read flash from <OFFSET>.
  w <OFFSET> <VALUE>            write flash to <OFFSET>.
  erase <OFFSET>                erase flash from <OFFSET>.
Usage: mib cmd
cmd:
  get <MIB-NAME> [...]          get the specific mib from configd.
    Example:
      get NTP_ENABLED           get the specific mib table entry from configd.
      get ATM_VC_TBL            get all the specific mib chain records from configd.
      get ATM_VC_TBL.NUM        get the specific mib chain record size from configd.
      get ATM_VC_TBL.0.ifIndex  get the specific member of the mib chain record from configd.
  set <MIB-NAME MIB-VALUE> [...]set the specific mib into configd.
    Example:
      set NTP_ENABLED 0         set the specific mib table entry into configd.
      set ATM_VC_TBL.1.vpi 8    set the specific member of the mib chain recrod into configd.
  add <MIB-CHAIN-NAME> [...]    add mib chain record(s) into configd.
    Example:
      add ATM_VC_TBL            add a mib chain record into configd.
      add ATM_VC_TBL.2          add mib chain record(s) into configd.
  del <MIB-CHAIN-NAME> [...]    delete mib chain record(s) into configd.
    Example:
      del ATM_VC_TBL            delete the last mib chain record into configd.
      del ATM_VC_TBL.2          delete the specific mib chain record into configd.
  all [cs|hs|rs]                dump all mib from configd.
  reset [flag]          Reset to default with flag.
  commit [cs|hs]                commit all mib from configd into flash.
  voipshmupdate                 voip shm update.
Usage: flash cmd
cmd:
  info                          show flash offset information.
  loop                          enter a infinite loop.
  get <MIB-NAME> [...]          get the specific mib from flash memory.
    Example:
      get NTP_ENABLED           get the specific mib table entry from flash memory.
      get ATM_VC_TBL            get all the specific mib chain records from flash memory.
      get ATM_VC_TBL.NUM        get the specific mib chain record size from flash memory.
      get ATM_VC_TBL.0.ifIndex  get the specific member of the mib chain record from flash memory.
  set <MIB-NAME MIB-VALUE> [...]set the specific mib into flash memory.
    Example:
      set NTP_ENABLED 0         set the specific mib table entry into flash memory.
      set ATM_VC_TBL.1.vpi 8    set the specific member of the mib chain recrod into flash memory.
  add <MIB-CHAIN-NAME> [...]    add mib chain record(s) into flash memory.
    Example:
      add ATM_VC_TBL            add a mib chain record into flash memory.
      add ATM_VC_TBL.2          add mib chain record(s) into flash memory.
  del <MIB-CHAIN-NAME> [...]    delete mib chain record(s) into flash memory.
    Example:
      del ATM_VC_TBL            delete the last mib chain record into flash memory.
      del ATM_VC_TBL.2          delete the specific mib chain record into flash memory.
  all [cs|hs]                   dump all flash parameters.
  list [cs|hs|all] [sorted]     list mib parameters(sorted).
  default <cs/hs>               write program default value to flash.
  clear                         clear flash setting.
  voip                          voip setings.
  r <OFFSET>                    read flash from <OFFSET>.
  w <OFFSET> <VALUE>            write flash to <OFFSET>.
  erase <OFFSET>                erase flash from <OFFSET>.
Usage: mib cmd
cmd:
  get <MIB-NAME> [...]          get the specific mib from configd.
    Example:
      get NTP_ENABLED           get the specific mib table entry from configd.
      get ATM_VC_TBL            get all the specific mib chain records from configd.
      get ATM_VC_TBL.NUM        get the specific mib chain record size from configd.
      get ATM_VC_TBL.0.ifIndex  get the specific member of the mib chain record from configd.
  set <MIB-NAME MIB-VALUE> [...]set the specific mib into c[    9.542504] re8670_open 4955
onfigd.
    Exa[    9.546409] re8670_open 4970
mple:
      set NTP_ENABLED 0         set the specific mib table entry into configd.
      set ATM_VC_TBL.1.vpi 8    set the specific m[    9.560920] re8670_open 4970
ember of the mib chain recrod into configd.
  add <MIB-CHAIN-NAME> [...]    add mib chain record(s) into configd.
    Example:
[    9.575147] re8670_open 4970
      add ATM_VC_TBL            add a mib chain record into configd.
      add ATM_VC_TBL.2          add mib chain record(s) into configd.
  del <MIB-CHAIN-NAME> [...]    delete mib chain record(s) into configd.
    Example:
      del ATM_VC_TBL            delete the last mib chain record into configd.
      del ATM_VC_TBL.2          delete the specific mib chain record into configd.
  all [cs|hs|rs]                dump all mib from configd.
  reset [flag]          Reset to default with flag.
  commit [cs|hs]                commit all mib from configd into flash.
  voipshmupdate                 voip shm update.
grep: /config/default_scfg.txt: No such file or directory
RTL Chip............
Loading modules: ca-ne ca-plat-kernel ca-sdk-cb libscfg 
Unix Socket Connect to server failed!!!: No such file or directory
Unable to open unix socket file /var/run/systemd.usock!!!
[   10.111880] omcidrv: loading out-of-tree module taints kernel.
[   10.272964] random: nonblocking pool is initialized
[   10.328162] register_gpon_evt_state: register gpon event state Successfully !
[   10.336033] omci platform db suc!
[   10.339653] ponPort:5 cpuPort:9 rgmiiPort:8 uniPortMask:0x21e  etherPortMask:0x1e
[   10.347845] omci platform attached!
Loading TR-142 Module...
[   10.612951] tv_sec:10        tv_usec:588607
[   10.616875] CPU0 kick watchdog!
[   10.704169] Realtek TR-142 Module initialized.
[   10.822765] [rtk_tr142_nl_recv_msg] rtk_tr142_nl_pid = 267
[   10.834470] Set mapping_outermost_vlan_by_mac_from_lut to 0 OK.
TR142_FEATURE_API_INIT_LIB ret = 0
[rtk_tr142_debug_log_set] log_enable = 0
tr142_app app_log_enable = 0
running GPON mode ...
insmod: can't insert '/lib/modules/rldp_drv.ko': No such file or directory
Loading Realtek IGMP/ MLD Snooping Module...
[   11.493771] multicast_moudle_init 
----- do_rc [/etc/init.d/rc6] -----
----- do_rc [/etc/init.d/rc10] -----
----- do_rc [/etc/init.d/rc14] -----
----- do_rc [/etc/init.d/rc18] -----
----- do_rc [/etc/init.d/rc20] -----
----- do_rc [/etc/init.d/rc32] -----
Start rtk_ramonitor daemon!
[setup_pushbtn_thread:3874] Create new theread for pushbtn
Input driver version is 1.0.1
Input device ID: bus 0x19 vendor 0x1 product 0x1 version 0x100
Input device name: "gpio-keys"
Supported events:
  Event type 0 (Sync)
  Event type 1 (Key)
    Event code 238 
    Event code 408 
  Event type 20 (Repeat)
Grab succeeded, ungrabbing.
[   11.977818] Reset value to -1
[   11.986469] Reset value to -1
[   12.002655] Reset value to -1
[   12.010902] Reset value to -1
[   12.019340] Reset value to -1
[   12.028727] Reset value to -1
[   12.041535] Reset value to -1
[   12.053750] Reset value to -1
[   12.061965] Reset value to -1
Testing ... (interrupt to exit)
[   12.165557] 0
meter set pon-tick-token tick-period 73 token 97 
RTK.0> command:[rtk_qos_tick_tocken_init:195] Enable 9603C 8000Kbps base !!
/var/config/omci_ignore_mib_tbl.conf meClassId:255
/var/config/omci_ignore_mib_tbl.conf subType:0
/var/config/omci_ignore_mib_tbl.conf meClassId:247
/var/config/omci_ignore_mib_tbl.conf subType:0
<fMgmtInit:601> is the so is not a regular file.
<fMgmtInit:601> is the so is not a regular file.
<fMgmtInit:601> is the so is not a regular file.
Module libomcivoip.so is loaded and inited
[libtr142][OMCI] == rtk_tr142.so is loaded ==
[rtk_tr142_debug_log_set] log_enable = 0
Module libtr142.so is loaded and inited
meter set tick-token tick-period 30 token 79 
RTK.0> command:Module /lib/features/internal/me_00040000.so is inited
register set 0x801030 0x80001e4f 
####################### voice_rtk_init_voip_cfg() #######################
voip omci line state share size = 384
codec_suporrt_list 1279
### voice_rtk_init_voip_cfg()###, pFlash=0x776b59c0, g_pLineState=0x77c22000
omci_wrapper_getTransceiverStatus ioctl failed 4
omci_GetTransceiverInfo 7397 : get WAVE length fail
omci_wrapper_msgHandler: devMode 2,receiveState 1,usrLogLvl 1, drvLogLvl 1,sn RTKG����
rtkbosa: Version 2.8 (May 31 2021 - 14:12:39)
rtkbosa: Detecting RTL8290B ...
rtkbosa: Error (0x10): The chip is not found
rtkbosa: Detecting UX3360 ...
rtkbosa: Read 0x51.0x80(0x55): 0xFF
rtkbosa: Read 0x51.0x81(0x58): 0xFF
rtkbosa: Read 0x51.0x82(0x33): 0xFF
rtkbosa: Read 0x51.0x83(0x33): 0xFF
rtkbosa: Read 0x51.0x84(0x36): 0xFF
rtkbosa: Read 0x51.0x85(0x30): 0xFF
rtkbosa: Detecting Semtech Series (GN2xL9x) ...
rtkbosa: Read 0x51.0x7B(0x00): 0xFF
rtkbosa: Read 0x51.0x7C(0x00): 0xFF
rtkbosa: Read 0x51.0x7D(0x00): 0xFF
rtkbosa: Read 0x51.0x7E(0x00): 0xFF
rtkbosa: NOT RTL8290B/GN2xL9x/UX3360, do for UXFASTIC UX3320
rtkbosa: INIT_STATE (Table 3, 0xF0): 0xff
rtkbosa: none EEPROM exists.
rtkbosa: Init UX3320 ...
rtkbosa: Open file [/var/config/rtkbosa_k.bin]
rtkbosa: Open file [/var/config/rtkbosa_k.bin] error
rtkbosa: Use default file: /var/config/rtl-3320-backup.bin
RTK.0> command:Ignore classId:287
MIB_Table_Init Init mib table:mib_ExtendedOnuGZTE.so fail, error code is:1...
[   13.152283] [rtk_tr142_veip_get_transparent_ifIndex] ifIndex = 0
   CMD: /bin/sh -c /bin/echo 5 nas0 > /proc/rtl8686gmac/dev_port_mapping 
[   13.192979] port 5 assign to nas0
[   13.196630] nas0 -> 0x20
   CMD: /bin/sh -c echo 0x20 > /proc/fc/ctrl/wan_port_mask 
   CMD: /bin/smuxctl --if nas0 --set-if-rsmux --set-if-rx-policy DROP --set-if-tx-policy CONTINUE --set-if-rxmc-policy DROP --set-if-rx-multi 1 
MIB chain descriptors checking (total 52) ok !
mib_info_id: get mib info id failed! (id=2001)
mib_info_id: get mib info id failed! (id=2002)
<utility.c 806 setup_mac_addr> macAddr[5]+1 = 2
>>> Disable /dev/console XON XOFF !!!
MIB_Table_Init Init mib table:mib_Me242.so fail, error code is:1...
   CMD: /bin/ifconfig eth0.2 hw ether 00e04c867001 
MIB_Table_Init Init mib table:mib_Me243.so fail, error code is:1...
MIB_Table_Init Init mib table:mib_Me350.so fail, error code is:1...
MIB_Table_Init Init mib table:mib_Me370.so fail, error code is:1...
MIB_Table_Init Init mib table:mib_Me373.so fail, error code is:1...
   CMD: /bin/ifconfig eth0.3 hw ether 00e04c867001 
   CMD: /bin/ifconfig eth0.4 hw ether 00e04c867001 
   CMD: /bin/ifconfig eth0.5 hw ether 00e04c867001 
   CMD: /bin/ifconfig wlan0 hw ether 00e04c867001 
   CMD: /bin/ifconfig wlan0 mtu 1500 
<utility.c 806 setup_mac_addr> macAddr[5]+1 = 2
   CMD: /bin/ifconfig wlan0-vap0 hw ether 00e04c867002 
   CMD: /bin/ifconfig wlan0-vap0 mtu 1500 
<utility.c 806 setup_mac_addr> macAddr[5]+1 = 3
   CMD: /bin/ifconfig wlan0-vap1 hw ether 00e04c867003 
pon auto detect: sd=1, sync=0, reset-cdr 
   CMD: /bin/ifconfig wlan0-vap1 mtu 1500 
<utility.c 806 setup_mac_addr> macAddr[5]+1 = 4
   CMD: /bin/ifconfig wlan0-vap2 hw ether 00e04c867004 
   CMD: /bin/ifconfig wlan0-vap2 mtu 1500 
<utility.c 806 setup_mac_addr> macAddr[5]+1 = 5
   CMD: /bin/ifconfig wlan0-vap3 hw ether 00e04c867005 
   CMD: /bin/ifconfig wlan0-vap3 mtu 1500 
   CMD: /bin/ifconfig eth0 up 
   CMD: /bin/ifconfig eth0 mtu 1500 
   CMD: /bin/sh -c /bin/echo 1 eth0.2 > /proc/rtl8686gmac/dev_port_mapping 
Ignore classId:255 SubType:0
MIB_Table_Init Init mib table:mib_PrivateTellionOntStatistics.so fail, error code is:1...
[   13.463346] port 1 assign to eth0.2
[   13.467179] eth0.2 -> 0x2
   CMD: /bin/ifconfig eth0.2 up 
   CMD: /bin/ifconfig eth0.2 mtu 1500 
   CMD: /bin/smuxctl --if-create-name eth0.2 eth0.2.0 --set-if-rsmux 
   CMD: /bin/smuxctl --if eth0.2 --rx --tags 0 --set-rxif eth0.2.0 --rule-alias eth0.2-rx-default --rule-append 
   CMD: /bin/sh -c /bin/echo 2 eth0.3 > /proc/rtl8686gmac/dev_port_mapping 
[   13.551961] port 2 assign to eth0.3
[   13.555827] eth0.3 -> 0x4
   CMD: /bin/ifconfig eth0.3 up 
   CMD: /bin/ifconfig eth0.3 mtu 1500 
   CMD: /bin/smuxctl --if-create-name eth0.3 eth0.3.0 --set-if-rsmux 
   CMD: /bin/smuxctl --if eth0.3 --rx --tags 0 --set-rxif eth0.3.0 --rule-alias eth0.3-rx-default --rule-append 
   CMD: /bin/sh -c /bin/echo 3 eth0.4 > /proc/[   13.591795] port 3 rtl8686gmac/dev_assign to eth0.4
port_mapping 
[   13.597699] eth0.4 -> 0x8
   CMD: /bin/ifconfig eth0.4 up 
rtkbosa: 9603C/9607C(1): A2/0x9E = 0x68
rtkbosa: 9603C/9607C(2): A2/0x9E = 0x68
rtkbosa: A2.T2/0x8E = 0x40

rtkbosa: done
----- do_rc [/etc/init.d/rc34] -----
   CMD: /bin/ifconfig eth0.4 mtu 1500 
   CMD: /bin/smuxctl --if-create-name eth0.4 eth0.4.0 --set-if-rsmux 
   CMD: /bin/smuxctl --if eth0.4 --rx --tags 0 --set-rxif eth0.4.0 --rule-alias eth0.4-rx-default --rule-append 
[   13.697958] write watchdog_flag to 0x00000001
[   13.702741] REG32(BSP_WDTCTRLR) = 0xe7c00000
   CMD: /bin/sh -c /bin/echo 4 eth0.5 > /proc/rtl8686gmac/dev_port_mapping 
----- do_rc [/etc/init.d/rc35] -----
[   13.748452] port 4 assign to eth0.5
[   13.752302] eth0.5 -> 0x10
   CMD: /bin/ifconfig eth0.5 up 
   CMD: /bin/ifconfig eth0.5 mtu 1500 
run rcm voip script...
   CMD: /bin/smuxctl --if-create-name eth0.5 eth0.5.0 --set-if-rsmux 
   CMD: /bin/smuxctl --if eth0.5 --rx --tags 0 --set-rxif eth0.5.0 --rule-alias eth0.5-rx-default --rule-append 
Turn on phy power...
   CMD: /bin/brctl addbr br0 
ponmode PON_MODE=1
   CMD: /bin/ifconfig br0 hw ether 00e04c867001 
   CMD: /bin/ifconfig br0 mtu 1500 
   CMD: /bin/ifconfig eth0 hw ether 00e04c867001 
ifconfig: SIOCSIFHWADDR: Device or resource busy
   CMD: /bin/sh -c echo 1 > /proc/sys/net/ipv4/conf/br0/rp_filter 
[rtk_fc_stp_clean@3276]: ERROR! No such file or directory
[rtk_fc_stp_clean@3288]: ERROR! No such file or directory
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --rx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --tx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --rx --tags 1  --rule-remove-alias STP-Rule+ 
[   14.181931] Inactive PIN_CS: 
[   14.185215] 
[   14.185215] <<<<<<<<<<< Si3219x Driver Version 9.1.0 >>>>>>>>>>
[   14.193378] ------------------------------
[   14.197853] SLIC 32192 HW intf 0 CS=0
[   14.201879] aipc: (0295)aipc_module_voip_set_pcm_fs  IO_MODE_EN=0x0000a050
[   14.209409] Pull low GPIO 28 
[   14.484612] Pull high GPIO 28 
[   14.487947] Start SLIC init....
[   14.627495] cs0
[   14.629404] MSIF_LOCK 0x1, cs 0x0
[   14.633043] Start SLIC init....
[   15.308516] SLIC0 ID: regvalue = aa
[   15.312411] Si32192 Revision A
[   15.315816] [0000010480][   ] Si3219x_Init_with_Options(605) size = 1 init_opt = 0
[   15.331599] [0000010490][   ] SiVoice: Channel 0: Type = PROSLIC Rev = 2
[   15.346822] [0000010510][   ] ProSLIC:loading patch: 05252017
[   15.693219] [0000010860][   ] Si3219x: Channel 0 : VBAT Up = 58.849 v
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --tx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --rx --tags 2  --rule-remove-alias STP-Rule+ 
[   16.363585] [0000011530][   ] ProSLIC:Starting LB Cal on channel 0
[   16.460715] pf_rt_ActivateGpon 3813 deactivate GPON fail ret:-1 
[   16.467324] 
omci_wrapper_act[   16.469213] priority: 1, portmask 2047, rx: 8082a970
ivateGpon ioctl [   16.475845] insert here, priority: 4, portmask 32, rx: 80414f94
failed
diable printk=  0  parameter is  0
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --tx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --rx --tags 3  --rule-remove-alias STP-Rule+ 
/bin/sh: can't open '/etc/scripts/board_init.sh'
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --tx --tags 3  --rule-remove-alias STP-Rule+ 
2 cpu
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --rx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --tx --tags 0  --rule-remove-alias STP-Rule+ 
starting pid 641, tty '': '/bin/inetd'

Please press Enter to activate this console.    CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --rx --tags 1  --rule-remove-alias STP-Rule+ 
service /bin/ftpd port 21 tcp enabled
service /bin/telnetd port 23 tcp enabled
service /bin/tftpd port 69 udp enabled
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --tx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --rx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --tx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --rx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --tx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --rx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --tx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --rx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --tx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --rx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --tx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --rx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --tx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --rx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --tx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --rx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --tx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --rx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --tx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --rx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --tx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/brctl stp br0 off 
   CMD: /bin/brctl setfd br0 1 
   CMD: /bin/brctl setageing br0 7200 
setupUniPortCapability:22900 line is 1;1;1;2

setupUniPortCapability:22904 pch is 1
setupUniPortCapability:22[   16.941238] device eth0.2.0 entered promiscuous mode
955 pch is 1, port 0, UNI_PORT_FE
setupUniPortCapability:22904 pch is 1
setupUniPortCapability:22955 pch is 1, port 1, UNI_PORT_FE
setupUniPortCapability:22904 pch is 1
setupUniPortCapability:22955 pch is 1, port 2, UNI_[   16.965840] device eth0.3.0 entered promiscuous mode
PORT_FE
setupUniPortCapability:22904 pch is 2

setupUniPortCapability:22978 pch is 2
, port 3, UNI_PORT_GE
   CMD: /bin/ifconfig eth0.2.0 mtu 1500 
   CMD: /bin/brctl addif br0 eth0.2.0 
   CMD: /bin/ifconfig eth0.2.0[   16.990194] device eth0.4.0 entered promiscuous mode
 up 
[restart_ethernet@16291] eth0.2.0 is up 
getUniPortCapability:23019 line is 1;1;1;2

getUniPortCapability:23026 pch is 1, port is 1
   CMD: /bin/ifconfig eth0.3.0 mtu 1500 
   CMD: /bin/brctl addif br0 eth0.3.0 
[   17.015447] device eth0.5.0 entered promiscuous mode
   CMD: /bin/ifconfig eth0.3.0 up 
[restart_ethernet@16291] eth0.3.0 is up 
getUniPortCapability:23019 line is 1;1;1;2

getUniPortCapability:23026 pch is 1, port is 2
   CMD: /bin/ifconfig eth0.4.0 mtu 1500 
   CMD: /bin/brctl addif br0 eth0.4.0 
   CMD: /bin/ifconfig eth0.4.0 up 
[restart_ethernet@16291] eth0.4.0 is up 
getUniPortCapability:23019 line is 1;1;1;2

getUniPortCapability:23026 pch is 2
, port is 3
   CMD: /bin/ifconfig eth0.5.0 mtu 1500 
   CMD: /bin/brctl addif br0 eth0.5.0 
   CMD: /bin/ifconfig eth0.5.0 up 
[restart_ethernet@16291] eth0.5.0 is up 
getUniPortCapability:23019 line is 1;1;1;2

   CMD: /bin/ifconfig br0 192.168.1.1 netmask 255.255.255.0 mtu 1500 
Find ATM_VC_TBL interface br0 Fail!
iptables: Bad rule (does a matching rule exist in that chain?).
[   17.343510] IPv6: ADDRCONF(NETDEV_UP): br0: link is not ready
   CMD: /bin/ifconfig br0 add fe80::1/64 
Set Link-Local Address for br0
sh: can't create /proc/driver/realtek/rtk_op_mode: nonexistent directory
   CMD: /bin/spppd 
   CMD: /bin/boa 
Open file /var/tmp/hosts failed !
   CMD: /bin/arp_monitor -F -d -t 3 -nf 3 -nt 7 -i br0 
[   18.452706] SLIC0 master state check pass!
[   18.457280] [0000013620][DRV] SLIC PCM Setup for CH0 ...
[   18.471057] [0000013630][   ] ProSLIC:PCMStart
[   18.477128] [0000013640][DRV] OK
[   18.510665] [0000013670][DRV] Set to LF_FWD_ACTIVE
[   18.517302] Init OK!
[   18.519710] <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>
[   18.519710] 
All DSP Software Ready. VoIP Defer Init done. 
start watch dog
restart DNS relay failed !
Open file /var/run/dhcpcV6.leases.nas0_0 fail !
[   18.734649] drivers/net/ethernet/realtek/rtl86900/sdk/src/rtk/pon_led.c:1180 led sw blink init complete!
rtk_pon_led_SpecType_set 0
   CMD: /bin/ebtables -N lan_igmp_flooding_block 
   CMD: /bin/ebtables -P lan_igmp_flooding_block RETURN 
   CMD: /bin/ebtables -A FORWARD -j lan_igmp_flooding_block 
   CMD: /bin/ebtables -A lan_igmp_flooding_block -i ! nas+ -o ! nas+ -p IPv4 --ip-proto igmp -j DROP 
   CMD: /bin/ebtables -A lan_igmp_flooding_block -i ! nas+ -o ! nas+ -p IPv6 --ip6-proto ipv6-icmp --ip6-icmp-type 130:132/0:255 -j DROP 
   CMD: /bin/ebtables -A lan_igmp_flooding_block -i ! nas+ -o ! nas+ -p IPv6 --ip6-proto ipv6-icmp --ip6-icmp-type 143:143/0:255 -j DROP 
   CMD: /bin/iptables -P INPUT ACCEPT 
   CMD: /bin/iptables -P FORWARD ACCEPT 
   CMD: /bin/iptables -A FORWARD -p tcp -o ppp+ --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 
   CMD: /bin/iptables -A FORWARD -p tcp -i ppp+ --tcp-flags SYN,RST SYN -m tcpmss --mss 1452:65495 -j TCPMSS --set-mss 1452 
   CMD: /bin/ip6tables -A FORWARD -p tcp -o ppp+ --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 
Open file /var/run/dhcpcV6.leases.nas0_0 fail !
   CMD: /bin/ip6tables -A FORWARD -p tcp -i ppp+ --tcp-flags SYN,RST SYN -m tcpmss --mss 1432:65475 -j TCPMSS --set-mss 1432 
   CMD: /bin/iptables -A INPUT -i br+ -p udp --dport 520 -j ACCEPT 
   CMD: /bin/iptables -A INPUT ! -i br0 -d 239.255.255.250 -j DROP 
   CMD: /bin/iptables -A INPUT -d 224.0.0.0/4 -j ACCEPT 
   CMD: /bin/iptables -N tr069 
   CMD: /bin/iptables -A INPUT -j tr069 
   CMD: /bin/ip6tables -N ipv6_tr069 
   CMD: /bin/ip6tables -A INPUT -j ipv6_tr069 
   CMD: /bin/iptables -F tr069 
   CMD: /bin/ip6tables -F ipv6_tr069 
   CMD: /bin/ip6tables -A ipv6_tr069 ! -i  -p TCP --dport 7547 -j DROP 
ip6tables v1.4.18: Empty interface is likely to be undesired
Try `ip6tables -h' or 'ip6tables --help' for more information.
   CMD: /bin/ip6tables -A ipv6_tr069 -p TCP --dport 7547 -j ACCEPT 
   CMD: /bin/iptables -N aclblock 
   CMD: /bin/iptables -t nat -N aclblock 
[   19.077305] ubi0 error: ubi_open_volume: cannot open device 0, volume 0, error -16
   CMD: /bin/iptables -t mangle -N aclblock 
voip flash server share size = 9384
rcm_voip_get_ctype_interface
++++++The size of voipConfig 8684
   CMD: /bin/iptables -F aclblock 
   CMD: /bin/iptables -t nat -F aclblock 
   CMD: /bin/iptables -t mangle -F aclblock 
   CMD: /bin/iptables -A aclblock -i lo -j RETURN 
<bind_web_socket:348> socket:4, ip_ver:6, port:443
   CMD: /bin/iptables -A aclblock ! -i br0 -m mark --mark 0x1000 -j ACCEPT 
   CMD: /bin/iptables -A aclblock ! -i br0 -p udp --dport 67 -j ACCEPT 
   CMD: /bin/iptables -A aclblock -m state --state ESTABLISHED,RELATED -j ACCEPT 
   CMD: /bin/iptables -A aclblock ! -i br0 -j DROP 
   CMD: /bin/iptables -A INPUT -j aclblock 
   CMD: /bin/iptables -t nat -A PREROUTING -j aclblock 
   CMD: /bin/iptables -t mangle -A PREROUTING -j aclblock 
   CMD: /bin/ip6tables -N aclblock 
   CMD: /bin/ip6tables -F aclblock 
   CMD: /bin/ip6tables -P INPUT DROP 
   CMD: /bin/ip6tables -A INPUT -j aclblock 
   CMD: /bin/iptables -N cwmp_aclblock 
   CMD: /bin/iptables -t mangle -N cwmp_aclblock 
   CMD: /bin/iptables -F cwmp_aclblock 
   CMD: /bin/iptables -t mangle -F cwmp_aclblock 
   CMD: /bin/iptables -t mangle -A cwmp_aclblock ! -i br+ -p TCP --dport 7547 -j MARK --set-mark 0x1000 
   CMD: /bin/iptables -A INPUT -j cwmp_aclblock 
   CMD: /bin/iptables -t mangle -D INPUT -j cwmp_aclblock 
   CMD: /bin/iptables -t mangle -A INPUT -j cwmp_aclblock 
   CMD: /bin/ebtables -N br_wan 
   CMD: /bin/ebtables -P br_wan RETURN 
   CMD: /bin/ebtables -N br_wan_out 
   CMD: /bin/ebtables -P br_wan_out RETURN 
   CMD: /bin/ebtables -N br_lan_out 
   CMD: /bin/ebtables -P br_lan_out RETURN 
   CMD: /bin/ebtables -A br_wan -i nas0_0 -j DROP 
   CMD: /bin/ebtables -A br_wan_out -o nas0_0 -j DROP 
   CMD: /bin/ebtables -A INPUT -j br_wan 
   CMD: /bin/ebtables -A OUTPUT -j br_wan_out 
   CMD: /bin/ebtables -A OUTPUT -j br_lan_out 
   CMD: /bin/ebtables -N br_wan_forward 
   CMD: /bin/ebtables -P br_wan_forward RETURN 
[block_br_wan_forward:598] Entry.cmode =0, Entry.IpProtocol=3
   CMD: /bin/ebtables -A FORWARD -j br_wan_forward 
   CMD: /bin/iptables -D INPUT -j voip_chain 
iptables v1.4.18: Couldn't load target `voip_chain':No such file or directory

Try `iptables -h' or 'iptables --help' for more information.
   CMD: /bin/iptables -F voip_chain 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X voip_chain 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -N voip_chain 
   CMD: /bin/iptables -I INPUT -j voip_chain 
   CMD: /bin/ebtables -N wlan_block -P RETURN 
   CMD: /bin/ebtables -A FORWARD -j wlan_block 
   CMD: /bin/ebtables -N br_pppoe 
   CMD: /bin/ebtables -P br_pppoe RETURN 
   CMD: /bin/ebtables -N br_pppoe_acl 
   CMD: /bin/ebtables -P br_pppoe_acl DROP 
   CMD: /bin/ebtables -A FORWARD -j br_pppoe 
   CMD: /bin/ebtables -A br_pppoe_acl --proto 0x8100 --vlan-encap 0x8863 -j RETURN 
<bind_web_socket:348> socket:9, ip_ver:6, port:80
   CMD: /bin/ebtables -A br_pppoe_acl --proto 0x8100 --vlan-encap 0x8864 -j RETURN 
   CMD: /bin/ebtables -A br_pppoe_acl --proto 0x8863 -j RETURN 
   CMD: /bin/ebtables -A br_pppoe_acl --proto 0x8864 -j RETURN 
   CMD: /bin/ebtables -A br_pppoe_acl -p IPv4 -d 01:00:5e:00:00:00/ff:ff:ff:00:00:00 -j RETURN 
   CMD: /bin/ebtables -A br_pppoe_acl -p IPv6 -d 33:33:00:00:00:00/ff:ff:00:00:00:00 -j RETURN 
   CMD: /bin/iptables -N domainblk 
   CMD: /bin/ip6tables -N domainblk 
   CMD: /bin/iptables -A domainblk -p udp --dport 53 -m dns --qname example.com --rmatch -j DROP 
   CMD: /bin/ip6tables -D domainblk -p udp --dport 53 -m dns --qname example.com --rmatch -j DROP 
ip6tables: Bad rule (does a matching rule exist in that chain?).
   CMD: /bin/ip6tables -A domainblk -p udp --dport 53 -m dns --qname example.com --rmatch -j DROP 
   CMD: /bin/iptables -A domainblk -p udp --dport 53 -m dns --qname wpad.domain.name --rmatch -j DROP 
   CMD: /bin/ip6tables -D FORWARD -p udp --dport 53 -m dns --qname wpad.domain.name --rmatch -j DROP 
ip6tables: Bad rule (does a matching rule exist in that chain?).
   CMD: /bin/ip6tables -A FORWARD -p udp --dport 53 -m dns --qname wpad.domain.name --rmatch -j DROP 
   CMD: /bin/iptables -A INPUT -j domainblk 
   CMD: /bin/iptables -A FORWARD -j domainblk 
   CMD: /bin/iptables -A OUTPUT -j domainblk 
   CMD: /bin/ip6tables -A INPUT -j domainblk 
   CMD: /bin/ip6tables -A FORWARD -j domainblk 
   CMD: /bin/ip6tables -A OUTPUT -j domainblk 
   CMD: /bin/iptables -t mangle -F interface_grouping_br0 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -t mangle -D PREROUTING -i br0 -j interface_grouping_br0 
iptables v1.4.18: Couldn't load target `interface_grouping_br0':No such file or directory

Try `iptables -h' or 'iptables --help' for more information.
   CMD: /bin/iptables -t mangle -X interface_grouping_br0 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -N dhcp_port_filter 
   CMD: /bin/iptables -A dhcp_port_filter ! -i br+ -p udp --dport 67 -j DROP 
   CMD: /bin/iptables -A INPUT -j dhcp_port_filter 
   CMD: /bin/iptables -t nat -N address_map_tbl 
   CMD: /bin/iptables -t nat -A POSTROUTING -j address_map_tbl 
   CMD: /bin/ip6tables -t nat -N address_map_tbl 
   CMD: /bin/ip6tables -t nat -A POSTROUTING -j address_map_tbl 
   CMD: /bin/iptables -t mangle -N voip_remarking 
   CMD: /bin/iptables -t mangle -A POSTROUTING -p udp -j voip_remarking 
   CMD: /bin/ip6tables -t mangle -N voip_remarking 
   CMD: /bin/ip6tables -t mangle -A POSTROUTING -p udp -j voip_remarking 
   CMD: /bin/iptables -N urlblock 
   CMD: /bin/iptables -A FORWARD -i br0 -p tcp --tcp-flags PSH,ACK PSH,ACK -m conntrack --ctstate ESTABLISHED -j urlblock 
   CMD: /bin/ip6tables -N urlblock 
   CMD: /bin/ip6tables -A FORWARD -i br0 -p tcp --tcp-flags PSH,ACK PSH,ACK -m conntrack --ctstate ESTABLISHED -j urlblock 
   CMD: /bin/iptables -t mangle -N urlblock_pre 
   CMD: /bin/iptables -t mangle -A PREROUTING -i br0 -p tcp -j urlblock_pre 
   CMD: /bin/iptables -t mangle -N urlblock_post 
   CMD: /bin/iptables -t mangle -A POSTROUTING ! -o br0 -p tcp -j urlblock_post 
   CMD: /bin/ip6tables -t mangle -N urlblock_pre 
   CMD: /bin/ip6tables -t mangle -A PREROUTING -i br0 -p tcp -j urlblock_pre 
   CMD: /bin/ip6tables -t mangle -N urlblock_post 
   CMD: /bin/ip6tables -t mangle -A POSTROUTING ! -o br0 -p tcp -j urlblock_post 
   CMD: /bin/iptables -F urlblock 
   CMD: /bin/iptables -t mangle -F urlblock_post 
   CMD: /bin/iptables -t mangle -F urlblock_pre 
   CMD: /bin/ip6tables -F urlblock 
   CMD: /bin/ip6tables -t mangle -F urlblock_post 
   CMD: /bin/ip6tables -t mangle -F urlblock_pre 
   CMD: /bin/iptables -F urlblock_black 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X urlblock_black 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -N urlblock_black 
   CMD: /bin/iptables -F urlblock_white 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X urlblock_white 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -N urlblock_white 
   CMD: /bin/ip6tables -F urlblock_black 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X urlblock_black 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -N urlblock_black 
   CMD: /bin/ip6tables -F urlblock_white 
launch /bin/VoIP_maserati at 20
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X urlblock_white 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -N urlblock_white 
   CMD: /bin/iptables -F URLBLK_ACT_REJECT_LOG 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X URLBLK_ACT_REJECT_LOG 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -F URLBLK_ACT_REJECT_LOG 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X URLBLK_ACT_REJECT_LOG 
ip6tables: No chain/target/match by that name.
   CMD: /bin/iptables -F URLBLK_ACT_REJECT 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X URLBLK_ACT_REJECT 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -F URLBLK_ACT_REJECT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X URLBLK_ACT_REJECT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/iptables -F URLBLK_ACT_ACCEPT_LOG 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X URLBLK_ACT_ACCEPT_LOG 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -F URLBLK_ACT_ACCEPT_LOG 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X URLBLK_ACT_ACCEPT_LOG 
ip6tables: No chain/target/match by that name.
   CMD: /bin/iptables -F URLBLK_ACT_ACCEPT 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X URLBLK_ACT_ACCEPT 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -F URLBLK_ACT_ACCEPT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X URLBLK_ACT_ACCEPT 
voip flash client share size = 9384
waiting voip flash server init...)
voip omci line state share size = 384
codec_suporrt_list 1279
watch dog pipe mode 
ip6tables: No chain/target/match by that name.
   CMD: /bin/iptables -N portfw 
   CMD: /bin/iptables -A FORWARD -j portfw 
   CMD: /bin/iptables -t nat -N portfw 
   CMD: /bin/iptables -t nat -A PREROUTING -j portfw 
   CMD: /bin/iptables -t nat -N portfwPreNatLB 
   CMD: /bin/iptables -t nat -A PREROUTING -j portfwPreNatLB 
   CMD: /bin/iptables -t nat -N portfwPostNatLB 
   CMD: /bin/iptables -t nat -A POSTROUTING -j portfwPostNatLB 
   CMD: /bin/iptables -F portfw 
   CMD: /bin/iptables -t nat -F portfw 
VoIP RCM LOG is ENABLED!!
Reset register status...
   CMD: /bin/iptables -t nat -F portfwPreNatLB 
   CMD: /bin/iptables -t nat -F portfwPostNatLB 
   CMD: /bin/iptables -t nat -A portfw ! -i br0 -m mark --mark 0x1000 -j RETURN 
   CMD: /bin/iptables -N ipfilter 
   CMD: /bin/iptables -A FORWARD -j ipfilter 
   CMD: /bin/iptables -F ipfilter 
   CMD: /bin/iptables -A ipfilter ! -i br+ ! -o br+ -j DROP 
   CMD: /bin/iptables -A ipfilter -d 224.0.0.0/4 -j RETURN 
   CMD: /bin/iptables -A ipfilter -m state --state ESTABLISHED,RELATED -j RETURN 
   CMD: /bin/ethctl conntrack killall 
[   20.410660] unknown cmd(21)
   CMD: /bin/iptables -t nat -N dmzPreNatLB 
   CMD: /bin/iptables -t nat -A PREROUTING -j dmzPreNatLB 
   CMD: /bin/iptables -t nat -N dmzPostNatLB 
   CMD: /bin/iptables -t nat -A POSTROUTING -j dmzPostNatLB 
   CMD: /bin/iptables -N dmz 
   CMD: /bin/iptables -t nat -N dmz 
   CMD: /bin/iptables -F dmz 
   CMD: /bin/iptables -t nat -F dmz 
   CMD: /bin/iptables -t nat -F dmzPreNatLB 
   CMD: /bin/iptables -t nat -F dmzPostNatLB 
   CMD: /bin/iptables -A ipfilter -j dmz 
   CMD: /bin/iptables -t nat -A PREROUTING -j dmz 
   CMD: /bin/iptables -A ipfilter ! -i br+ -j DROP 
   CMD: /bin/ebtables -N macfilter_forward 
   CMD: /bin/ebtables -N macfilter_local_in 
   CMD: /bin/ebtables -N macfilter_local_out 
   CMD: /bin/ebtables -F macfilter_forward 
   CMD: /bin/ebtables -F macfilter_local_in 
   CMD: /bin/ebtables -F macfilter_local_out 
   CMD: /bin/iptables -F macfilter_forward 
iptables: No chain/target/match by that name.
/bin/ebtables -P macfilter_forward RETURN
/bin/ebtables -P macfilter_local_in RETURN
/bin/ebtables -P macfilter_local_out RETURN
/bin/ebtables -P macfilter_forward RETURN
/bin/ebtables -P macfilter_local_in RETURN
/bin/ebtables -P macfilter_local_out RETURN
   CMD: /bin/echo 2 > /proc/fastbridge
sh: can't create /proc/fastbridge: nonexistent directory
[   20.568910] 0
[   20.592301] 0
   CMD: /bin/ebtables -I INPUT -j macfilter_local_in 
   CMD: /bin/ebtables -A OUTPUT -j macfilter_local_out 
   CMD: /bin/ebtables -I FORWARD -j macfilter_forward 
   CMD: /bin/ip6tables -P INPUT DROP 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 --icmpv6-type router-solicitation -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 --icmpv6-type router-advertisement -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 --icmpv6-type neighbour-solicitation -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 --icmpv6-type neighbour-advertisement -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 -i br0 -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -i lo -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -m state --state NEW -i br0 -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p udp --dport 546 -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT ! -i br0 -p udp --dport 547 -j ACCEPT 
   CMD: /bin/ip6tables -N ipv6filter 
   CMD: /bin/ip6tables -A FORWARD -j ipv6filter 
Restart IPv6 Filter!
   CMD: /bin/ip6tables -F ipv6filter 
Update Firewall rule set by user.
   CMD: /bin/ethctl conntrack killall 
   CMD: /bin/ethctl conntrack killall 
[   20.739413] unknown cmd(21)
[   20.742515] unknown cmd(21)
   CMD: /bin/ip6tables -A ipv6filter -m state --state ESTABLISHED,RELATED -j RETURN 
   CMD: /bin/ip6tables -A ipv6filter ! -i br+ -j DROP 
voip_set_rg_1p_tag
   CMD: /bin/iptables -t mangle -F voip_remarking 
   CMD: /bin/ip6tables -t mangle -F voip_remarking 
   CMD: /bin/ebtables -N ISOLATION_MAP 
   CMD: /bin/ebtables -P ISOLATION_MAP RETURN 
   CMD: /bin/ebtables -I FORWARD -j ISOLATION_MAP 
   CMD: /bin/ebtables -N ISOLATION_BRPORT 
   CMD: /bin/ebtables -P ISOLATION_BRPORT DROP 
   CMD: /bin/ebtables -A ISOLATION_BRPORT -i nas0+ -j RETURN 
   CMD: /bin/ebtables -A ISOLATION_BRPORT -o nas0+ -j RETURN 
   CMD: /bin/ebtables -A ISOLATION_BRPORT -d 1:80:c2:0:0:0/ff:ff:ff:0:0:0 -j RETURN 
   CMD: /bin/ebtables -D ISOLATION_MAP --logical-out br0 -j ISOLATION_BRPORT 
Sorry, rule does not exist.
   CMD: /bin/ebtables -N L2_PPTP_PORT_SERVICE 
   CMD: /bin/ebtables -P L2_PPTP_PORT_SERVICE RETURN 
   CMD: /bin/ebtables -A L2_PPTP_PORT_SERVICE -p ipv4 --ip-proto udp --ip-dport 67:68 -j DROP 
   CMD: /bin/ebtables -A L2_PPTP_PORT_SERVICE -p ipv4 --ip-proto 2 -j DROP 
   CMD: /bin/ebtables -A L2_PPTP_PORT_SERVICE -p ipv6 --ip6-proto udp --ip6-dport 546:547 -j DROP 
   CMD: /bin/ebtables -A L2_PPTP_PORT_SERVICE -p ipv6 --ip6-proto ipv6-icmp --ip6-icmp-type 130:134 -j DROP 
   CMD: /bin/ebtables -N L2_PPTP_PORT_FORWARD 
   CMD: /bin/ebtables -P L2_PPTP_PORT_FORWARD DROP 
   CMD: /bin/ebtables -A L2_PPTP_PORT_FORWARD -d 01:80:C2:00:00:00/FF:FF:FF:00:00:00 -j RETURN 
   CMD: /bin/ebtables -A L2_PPTP_PORT_FORWARD -i nas+ -j RETURN 
   CMD: /bin/ebtables -N L2_PPTP_PORT_INPUT_TBL 
   CMD: /bin/ebtables -P L2_PPTP_PORT_INPUT_TBL RETURN 
   CMD: /bin/ebtables -I INPUT -j L2_PPTP_PORT_INPUT_TBL 
   CMD: /bin/ebtables -N L2_PPTP_PORT_OUTPUT_TBL 
   CMD: [   20.906479] 0
/bin/ebtables -P L2_PPTP_PORT_OUTPUT_TBL RETURN 
   CMD: /bin/ebtables -I OUTPUT -j L2_PPTP_PORT_OUTPUT_TBL 
   CMD: /bin/ebtables -N L2_PPTP_PORT_FORWARD_TBL 
   CMD: /bin/ebtables -P L2_PPTP_PORT_FORWARD_TBL RETURN 
   CMD: /bin/ebtables -I FORWARD -[   20.930853] 0
j L2_PPTP_PORT_FORWARD_TBL 
   CMD: /bin/iptables -t mangle -N dscp_remark 
   CMD: /bin/iptables -t mangle -A POSTROUTING -o br0 -m connmark2 --mark2 0x800000/0x800000 -j CONNMARK2 --restore-mark2 --mask2 0xfe0000 
   CMD: /bin/iptables -t mangle -A POSTROUTING -m mark2 --mark2 0x800000/0x800000 -j dscp_remark 
   CMD: /bin/ip6tables -t mangle -N dscp_remark 
   CMD: /bin/ip6tables -t mangle -A POSTROUTING -o br0 -m connmark2 --mark2 0x800000/0x800000 -j CONNMARK2 --restore-mark2 --mask2 0xfe0000 
   CMD: /bin/ip6tables -t mangle -A POSTROUTING -m mark2 --mark2 0x800000/0x800000 -j dscp_remark 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x0/0x7e0000 -j DSCP --set-dscp 0x0 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x0/0x7e0000 -j TOS --set-tos 0x0 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x20000/0x7e0000 -j DSCP --set-dscp 0x1 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x20000/0x7e0000 -j TOS --set-tos 0x1 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x40000/0x7e0000 -j DSCP --set-dscp 0x2 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x40000/0x7e0000 -j TOS --set-tos 0x2 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x60000/0x7e0000 -j DSCP --set-dscp 0x3 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x60000/0x7e0000 -j TOS --set-tos 0x3 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x80000/0x7e0000 -j DSCP --set-dscp 0x4 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x80000/0x7e0000 -j TOS --set-tos 0x4 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0xa0000/0x7e0000 -j DSCP --set-dscp 0x5 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0xa0000/0x7e0000 -j TOS --set-tos 0x5 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0xc0000/0x7e0000 -j DSCP --set-dscp 0x6 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0xc0000/0x7e0000 -j TOS --set-tos 0x6 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0xe0000/0x7e0000 -j DSCP --set-dscp 0x7 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0xe0000/0x7e0000 -j TOS --set-tos 0x7 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x100000/0x7e0000 -j DSCP --set-dscp 0x8 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x100000/0x7e0000 -j TOS --set-tos 0x8 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x120000/0x7e0000 -j DSCP --set-dscp 0x9 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x120000/0x7e0000 -j TOS --set-tos 0x9 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x140000/0x7e0000 -j DSCP --set-dscp 0xa 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x140000/0x7e0000 -j TOS --set-tos 0xa 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x160000/0x7e0000 -j DSCP --set-dscp 0xb 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x160000/0x7e0000 -j TOS --set-tos 0xb 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x180000/0x7e0000 -j DSCP --set-dscp 0xc 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x180000/0x7e0000 -j TOS --set-tos 0xc 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x1a0000/0x7e0000 -j DSCP --set-dscp 0xd 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x1a0000/0x7e0000 -j TOS --set-tos 0xd 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x1c0000/0x7e0000 -j DSCP --set-dscp 0xe 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x1c0000/0x7e0000 -j TOS --set-tos 0xe 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x1e0000/0x7e0000 -j DSCP --set-dscp 0xf 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x1e0000/0x7e0000 -j TOS --set-tos 0xf 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x200000/0x7e0000 -j DSCP --set-dscp 0x10 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x200000/0x7e0000 -j TOS --set-tos 0x10 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x220000/0x7e0000 -j DSCP --set-dscp 0x11 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x220000/0x7e0000 -j TOS --set-tos 0x11 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x240000/0x7e0000 -j DSCP --set-dscp 0x12 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x240000/0x7e0000 -j TOS --set-tos 0x12 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x260000/0x7e0000 -j DSCP --set-dscp 0x13 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x260000/0x7e0000 -j TOS --set-tos 0x13 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x280000/0x7e0000 -j DSCP --set-dscp 0x14 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x280000/0x7e0000 -j TOS --set-tos 0x14 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x2a0000/0x7e0000 -j DSCP --set-dscp 0x15 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x2a0000/0x7e0000 -j TOS --set-tos 0x15 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x2c0000/0x7e0000 -j DSCP --set-dscp 0x16 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x2c0000/0x7e0000 -j TOS --set-tos 0x16 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x2e0000/0x7e0000 -j DSCP --set-dscp 0x17 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x2e0000/0x7e0000 -j TOS --set-tos 0x17 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x300000/0x7e0000 -j DSCP --set-dscp 0x18 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x300000/0x7e0000 -j TOS --set-tos 0x18 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x320000/0x7e0000 -j DSCP --set-dscp 0x19 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x320000/0x7e0000 -j TOS --set-tos 0x19 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x340000/0x7e0000 -j DSCP --set-dscp 0x1a 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x340000/0x7e0000 -j TOS --set-tos 0x1a 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x360000/0x7e0000 -j DSCP --set-dscp 0x1b 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x360000/0x7e0000 -j TOS --set-tos 0x1b 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x380000/0x7e0000 -j DSCP --set-dscp 0x1c 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x380000/0x7e0000 -j TOS --set-tos 0x1c 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x3a0000/0x7e0000 -j DSCP --set-dscp 0x1d 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x3a0000/0x7e0000 -j TOS --set-tos 0x1d 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x3c0000/0x7e0000 -j DSCP --set-dscp 0x1e 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x3c0000/0x7e0000 -j TOS --set-tos 0x1e 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x3e0000/0x7e0000 -j DSCP --set-dscp 0x1f 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x3e0000/0x7e0000 -j TOS --set-tos 0x1f 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x400000/0x7e0000 -j DSCP --set-dscp 0x20 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x400000/0x7e0000 -j TOS --set-tos 0x20 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x420000/0x7e0000 -j DSCP --set-dscp 0x21 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x420000/0x7e0000 -j TOS --set-tos 0x21 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x440000/0x7e0000 -j DSCP --set-dscp 0x22 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x440000/0x7e0000 -j TOS --set-tos 0x22 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x460000/0x7e0000 -j DSCP --set-dscp 0x23 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x460000/0x7e0000 -j TOS --set-tos 0x23 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x480000/0x7e0000 -j DSCP --set-dscp 0x24 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x480000/0x7e0000 -j TOS --set-tos 0x24 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x4a0000/0x7e0000 -j DSCP --set-dscp 0x25 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x4a0000/0x7e0000 -j TOS --set-tos 0x25 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x4c0000/0x7e0000 -j DSCP --set-dscp 0x26 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x4c0000/0x7e0000 -j TOS --set-tos 0x26 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x4e0000/0x7e0000 -j DSCP --set-dscp 0x27 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x4e0000/0x7e0000 -j TOS --set-tos 0x27 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x500000/0x7e0000 -j DSCP --set-dscp 0x28 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x500000/0x7e0000 -j TOS --set-tos 0x28 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x520000/0x7e0000 -j DSCP --set-dscp 0x29 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x520000/0x7e0000 -j TOS --set-tos 0x29 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x540000/0x7e0000 -j DSCP --set-dscp 0x2a 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x540000/0x7e0000 -j TOS --set-tos 0x2a 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x560000/0x7e0000 -j DSCP --set-dscp 0x2b 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x560000/0x7e0000 -j TOS --set-tos 0x2b 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x580000/0x7e0000 -j DSCP --set-dscp 0x2c 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x580000/0x7e0000 -j TOS --set-tos 0x2c 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x5a0000/0x7e0000 -j DSCP --set-dscp 0x2d 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x5a0000/0x7e0000 -j TOS --set-tos 0x2d 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x5c0000/0x7e0000 -j DSCP --set-dscp 0x2e 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x5c0000/0x7e0000 -j TOS --set-tos 0x2e 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x5e0000/0x7e0000 -j DSCP --set-dscp 0x2f 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x5e0000/0x7e0000 -j TOS --set-tos 0x2f 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x600000/0x7e0000 -j DSCP --set-dscp 0x30 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x600000/0x7e0000 -j TOS --set-tos 0x30 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x620000/0x7e0000 -j DSCP --set-dscp 0x31 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x620000/0x7e0000 -j TOS --set-tos 0x31 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x640000/0x7e0000 -j DSCP --set-dscp 0x32 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x640000/0x7e0000 -j TOS --set-tos 0x32 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x660000/0x7e0000 -j DSCP --set-dscp 0x33 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x660000/0x7e0000 -j TOS --set-tos 0x33 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x680000/0x7e0000 -j DSC[   21.965163] device nas0_0 entered promiscuous mode
P --set-dscp 0x34 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x680000/0x7e0000 -j TOS --set-tos 0x34 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x6a0000/0x7e0000 -j DSCP --set-dscp 0x35 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x6a0000/0x7e0000 -j TOS --set-tos 0x35 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x6c0000/0x7e0000 -j DSCP --set-dscp 0x36 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x6c0000/0x7e0000 -j TOS --set-tos 0x36 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x6e0000/0x7e0000 -j DSCP --set-dscp 0x37 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x6e0000/0x7e0000 -j TOS --set-tos 0x37 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x700000/0x7e0000 -j DSCP --set-dscp 0x38 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x700000/0x7e0000 -j TOS --set-tos 0x38 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x720000/0x7e0000 -j DSCP --set-dscp 0x39 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x720000/0x7e0000 -j TOS --set-tos 0x39 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x740000/0x7e0000 -j DSCP --set-dscp 0x3a 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x740000/0x7e0000 -j TOS --set-tos 0x3a 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x760000/0x7e0000 -j DSCP --set-dscp 0x3b 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x760000/0x7e0000 -j TOS --set-tos 0x3b 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x780000/0x7e0000 -j DSCP --set-dscp 0x3c 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x780000/0x7e0000 -j TOS --set-tos 0x3c 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x7a0000/0x7e0000 -j DSCP --set-dscp 0x3d 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x7a0000/0x7[   22.148165] unknown cmd(21)
e0000 -j TOS --set-tos 0x3d 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x7c0000/0x7e0000 -j DSCP --set-dscp 0x3e 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x7c0000/0x7e0000 -j TOS --set-tos 0x3e 
   CMD: /bin/iptables -t mangle -A dscp_remark -m mark2 --mark2 0x7e0000/0x7e0000 -j DSCP --set-dscp 0x3f 
   CMD: /bin/ip6tables -t mangle -A dscp_remark -m mark2 --mark2 0x7e0000/0x7e0000 -j TOS --set-tos 0x3f 
<utility.c 6037 startWan> startWan Start all WAN
   CMD: /bin/ifconfig nas0 hw ether 00e04c867001 
   CMD: /bin/ifconfig nas0 up 
   CMD: /bin/ifconfig nas0 mtu 1500 
   CMD: /bin/ifconfig nas0 mtu 1500 
   CMD: /bin/sh -c /bin/smuxctl --if-create-name nas0 nas0_0 --set-if-rsmux --carrier MANUAL 
   CMD: /bin/ifconfig nas0_0 mtu 1500 
cmdStr: echo 130816 1 -1 -1 2 -1 > /proc/rtk_tr142/wan_info
   CMD: /bin/ifconfig nas0_0 down 
   CMD: /bin/ifconfig nas0_0 down hw ether
   CMD: /bin/ifconfig nas0_0 txqueuelen 10
   CMD: /bin/ifconfig nas0_0 up
unlink /var/interface/uptime/nas0_0
[startConnection@4300] pEntry->ifIndex = 130816, pEntry->cmode = 0 
1483 bridged
   CMD: /bin/brctl addif br0 nas0_0 
unlink /var/interface/uptime/nas0_0
   CMD: /bin/ip rule del fwmark 0x2000/0x3e000 prohibit 
unlink /var/interface/uptime/nas0_0
unlink /var/interface/uptime/nas0_0
RTNETLINK answers: No such file or directory
   CMD: /bin/ip rule add fwmark 0x2000/0x3e000 pref 30000 prohibit 
   CMD: /bin/ip -6 rule del fwmark 0x2000/0x3e000 prohibit 
RTNETLINK answers: No such file or directory
   CMD: /bin/ip -6 rule add fwmark 0x2000/0x3e000 pref 30000 prohibit 
   CMD: /bin/iptables -t nat -N address_map_tbl 
iptables: Chain already exists.
   CMD: /bin/ip6tables -t nat -N address_map_tbl 
ip6tables: Chain already exists.
   CMD: /bin/ip -6 rule del from all lookup 257 pref 27900 
RTNETLINK answers: No such file or directory
   CMD: /bin/ip -6 rule add from all lookup 257 pref 27900 
   CMD: /bin/sh -c echo 1 > /sys/devices/virtual/net/br0/bridge/multicast_router 
   CMD: /bin/ethctl conntrack killall 
   CMD: /bin/sh -c /bin/smuxctl --if nas0 --rx --tags 1 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0_0 --rx --tags 1 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0 --rx --tags 2 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0_0 --rx --tags 2 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0 --rx --tags 3 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0_0 --rx --tags 3 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0 --rx --tags 4 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0_0 --rx --tags 4 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c echo 1 > /sys/class/net/br0/bridge/multicast_snooping 
   CMD: /bin/sh -c echo 2 > /sys/devices/virtual/net/nas0_0/brport/multicast_router 
   CMD: /bin/sh -c echo 1 > /sys/class/net/br0/bridge/multicast_snooping 
   CMD: /bin/sh -c echo 2 > /sys/devices/virtual/net/nas0_0/brport/multicast_router 
   CMD: /bin/iwpriv wlan0 set_mib mp_specific=0 
   CMD: /bin/iwpriv wlan0 set_mib regdomain=1 
   CMD: /bin/iwpriv wlan0 set_mib led_type=7 
   CMD: /bin/iwpriv wlan0 set_mib ssid=RTL867x-ADSL 
   CMD: /bin/iwpriv wlan0 set_mib opmode=16 
   CMD: /bin/iwpriv wlan0 set_mib phyBandSelect=1 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevelCCK_A=2a2a2a2b2b2b2b2b2b2c2c2c2c2c 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevelCCK_B=2d2d2d2d2d2d2d2d2d2e2e2e2e2e 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevel_TSSICCK_A=0000000000000000000000000000 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevel_TSSICCK_B=0000000000000000000000000000 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevelHT40_1S_A=2c2c2c2d2d2d2d2d2d2d2d2d2d2d 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevelHT40_1S_B=2d2d2d2d2d2d2d2d2d2e2e2e2e2e 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevel_TSSIHT40_1S_A=0000000000000000000000000000 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevel_TSSIHT40_1S_B=0000000000000000000000000000 
   CMD: /bin/iwpriv wlan0 set_mib pwrdiffHT40_2S=0000000000000000000000000000 
   CMD: /bin/iwpriv wlan0 set_mib pwrdiffHT20=1111111010101010100101010101 
   CMD: /bin/iwpriv wlan0 set_mib pwrdiffOFDM=1111110000000000000101010101 
   CMD: /bin/iwpriv wlan0 set_mib tssi_enable=0 
   CMD: /bin/iwpriv wlan0 set_mib ther=35 
   CMD: /bin/iwpriv wlan0 set_mib thermal1=35 
   CMD: /bin/iwpriv wlan0 set_mib xcap=17 
   CMD: /bin/iwpriv wlan0 set_mib countrycode=1 
   CMD: /bin/iwpriv wlan0 set_mib countrystr=US 
   CMD: /bin/iwpriv wlan0 set_mib bDPPathAOK=1 
   CMD: /bin/iwpriv wlan0 set_mib bDPPathBOK=1 
   CMD: /bin/iwpriv wlan0 set_mib pwsf_2g_a=1d1d1d 
   CMD: /bin/iwpriv wlan0 set_mib pwsf_2g_b=1e1e1e 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_a0=000d67e0000d37e2000d2fe4000d3fe5000d47e6000d5fe7000d8fea000db7ed000dd7ef000deff0000e17f2000e4ff3000e87f5000ed7f9000f3ffb000fcfff000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d780[   22.660527] FAT-fs (sda1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
0000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d780[   22.676985] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
0 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_a1=000d7feb000d3fed000d3ff0000d4ff0000d57f1000d67f2000d8ff4000dc7f7000ddff8000dfffb000e1ffb000e5ffe000e9801000ee002000f5804000fa000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_a2=000daff1000d87f0000d77f2000d7ff3000d8ff5000d97f5000dc7f8000df7fa000e17fc000e2ffd000e5ffe000e8fff000ec801000f1803000f7804000fb800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_a0=000d5fe0000d37e2000d37e4000d3fe6000d4fe6000d77e8000d97eb000dd7ee000dd7ef000e07f1000e2ff2000e6ff5000ebff7000f0ffa000f87fd00100000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_a1=000d5fec000d47ee000d37f1000d4ff1000d67f2000d7ff3000d9ff6000ddff7000de7fb000e17fb000e37fd000e7fff000ec001000f1803000f680000100000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_a2=000d9ff1000d77f2000d6ff3000d7ff5000d9ff5000db7f6000dd7f8000e0ffb000e17fc000e3ffd000e77ff000ea800000ef001000f4804000fa00000100000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_b0=000e1004000dd805000db805000dc808000dd809000de80a000e000d000e200e000e4812000e7013000e580d000e8006000ea804000ee805000f4003000fb003000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_b1=000df003000dc808000db00a000db00c000dc80d000dd80e000df010000e0812000e3815000e5814000e2811000e6007000e8806000ed806000f2805000fb002000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_b2=000df803000dc806000dc008000dc809000de00a000df80b000e080d000e2810000e5812000e7812000ea00e000e7005000ea005000ed805000f4004000fb801000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_b0=000df803000dd005000dc007000dd008000dd80a000e000c000e180d000e3010000e7013000e7012000e7007000e8805000ec805000f0804000f780300100000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_b1=000de006000dc00a000db00b000db80c000dd00d000df00f000df812000e1813000e5815000e5013000e4808000e7007000eb807000ef805000f600300100000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_b2=000de806000dc007000dc009000dd009000de80b000e000d000e180f000e3010000e7813000e8011000e600d0[   23.190255] device wlan0 entered promiscuous mode
00e8005000ec005000f0804000f780300100000000d7800000d7800000d7800000d7800000d7800000d7800000d78000[   23.203874] chip_version=0x100c,WlanSupportAbility = 0x7
00d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d78000[   23.218434] eric-8822 [ODM_software_init][15466] 
[   23.224387] clock 25MHz
00d7800000d78000[   23.229269] [PHY_REG_PG_8192Fmp]
00d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib bcnint=100 
   CMD: /bin/iwpriv wlan0 set_mib channel=0 
   CMD: /bin/iwpriv wlan0 set_mib autoch_timeout=0 
   CMD: /bin/iwpriv wlan0 set_mib autoch_diff_pkt=0 
   CMD: /bin/iwpriv wlan0 set_mib autoch_1611_enable=0 
   CMD: /bin/iwpriv wlan0 set_mib basicrates=15 
   CMD: /bin/iwpriv wlan0 set_mib oprates=4095 
   CMD: /bin/iwpriv wlan0 set_mib autorate=1 
   CMD: /bin/iwpriv wlan0 set_mib rtsthres=2347 
   CMD: /bin/iwpriv wlan0 set_mib fragthres=2346 
   CMD: /bin/iwpriv wlan0 set_mib expired_time=30000 
   CMD: /bin/iwpriv wlan0 set_mib preamble=0 
   CMD: /bin/iwpriv wlan0 set_mib hiddenAP=0 
   CMD: /bin/iwpriv wlan0 set_mib dtimperiod=1 
   CMD: /bin/iwpriv wlan0 set_mib txbf=1 
   CMD: /bin/iwpriv wlan0 set_mib txbf_mu=0 
Interface doesn't accept private ioctl...
89F1: Operation not permitted
   CMD: /bin/iwpriv wlan0 set_mib mc2u_disable=0 
   CMD: /bin/iwpriv wlan0 set_mib aclnum=0 
   CMD: /bin/iwpriv wlan0 set_mib aclmode=0 
   CMD: /bin/ebtables -F wlan_block 
   CMD: /bin/iwpriv wlan0 set_mib wsc_enable=0 
   CMD: /bin/iwpriv wlan0 set_mib authtype=2 
   CMD: /bin/iwpriv wlan0 set_mib psk_enable=0 
   CMD: /bin/iwpriv wlan0 set_mib dot11IEEE80211W=0 
   CMD: /bin/iwpriv wlan0 set_mib enableSHA256=0 
   CMD: /bin/iwpriv wlan0 set_mib encmode=0 
   CMD: /bin/iwpriv wlan0 set_mib rm_activated=0 
   CMD: /bin/iwpriv wlan0 set_mib BssTransEnable=0 
   CMD: /bin/iwpriv wlan0 set_mib 802_1x=0 
   CMD: /bin/iwpriv wlan0 set_mib band=11 
   CMD: /bin/iwpriv wlan0 set_mib deny_legacy=0 
   CMD: /bin/iwpriv wlan0 set_mib lgyEncRstrct=15 
   CMD: /bin/iwpriv wlan0 set_mib wifi_specific=2 
   CMD: /bin/iwpriv wlan0 set_mib cts2self=1 
   CMD: /bin/iwpriv wlan0 set_mib disable_protection=1 
   CMD: /bin/iwpriv wlan0 set_mib block_relay=0 
   CMD: /bin/iwpriv wlan0 set_mib qos_enable=1 
   CMD: /bin/iwpriv wlan0 set_mib apsd_enable=0 
   CMD: /bin/iwpriv wlan0 set_mib use40M=1 
   CMD: /bin/iwpriv wlan0 set_mib 2ndchoffset=1 
   CMD: /bin/iwpriv wlan0 set_mib coexist=0 
   CMD: /bin/iwpriv wlan0 set_mib shortGI20M=1 
   CMD: /bin/iwpriv wlan0 set_mib shortGI40M=1 
   CMD: /bin/iwpriv wlan0 set_mib shortGI80M=1 
   CMD: /bin/iwpriv wlan0 set_mib ampdu=1 
   CMD: /bin/iwpriv wlan0 set_mib amsdu=0 
   CMD: /bin/iwpriv wlan0 set_mib vap_enable=1 
   CMD: /bin/brctl addif br0 wlan0 
   CMD: /bin/iwpriv wlan0 set_mib func_off=0 
   CMD: /bin/ifconfig wlan0 up 
Reset register status...
[   23.625351] start_addr=(0x2000), end_addr=(0x10000), buffer_size=(0xe000), smp_number_max=(7168)
[   24.244671] br0: port 6(wlan0) entered forwarding state
[   24.250504] br0: port 6(wlan0) entered forwarding state
[   24.256588] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
   CMD: /bin/iwpriv wlan0-vap0 set_mib ssid=CTC-1111 
   CMD: /bin/iwpriv wlan0-vap0 set_mib rtsthres=2347 
   CMD: /bin/iwpriv wlan0-vap0 set_mib fragthres=2346 
   CMD: /bin/iwpriv wlan0-vap0 set_mib aclnum=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib aclmode=0 
   CMD: /bin/ebtables -F wlan_block 
   CMD: /bin/iwpriv wlan0-vap0 set_mib authtype=2 
   CMD: /bin/iwpriv wlan0-vap0 set_mib band=11 
   CMD: /bin/iwpriv wlan0-vap0 set_mib autorate=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib hiddenAP=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib qos_enable=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib block_relay=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib deny_legacy=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib mc2u_disable=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib psk_enable=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib dot11IEEE80211W=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib enableSHA256=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib encmode=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib rm_activated=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib BssTransEnable=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib 802_1x=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib lgyEncRstrct=15 
   CMD: /bin/iwpriv wlan0-vap0 set_mib wifi_specific=2 
   CMD: /bin/iwpriv wlan0-vap0 set_mib disable_protection=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib use40M=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib 2ndchoffset=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib coexist=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib shortGI20M=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib shortGI40M=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib shortGI80M=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib ampdu=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib amsdu=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib ssid=CTC-2222 
   CMD: /bin/iwpriv wlan0-vap1 set_mib rtsthres=2347 
   CMD: /bin/iwpriv wlan0-vap1 set_mib fragthres=2346 
   CMD: /bin/iwpriv wlan0-vap1 set_mib aclnum=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib aclmode=0 
   CMD: /bin/ebtables -F wlan_block 
   CMD: /bin/iwpriv wlan0-vap1 set_mib authtype=2 
   CMD: /bin/iwpriv wlan0-vap1 set_mib band=11 
   CMD: /bin/iwpriv wlan0-vap1 set_mib autorate=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib hiddenAP=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib qos_enable=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib block_relay=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib deny_legacy=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib mc2u_disable=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib psk_enable=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib dot11IEEE80211W=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib enableSHA256=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib encmode=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib rm_activated=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib BssTransEnable=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib 802_1x=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib lgyEncRstrct=15 
   CMD: /bin/iwpriv wlan0-vap1 set_mib wifi_specific=2 
   CMD: /bin/iwpriv wlan0-vap1 set_mib disable_protection=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib use40M=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib 2ndchoffset=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib coexist=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib shortGI20M=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib shortGI40M=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib shortGI80M=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib ampdu=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib amsdu=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib ssid=CTC-3333 
   CMD: /bin/iwpriv wlan0-vap2 set_mib rtsthres=2347 
   CMD: /bin/iwpriv wlan0-vap2 set_mib fragthres=2346 
   CMD: /bin/iwpriv wlan0-vap2 set_mib aclnum=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib aclmode=0 
   CMD: /bin/ebtables -F wlan_block 
   CMD: /bin/iwpriv wlan0-vap2 set_mib authtype=2 
   CMD: /bin/iwpriv wlan0-vap2 set_mib band=11 
   CMD: /bin/iwpriv wlan0-vap2 set_mib autorate=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib hiddenAP=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib qos_enable=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib block_relay=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib deny_legacy=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib mc2u_disable=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib psk_enable=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib dot11IEEE80211W=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib enableSHA256=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib encmode=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib rm_activated=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib BssTransEnable=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib 802_1x=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib lgyEncRstrct=15 
   CMD: /bin/iwpriv wlan0-vap2 set_mib wifi_specific=2 
   CMD: /bin/iwpriv wlan0-vap2 set_mib disable_protection=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib use40M=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib 2ndchoffset=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib coexist=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib shortGI20M=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib shortGI40M=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib shortGI80M=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib ampdu=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib amsdu=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib ssid=CTC-4444 
   CMD: /bin/iwpriv wlan0-vap3 set_mib rtsthres=2347 
   CMD: /bin/iwpriv wlan0-vap3 set_mib fragthres=2346 
   CMD: /bin/iwpriv wlan0-vap3 set_mib aclnum=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib aclmode=0 
   CMD: /bin/ebtables -F wlan_block 
   CMD: /bin/iwpriv wlan0-vap3 set_mib authtype=2 
   CMD: /bin/iwpriv wlan0-vap3 set_mib band=11 
   CMD: /bin/iwpriv wlan0-vap3 set_mib autorate=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib hiddenAP=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib qos_enable=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib block_relay=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib deny_legacy=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib mc2u_disable=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib psk_enable=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib dot11IEEE80211W=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib enableSHA256=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib encmode=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib rm_activated=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib BssTransEnable=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib 802_1x=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib lgyEncRstrct=15 
   CMD: /bin/iwpriv wlan0-vap3 set_mib wifi_specific=2 
   CMD: /bin/iwpriv wlan0-vap3 set_mib disable_protection=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib use40M=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib 2ndchoffset=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib coexist=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib shortGI20M=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib shortGI40M=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib shortGI80M=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib ampdu=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib amsdu=0 
   CMD: /bin/mkdir -p /var/wps/ 
   CMD: /bin/cp /etc/simplecfgservice.xml /var/wps/ 
Writing file /var/wsc-wlan0.conf...
CMD ARGS: wscd -start -c /var/wsc-wlan0.conf -w wlan0 -fi /var/wscd-wlan0.fifo 

WiFi Simple Config v1.24.3 (2021.05.31-06:23+0000).

[   25.143012] Error Channel = 10 Offset = 2, Force to 20M BW 
[   25.243141] br0: port 6(wlan0) entered forwarding state
Total WPA/WPA2 number is 1
iwcontrol RegisterPID to (wlan0)
   CMD: /bin/iptables -F tr069 
   CMD: /bin/ip6tables -F ipv6_tr069 
   CMD: /bin/ip6tables -A ipv6_tr069 ! -i  -p TCP --dport 7547 -j DROP 
ip6tables v1.4.18: Empty interface is likely to be undesired
Try `ip6tables -h' or 'ip6tables --help' for more information.
   CMD: /bin/ip6tables -A ipv6_tr069 -p TCP --dport 7547 -j ACCEPT 
   CMD: /bin/cwmpClient 
   CMD: /bin/udhcpd -S /var/udhcpd/udhcpd.conf 
sh: can't create /proc/br_igmpsnoop: nonexistent directory
sh: can't create /proc/br_igmpquery: nonexistent directory
sh: can't create /proc/br_mldsnoop: nonexistent directory
sh: can't create /proc/br_mldquery: nonexistent directory
IGMP Snooping: enabled
MLD Snooping: enabled
   CMD: /bin/ebtables -D INPUT -j portmapping_input 
Illegal target name 'portmapping_input'.
   CMD: /bin/ebtables -F portmapping_input 
Chain 'portmapping_input' doesn't exist.
   CMD: /bin/ebtables -X portmapping_input 
Chain 'portmapping_input' doesn't exist.
   CMD: /bin/ebtables -D OUTPUT -j portmapping_output 
Illegal target name 'portmapping_output'.
   CMD: /bin/ebtables -F portmapping_output 
Chain 'portmapping_output' doesn't exist.
   CMD: /bin/ebtables -X portmapping_output 
Chain 'portmapping_output' doesn't exist.
   CMD: /bin/ebtables -F portmapping_service 
Chain 'portmapping_service' doesn't exist.
   CMD: /bin/ebtables -X portmapping_service 
Chain 'portmapping_service' doesn't exist.
   CMD: /bin/ebtables -D FORWARD -j portmapping 
Illegal target name 'portmapping'.
   CMD: /bin/ebtables -F portmapping 
Chain 'portmapping' doesn't exist.
   CMD: /bin/ebtables -X portmapping 
Chain 'portmapping' doesn't exist.
   CMD: /bin/ebtables -t broute -D BROUTING -j portmapping_broute 
Illegal target name 'portmapping_broute'.
   CMD: /bin/ebtables -t broute -F portmapping_broute 
Chain 'portmapping_broute' doesn't exist.
   CMD: /bin/ebtables -t broute -X portmapping_broute 
Chain 'portmapping_broute' doesn't exist.
   CMD: /bin/iptables -t mangle -D FORWARD -j portmapping_rt_tbl 
iptables v1.4.18: Couldn't load target `portmapping_rt_tbl':No such file or directory

Try `iptables -h' or 'iptables --help' for more information.
   CMD: /bin/iptables -t mangle -F portmapping_rt_tbl 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -t mangle -X portmapping_rt_tbl 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -t mangle -D FORWARD -j portmapping_rt_tbl 
Start udhcpd server!
udhcp server/relay (v0.9.8) started
ip6tables v1.4.18: Couldn't load target `portmapping_rt_tbl':No such file or directory

Try `ip6tables -h' or 'ip6tables --help' for more information.
   CMD: /bin/ip6tables -t mangle -F portmapping_rt_tbl 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -t mangle -X portmapping_rt_tbl 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ebtables -F portmapping_nas0_0_in 
Chain 'portmapping_nas0_0_in' doesn't exist.
   CMD: /bin/ebtables -X portmapping_nas0_0_in 
Chain 'portmapping_nas0_0_in' doesn't exist.
   CMD: /bin/ebtables -F portmapping_nas0_0_out 
Chain 'portmapping_nas0_0_out' doesn't exist.
   CMD: /bin/ebtables -X portmapping_nas0_0_out 
Chain 'portmapping_nas0_0_out' doesn't exist.
   CMD: /bin/iptables -t mangle -A portmapping_rt_tbl -i nas0_0 -j MARK --set-mark 0x0/0x0 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -t mangle -A portmapping_rt_tbl -i nas0_0 -j MARK --set-mark 0x0/0x0 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ebtables -N portmapping_input 
   CMD: /bin/ebtables -P portmapping_input RETURN 
   CMD: /bin/ebtables -A INPUT -j portmapping_input 
   CMD: /bin/ebtables -N portmapping_output 
   CMD: /bin/ebtables -P portmapping_output RETURN 
   CMD: /bin/ebtables -A OUTPUT -j portmapping_output 

cwmp_flag=30
<main.c>Set No Debug Message!
   CMD: /bin/ebtables -N portmapping_service 
   CMD: /bin/ebtables -P portmapping_service RETURN 
   CMD: /bin/ebtables -A portmapping_service -p ipv4 --ip-proto udp --ip-dport 67:68 -j DROP 
   CMD: /bin/ebtables -A portmapping_service -p ipv4 --ip-proto 2 -j DROP 
Run Server function only

dhcpd server read configfile:poolname=default
unable to parse 'opt tzstring '
Listening on Socket/br0
Sending on   Socket/br0
   CMD: /bin/ebtables -A portmapping_service -d multicast -p ipv4 --ip-proto ! icmp -j DROP 
<cwmp_utility.c>Set No Debug Message[1]
<main.c>Set Delay!
<cwmp_utility.c>Set Delay[28]
<cwmp_utility.c>Set gPrintSoap[0]
<cwmp_utility.c>Set gRandomInform[0]
<cwmp_utility.c>Set gLibUseIpv6[1]

enter cwmp_main!
Start cwmp_main() !
========== CWMP library ==========
94ec990
Tue Mar 23 22:28:11 2021 +0800
[cwmp] add additional delay up time (20 sec.) if current CWMP WAN is default route
Build time: 20210611_16:23:39 
==================================
<port_update_CWMP_diagnose_status:4386> diagnose_type = 1, status_code = 0
   CMD: /bin/ebtables -A portmapping_service -p ipv6 --ip6-proto udp --ip6-dport 546:547 -j DROP 
   CMD: /bin/ebtables -A portmapping_service -p ipv6 --ip6-proto ipv6-icmp --ip6-icmp-type 130:134 -j DROP 
   CMD: /bin/ebtables -A portmapping_service -d multicast -p ipv6 --ip6-proto ! ipv6-icmp -j DROP 
   CMD: /bin/ebtables -N portmapping 
   CMD: /bin/ebtables -P portmapping RETURN 
   CMD: /bin/ebtables -A FORWARD -j portmapping 
   CMD: /bin/ebtables -t broute -N portmapping_broute 
   CMD: /bin/ebtables -t broute -P portmapping_broute RETURN 
   CMD: /bin/ebtables -t broute -I BROUTING -j portmapping_broute 
   CMD: /bin/iptables -t mangle -N portmapping_rt_tbl 
   CMD: /bin/iptables -t mangle -A FORWARD -j portmapping_rt_tbl 
   CMD: /bin/ip6tables -t mangle -N portmapping_rt_tbl 
   CMD: /bin/ip6tables -t mangle -A FORWARD -j portmapping_rt_tbl 
   CMD: /bin/ebtables -F portmapping_nas0_0_in 
Chain 'portmapping_nas0_0_in' doesn't exist.
   CMD: /bin/ebtables -X portmapping_nas0_0_in 
Chain 'portmapping_nas0_0_in' doesn't exist.
   CMD: /bin/ebtables -F portmapping_nas0_0_out 
Chain 'portmapping_nas0_0_out' doesn't exist.
   CMD: /bin/ebtables -X portmapping_nas0_0_out 
Chain 'portmapping_nas0_0_out' doesn't exist.
   CMD: /bin/ebtables -N portmapping_nas0_0_in 
   CMD: /bin/ebtables -P portmapping_nas0_0_in DROP 
   CMD: /bin/ebtables -N portmapping_[   26.970826] internal priority 3 nas0_0_out 
   mapping to wifi queue 1
CMD: /bin/ebtables -P portmapping_nas0_0_out DROP 
   CMD: /bin/ebtables -F portmapping_nas0_0_[   26.985502] internal priority 3 in 
   CMD: /bimapping to wifi queue 1
n/ebtables -X portmapping_nas0_0_in 
   CMD: /bin/ebtables -F portmapping_nas0_0_out 
   CMD: [   27.000928] internal priority 3 /bin/ebtables -Xmapping to wifi queue 1
 portmapping_nas0_0_out 
   CMD: /bin/iptables -t mangle -A portmapping_rt_tbl -i nas0_0 -j MAR[   27.016792] internal priority 2 K --set-mark 0x2mapping to wifi queue 1
000/0x3e000 
   CMD: /bin/ip6tables -t mangle -A portmapping_rt_tbl -i nas0_0 -j MARK --set-mar[   27.031927] internal priority 2 k 0x2000/0x3e000mapping to wifi queue 1

subr_qos_3.c: setupIPQ  6093
[setupLanItfMap:700] lan_itf_map.map[1].name:eth0.2
[setupLanI[   27.047642] internal priority 2 tfMap:700] lan_imapping to wifi queue 1
tf_map.map[2].name:eth0.3
[setupLanItfMap:700] lan_itf_map.map[3].name:eth0.4
[setupLanItfMap:[   27.063515] internal priority 1 700] lan_itf_mapmapping to wifi queue 1
.map[4].name:eth0.5
[setupLanItfMap:712] lan_itf_map.map[5].name:wlan0
subr_qos_3.c: setupDefa[   27.078344] internal priority 1 ultQdisc  5924
mapping to wifi queue 1
   CMD: tc qdisc add dev nas0_0 root handle 1: prio
<subr_qos_3.c 6215 setupIPQ> C[   27.093863] internal priority 1 onfig QoS total mapping to wifi queue 1
upstream 2097144 Kbps downstream 1024000 Kbps
<fc_api.c 3627 rtk_fc_total_upstream_ba[   27.109675] internal priority 0 ndwidth_set> mapping to wifi queue 1
bandwidth=2097144
<fc_api.c 3655 rtk_fc_total_downstream_bandwidth_set> bandwidth=[   27.124693] internal priority 0 1024000
system(mapping to wifi queue 1
): /bin/echo 3 1 > /proc/rtl8686gmac/wifi_tx_qos_mapping
system(): /bin/echo 3 1 > /proc/rtl868[   27.140256] internal priority 0 6gmac1/wifi_tx_qmapping to wifi queue 1
os_mapping
system(): /bin/echo 3 1 > /proc/rtl8686gmac2/wifi_tx_qos_mapping
system(): /bin/echo 2 1 > /proc/rtl8686gmac/wifi_tx_qos_mapping
system(): /bin/echo 2 1 > /proc/rtl8686gmac1/wifi_tx_qos_mapping
system(): /bin/echo 2 1 > /proc/rtl8686gmac2/wifi_tx_qos_mapping
system(): /bin/echo 1 1 > /proc/rtl8686gmac/wifi_tx_qos_mapping
system(): /bin/echo 1 1 > /proc/rtl8686gmac1/wifi_tx_qos_mapping
system(): /bin/echo 1 1 > /proc/rtl8686gmac2/wifi_tx_qos_mapping
system(): /bin/echo 0 1 > /proc/rtl8686gmac/wifi_tx_qos_mapping
system(): /bin/echo 0 1 > /proc/rtl8686gmac1/wifi_tx_qos_mapping
system(): /bin/echo 0 1 > /proc/rtl8686gmac2/wifi_tx_qos_mapping
mib_info_id: get mib info id failed! (id=466)
   CMD: /bin/iptable[   27.212218] 0
s -t mangle -D POSTROUTING -p tcp --tcp-flags ALL ACK -m length --length 40:84 -m conntrack --ctstate ESTABLISHED -j TCP_SMALLACK_PROTECT 
iptables v1.4.18: Couldn't load target `TCP_SMALLACK_PROTECT':No such file or directory

Try `iptables -h' or 'iptables --help' fo[   27.236721] 0
r more information.
   CMD: /bin/iptables -t mangle -F TCP_SMALLACK_PROTECT 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -t mangle -X TCP_SMALLACK_PROTECT 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -t mangle -D POSTROUTING -p tcp --tcp-flags ALL ACK -m length --length 60:104 -m conntrack --ctstate ESTABLISHED -j TCP_SMALLACK_PROTECT 
ip6tables v1.4.18: Couldn't load target `TCP_SMALLACK_PROTECT':No such file or directory

Try `ip6tables -h' or 'ip6tables --help' for more information.
   CMD: /bin/ip6tables -t mangle -F TCP_SMALLACK_PROTECT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -t mangle -X TCP_SMALLACK_PROTECT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/sh -c echo 0x0 > /proc/fc/ctrl/flow_swFwded_aclTrapPri_mask 
   CMD: /bin/upnpctrl down ppp0 br0 
upnpctrl(down): MINIUPNPD did not start!
   CMD: /bin/iptables -F MINIUPNPD 
iptables: No chain/target/match by that name.
restartLanV6Server - 2708
setup_radvd_conf_br0: Get prefix information failed.
get_ra_info Open file /var/rainfo_ fail !
get_ra_info Open file /var/rainfo_ fail !
   CMD: /bin/sysconf send_unix_sock_message /var/run/systemd.usock do_ipv6_radvd 
Update Firewall rule set by user.
   CMD: /bin/ip6tables -F ipv6filter 
   CMD: /bin/ip6tables -A ipv6filter -m state --state ESTABLISHED,RELATED -j RETURN 
   CMD: /bin/ethctl conntrack killall 
   CMD: /bin/ip6tables -A ipv6filter -m state --state ESTABLISHED,RELATED -j RETURN 
Setup default Firewall rule.
   CMD: /bin/ip6tables -A ipv6filter ! -i br+ -j DROP 
[   27.559673] unknown cmd(21)
restartLanV6Server - 2708
setup_radvd_conf_br0: Get prefix information failed.
get_ra_info Open file /var/rainfo_ fail !
get_ra_info Open file /var/rainfo_ fail !
   CMD: /bin/sysconf send_unix_sock_message /var/run/systemd.usock do_ipv6_radvd 
Update Firewall rule set by user.
   CMD: /bin/ip6tables -F ipv6filter 
   CMD: /bin/ip6tables -A ipv6filter -m state --state ESTABLISHED,RELATED -j RETURN 
   CMD: /bin/ethctl conntrack killall 
   CMD: /bin/ip6tables -A ipv6filter -m state --state ESTABLISHED,RELATED -j RETURN 
Setup default Firewall rule.
   CMD: /bin/ip6tables -A ipv6filter ! -i br+ -j DROP 
[   28.220592] unknown cmd(21)
2 cpu
Open file /var/run/dhcpcV6.leases.nas0_0 fail !
Send alarm notif[   29.340511] [SMUX] eth0.5.0 carrier on !!!
y fail: EthUni, 0x101
[   29.348594] br0: port 4(eth0.5.0) entered forwarding state
[   29.354722] br0: port 4(eth0.5.0) entered forwarding state
[   30.352919] br0: port 4(eth0.5.0) entered forwarding state
cfg_mib_update_fn:297 delay mib commit

starting pid 640, tty '/dev/ttyS0': '-/bin/sh'
# 
# 
# 
# cat proc/meminfo 
MemTotal:          86340 kB
MemFree:            5240 kB
MemAvailable:      36516 kB
Buffers:            8036 kB
Cached:            33680 kB
SwapCached:            0 kB
Active:            24588 kB
Inactive:          24520 kB
Active(anon):       7800 kB
Inactive(anon):       20 kB
Active(file):      16788 kB
Inactive(file):    24500 kB
Unevictable:         332 kB
Mlocked:               0 kB
HighTotal:             0 kB
HighFree:              0 kB
LowTotal:          86340 kB
LowFree:            5240 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 4 kB
Writeback:          2452 kB
AnonPages:          7788 kB
Mapped:             8860 kB
Shmem:                32 kB
Slab:              26580 kB
SReclaimable:       2756 kB
SUnreclaim:        23824 kB
KernelStack:        1504 kB
PageTables:          524 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:       43168 kB
Committed_AS:     124136 kB
VmallocTotal:    1040376 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
# cat proc/meminfo 
MemTotal:          86340 kB
MemFree:            5340 kB
MemAvailable:      36884 kB
Buffers:            8036 kB
Cached:            34316 kB
SwapCached:            0 kB
Active:            24616 kB
Inactive:          25100 kB
Active(anon):       7804 kB
Inactive(anon):       20 kB
Active(file):      16812 kB
Inactive(file):    25080 kB
Unevictable:         332 kB
Mlocked:               0 kB
HighTotal:             0 kB
HighFree:              0 kB
LowTotal:          86340 kB
LowFree:            5340 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 4 kB
Writeback:             0 kB
AnonPages:          7792 kB
Mapped:             8820 kB
Shmem:                32 kB
Slab:              25840 kB
SReclaimable:       2084 kB
SUnreclaim:        23756 kB
KernelStack:        1504 kB
PageTables:          496 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:       43168 kB
Committed_AS:     124116 kB
VmallocTotal:    1040376 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
# cat proc/meminfo 
MemTotal:          86340 kB
MemFree:            5856 kB
MemAvailable:      37016 kB
Buffers:            8036 kB
Cached:            33900 kB
SwapCached:            0 kB
Active:            24596 kB
Inactive:          24752 kB
Active(anon):       7784 kB
Inactive(anon):       20 kB
Active(file):      16812 kB
Inactive(file):    24732 kB
Unevictable:         332 kB
Mlocked:               0 kB
HighTotal:             0 kB
HighFree:              0 kB
LowTotal:          86340 kB
LowFree:            5856 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 0 kB
Writeback:             0 kB
AnonPages:          7792 kB
Mapped:             8816 kB
Shmem:                32 kB
Slab:              25700 kB
SReclaimable:       2012 kB
SUnreclaim:        23688 kB
KernelStack:        1504 kB
PageTables:          496 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:       43168 kB
Committed_AS:     123972 kB
VmallocTotal:    1040376 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
# STA's Registration timeout, abort registration!
# cat proc/meminfo 
MemTotal:          86340 kB
MemFree:            4256 kB
MemAvailable:      35364 kB
Buffers:            8052 kB
Cached:            32516 kB
SwapCached:            0 kB
Active:            24564 kB
Inactive:          23448 kB
Active(anon):       7808 kB
Inactive(anon):       20 kB
Active(file):      16756 kB
Inactive(file):    23428 kB
Unevictable:         332 kB
Mlocked:               0 kB
HighTotal:             0 kB
HighFree:              0 kB
LowTotal:          86340 kB
LowFree:            4256 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:              5112 kB
Writeback:         18040 kB
AnonPages:          7816 kB
Mapped:             8732 kB
Shmem:                32 kB
Slab:              28684 kB
SReclaimable:       4632 kB
SUnreclaim:        24052 kB
KernelStack:        1504 kB
PageTables:          496 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:       43168 kB
Committed_AS:     124116 kB
VmallocTotal:    1040376 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
# cat proc/meminfo 
MemTotal:          86340 kB
MemFree:            5184 kB
MemAvailable:      35816 kB
Buffers:            8060 kB
Cached:            32476 kB
SwapCached:            0 kB
Active:            24640 kB
Inactive:          23312 kB
Active(anon):       7808 kB
Inactive(anon):       20 kB
Active(file):      16832 kB
Inactive(file):    23292 kB
Unevictable:         332 kB
Mlocked:               0 kB
HighTotal:             0 kB
HighFree:              0 kB
LowTotal:          86340 kB
LowFree:            5184 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 4 kB
Writeback:         13688 kB
AnonPages:          7796 kB
Mapped:             8844 kB
Shmem:                32 kB
Slab:              27668 kB
SReclaimable:       3796 kB
SUnreclaim:        23872 kB
KernelStack:        1504 kB
PageTables:          496 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:       43168 kB
Committed_AS:     123972 kB
VmallocTotal:    1040376 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
# cat proc/meminfo 
MemTotal:          86340 kB
MemFree:            5436 kB
MemAvailable:      36580 kB
Buffers:            8060 kB
Cached:            33620 kB
SwapCached:            0 kB
Active:            25064 kB
Inactive:          23988 kB
Active(anon):       7808 kB
Inactive(anon):       20 kB
Active(file):      17256 kB
Inactive(file):    23968 kB
Unevictable:         332 kB
Mlocked:               0 kB
HighTotal:             0 kB
HighFree:              0 kB
LowTotal:          86340 kB
LowFree:            5436 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 0 kB
Writeback:          4460 kB
AnonPages:          7796 kB
Mapped:             8816 kB
Shmem:                32 kB
Slab:              26436 kB
SReclaimable:       2620 kB
SUnreclaim:        23816 kB
KernelStack:        1504 kB
PageTables:          496 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:       43168 kB
Committed_AS:     123960 kB
VmallocTotal:    1040376 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
# cat proc/meminfo 
MemTotal:          86340 kB
MemFree:            6032 kB
MemAvailable:      36792 kB
Buffers:            8060 kB
Cached:            33560 kB
SwapCached:            0 kB
Active:            26444 kB
Inactive:          22544 kB
Active(anon):       7788 kB
Inactive(anon):       20 kB
Active(file):      18656 kB
Inactive(file):    22524 kB
Unevictable:         332 kB
Mlocked:               0 kB
HighTotal:             0 kB
HighFree:              0 kB
LowTotal:          86340 kB
LowFree:            6032 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 0 kB
Writeback:             0 kB
AnonPages:          7816 kB
Mapped:             8900 kB
Shmem:                32 kB
Slab:              25780 kB
SReclaimable:       1940 kB
SUnreclaim:        23840 kB
KernelStack:        1504 kB
PageTables:          496 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:       43168 kB
Committed_AS:     123960 kB
VmallocTotal:    1040376 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
# cat proc/meminfo 
MemTotal:          86340 kB
MemFree:            6200 kB
MemAvailable:      36944 kB
Buffers:            8060 kB
Cached:            33480 kB
SwapCached:            0 kB
Active:            26424 kB
Inactive:          22532 kB
Active(anon):       7768 kB
Inactive(anon):       20 kB
Active(file):      18656 kB
Inactive(file):    22512 kB
Unevictable:         332 kB
Mlocked:               0 kB
HighTotal:             0 kB
HighFree:              0 kB
LowTotal:          86340 kB
LowFree:            6200 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 0 kB
Writeback:             0 kB
AnonPages:          7796 kB
Mapped:             8872 kB
Shmem:                32 kB
Slab:              25776 kB
SReclaimable:       1936 kB
SUnreclaim:        23840 kB
KernelStack:        1504 kB
PageTables:          496 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:       43168 kB
Committed_AS:     123960 kB
VmallocTotal:    1040376 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
# [  177.316518] smbd invoked oom-killer: gfp_mask=0x34200ca, order=0, oom_score_adj=0
[  177.324740] smbd cpuset=/ mems_allowed=0
[  177.329043] CPU: 1 PID: 1694 Comm: smbd Tainted: G           O    4.4.140 #28
[  177.336847] Stack : 00000000 00000000 81156baa 00000041 00000000 00000000 00000009 00000006
          809f4b70 80adc807 85613bcc 0000069e 00000001 811537cc 00000586 85612c88
          80adca84 8007abc0 00000000 8007a754 81170000 00000000 809f9690 8461fa34
          00000041 800bd084 00000586 85612c88 00000002 8115e708 8461fa34 809f4b70
          00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
          ...
[  177.375632] Call Trace:
[  177.378323] [<8001aa50>] show_stack+0x8c/0xa8
[  177.383108] [<8027b4e0>] dump_stack+0x90/0xd0
[  177.387886] [<8010b350>] dump_header.isra.7+0x70/0x1c0
[  177.393511] [<800c2724>] oom_kill_process+0x2ec/0x4fc
[  177.399040] [<800c2ce8>] out_of_memory+0x32c/0x380
[  177.404301] [<800c7d34>] __alloc_pages_nodemask+0x8d4/0x96c
[  177.410393] [<800be4d0>] pagecache_get_page+0xd4/0x2c0
[  177.416010] [<800bf150>] grab_cache_page_write_begin+0x28/0x48
[  177.422388] [<8014a894>] block_write_begin+0x30/0xa4
[  177.427825] [<8014abc4>] cont_write_begin+0x2bc/0x438
[  177.433357] [<8019494c>] fat_write_begin+0x64/0xbc
[  177.438596] [<800bf3c8>] generic_perform_write+0x168/0x264
[  177.444594] [<800c0278>] __generic_file_write_iter+0x1f0/0x25c
[  177.450983] [<800c040c>] generic_file_write_iter+0x128/0x2e4
[  177.457181] [<8010f498>] __vfs_write+0xc0/0x110
[  177.462129] [<8010fe7c>] vfs_write+0xa0/0x18c
[  177.466893] [<801108a4>] SyS_write+0x58/0xe8
[  177.471572] [<800201b8>] syscall_common+0x30/0x54
[  177.476713] 
[  177.478355] Mem-Info:
[  177.480846] active_anon:1942 inactive_anon:5 isolated_anon:0
[  177.480846]  active_file:4309 inactive_file:5716 isolated_file:32
[  177.480846]  unevictable:83 dirty:4153 writeback:1380 unstable:0
[  177.480846]  slab_reclaimable:1150 slab_unreclaimable:6086
[  177.480846]  mapped:2169 shmem:8 pagetables:124 bounce:0
[  177.480846]  free:1022 free_pcp:2 free_cma:0
[  177.516761] Normal free:4088kB min:4096kB low:5120kB high:6144kB active_anon:7768kB inactive_anon:20kB active_file:17236kB inactive_file:22864kB unevictable:332kB isolated(anon):0kB isolated(file):128kB present:117760kB managed:86340kB mlocked:0kB dirty:16612kB writeback:5520kB mapped:8676kB shmem:32kB slab_reclaimable:4600kB slab_unreclaimable:24344kB kernel_stack:1504kB pagetables:496kB unstable:0kB bounce:0kB free_pcp:8kB local_pcp:8kB free_cma:0kB writeback_tmp:0kB pages_scanned:241420 all_unreclaimable? yes
[  177.566436] lowmem_reserve[]: 0 0 0
[  177.570255] Normal: 79*4kB (UME) 6*8kB (UM) 2*16kB (UM) 4*32kB (UM) 6*64kB (M) 17*128kB (UME) 4*256kB (UM) 0*512kB 0*1024kB 0*2048kB 0*4096kB = 4108kB
[  177.585021] 10154 total pagecache pages
[  177.589214] 0 pages in swap cache
[  177.592834] Swap cache stats: add 0, delete 0, find 0/0
[  177.598549] Free swap  = 0kB
[  177.601688] Total swap = 0kB
[  177.604843] 29440 pages RAM
[  177.607890] 0 pages HighMem/MovableOnly
[  177.612082] 7855 pages reserved
[  177.615519] [ pid ]   uid  tgid total_vm      rss nr_ptes nr_pmds swapents oom_score_adj name
[  177.624879] [  124]     0   124     1886      593       5       0        0             0 configd
[  177.634515] [  267]     0   267     1343      500       5       0        0             0 tr142_app
[  177.644383] [  334]     0   334    19399     1442      15       0        0             0 omci_app
[  177.654162] [  336]     0   336      988      376       4       0        0             0 pondetect
[  177.664033] [  371]     0   371     5756      537       6       0        0             0 systemd
[  177.673714] [  373]     0   373     1297      473       4       0        0             0 ramonitor
[  177.683551] [  640]     0   640      615      243       4       0        0             0 sh
[  177.692698] [  641]     0   641      528      229       4       0        0             0 inetd
[  177.702145] [  720]     0   720     1413      475       4       0        0             0 spppd
[  177.711585] [  746]     0   746     2400      827       5       0        0             0 boa
[  177.720874] [  751]     0   751      492      194       3       0        0             0 voip_gwdt
[  177.730702] [  753]     0   753      603      250       4       0        0             0 arp_monitor
[  177.740721] [  773]     0   773     1330      416       4       0        0             0 dnsmasq
[  177.750360] [  912]     0   912     3135      412       5       0        0             0 VoIP_maserati
[  177.760569] [ 1503]     0  1503     1392      540       4       0        0             0 wscd
[  177.769936] [ 1511]     0  1511      499      180       3       0        0             0 iwcontrol
[  177.779777] [ 1513]     0  1513      500      225       3       0        0             0 mini_upnpd
[  177.789706] [ 1522]     0  1522     8680      638       8       0        0             0 cwmpClient
[  177.799626] [ 1524]     0  1524     1343      521       5       0        0             0 udhcpd
[  177.809165] [ 1665]     0  1665     2684      627       6       0        0             0 nmbd
[  177.818518] [ 1666]     0  1666     2764      738       6       0        0             0 smbd
[  177.827870] [ 1684]     0  1684      515      241       4       0        0             0 radvd
[  177.837322] [ 1685]     0  1685      515      176       4       0        0             0 radvd
[  177.846766] [ 1694]     0  1694     2820      790       6       0        0             0 smbd
[  177.856110] Out of memory: Kill process 334 (omci_app) score 65 or sacrifice child
[  177.864472] Killed process 334 (omci_app) total-vm:77596kB, anon-rss:2216kB, file-rss:3552kB
Edit
Pub: 11 Jun 2021 08:43 UTC
Views: 150