-
Notifications
You must be signed in to change notification settings - Fork 18
/
boot.log
1921 lines (1794 loc) · 83.3 KB
/
boot.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Booting...
init_ram
00000202 M init ddr ok
DRAM Type: DDR2
DRAM frequency: 533MHz
DRAM Size: 128MB
JEDEC id 684017, EXT id 0x6840
found BH25Q64
flash vendor: BOHONG
BH25Q64, size=8MB, erasesize=64KB, max_speed_hz=55000000Hz
auto_mode=0 addr_width=3 erase_opcode=0x000000d8
=>CPU Wake-up interrupt happen! GISR=89000004
---Realtek RTL8197F boot code at 2018.04.20-10:17+0800 v3.4.11B.9 (999MHz)
Mac addr:04-95-e6-1a-96-e0
lan_wan_isolation Initing...
config: lan port mask is 0x000000f7
config: wan port mask is 0x000000e8
lan_wan_isolation Initing has been completed.
lan_wan_isolation Initing...
config: lan port mask is 0x000000f7
config: wan port mask is 0x000000e8
lan_wan_isolation Initing has been completed.
wait for upgrage
port[0] link:down
port[1] link:down
port[2] link:down
port[3] link:down
port[4] link:down
irq:0x00008080
Jump to image start=0x80a00000...
decompressing kernel:
Uncompressing Linux... done, booting the kernel.
done decompressing kernel.
start address: 0x80466860
Linux version 3.10.90 (root@linux-bkb8) (gcc version 4.4.7 (Realtek MSDK-4.4.7 Build 2001) ) #4 Mon Jul 2 10:57:35 CST 2018
CPU revision is: 00019385 (MIPS 24Kc)
Determined physical RAM map:
memory: 08000000 @ 00000000 (usable)
Zone ranges:
Normal [mem 0x00000000-0x07ffffff]
Movable zone start for each node
Early memory node ranges
node 0: [mem 0x00000000-0x07ffffff]
Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
Built 1 zonelists in Zone order, mobility grouping on. Total pages: 8176
Kernel command line: console=ttyS0,115200
PID hash table entries: 512 (order: -3, 2048 bytes)
Dentry cache hash table entries: 16384 (order: 2, 65536 bytes)
Inode-cache hash table entries: 8192 (order: 1, 32768 bytes)
Writing ErrCtl register=00029693
Readback ErrCtl register=00029693
Memory: 103744k/131072k available (4526k kernel code, 27328k reserved, 2031k data, 224k init, 0k highmem)
SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
NR_IRQS:192
Realtek GPIO IRQ init
Calibrating delay loop... 666.41 BogoMIPS (lpj=3332096)
pid_max: default: 32768 minimum: 301
Mount-cache hash table entries: 2048
NET: Registered protocol family 16
<<<<<Register PCI Controller>>>>>
Do MDIO_RESET
40MHz
Find PCIE Port, Device:Vender ID=b82210ec
Realtek GPIO controller driver init
INFO: registering sheipa spi device
bio: create slab <bio-0> at 0
INFO: sheipa spi driver register
INFO: sheipa spi probe
***spi max freq:100000000
Switching to clocksource MIPS
NET: Registered protocol family 2
TCP established hash table entries: 2048 (order: 0, 16384 bytes)
TCP bind hash table entries: 2048 (order: -1, 8192 bytes)
TCP: Hash tables configured (established 2048 bind 2048)
TCP: reno registered
UDP hash table entries: 1024 (order: 0, 16384 bytes)
UDP-Lite hash table entries: 1024 (order: 0, 16384 bytes)
NET: Registered protocol family 1
squashfs: version 4.0 (2009/01/31) Phillip Lougher
jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
msgmni has been set to 202
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
io scheduler noop registered (default)
Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
serial8250: ttyS0 at MMIO 0x18147000 (irq = 17) is a 16550A
console [ttyS0] enabled
Realtek GPIO to I2C Driver Init...
mfi_ioctl_init:565,dev=253,MINOR=0
loop: module loaded
m25p80 spi0.0: change speed to 15000000Hz, div 7
JEDEC id 684017
m25p80 spi0.0: found BH25Q64, expected m25p80
flash vendor: BOHONG
m25p80 spi0.0: BH25Q64 (8192 Kbytes) (55000000 Hz)
m25p80 spi0.0: change speed to 55000000Hz, div 2
Kernel code size:0x1f8012
9 rtkxxpart partitions found on MTD device m25p80
Creating 9 MTD partitions on "m25p80":
0x000000000000-0x000000800000 : "ALL"
0x000000000000-0x000000020000 : "Bootloader"
0x000000020000-0x000000030000 : "CFG"
0x000000030000-0x0000005c0000 : "KernelFS"
0x000000228012-0x0000005c0000 : "RootFS"
0x0000005c0000-0x0000005d0000 : "CFM"
0x0000005d0000-0x0000005e0000 : "CFM_BACKUP"
0x0000005e0000-0x0000007f0000 : "LOG"
0x0000007f0000-0x000000800000 : "ENV"
PPP generic driver version 2.4.2
PPP MPPE Compression module registered
NET: Registered protocol family 24
PPTP driver version 0.8.5
Realtek WLAN driver - version 1.7 (2015-10-30)(SVN:exported)
Adaptivity function - version 9.3.4
Do MDIO_RESET
40MHz
Find PCIE Port, Device:Vender ID=b82210ec
found 8822B !!!
halmac_check_platform_api ==========>
12089M
HALMAC_MAJOR_VER = 0
HALMAC_PROTOTYPE_VER = 0
HALMAC_MINOR_VER = 0
halmac_init_adapter_88xx ==========>
halmac_init_adapter Succss
IS_RTL8822B_SERIES value8 = a
MACHAL_version_init
#######################################################
SKB_BUF_SIZE=8432 MAX_SKB_NUM=1024
#######################################################
MACHAL_version_init
RFE TYPE =5
#######################################################
SKB_BUF_SIZE=3032 MAX_SKB_NUM=400
#######################################################
RFE TYPE =5
RFE TYPE =5
RFE TYPE =5
RFE TYPE =5
--- link_loop_init ---
mesh_extend_init over...
--- hybrid_steering_init ---
u32 classifier
nf_conntrack version 0.5.0 (1621 buckets, 6484 max)
[BM CORE ][init_online_ip ,1053] INFO: online ip data hash table created, size = 199
[BM CORE ][init_online_ip_procfs,647 ] INFO: online_ip proc file created
ipip: IPv4 over IPv4 tunneling driver
gre: GRE over IPv4 demultiplexor driver
ip_gre: GRE over IPv4 tunneling driver
ip_tables: (C) 2000-2006 Netfilter Core Team
TCP: cubic registered
NET: Registered protocol family 17
l2tp_core: L2TP core driver, V2.0
l2tp_ppp: PPPoL2TP kernel driver, V2.0
8021q: 802.1Q VLAN Support v1.8
Realtek FastPath:v1.03
Probing RTL819X NIC-kenel stack size order[0]...
link_send_msg_timer_func:lan_dev = NULL
[Rtl83xx Ethernet Driver][RTL83XX_vlan_set][901]: failed!(0x3)
eth0 added. vid=9 Member port 0x2...
eth1 added. vid=8 Member port 0x8...
[peth0] added, mapping to [eth1]...
VFS: Mounted root (squashfs filesystem) readonly on device 31:4.
Freeing unused kernel memory: 224K (80668000 - 806a0000)
mkdir: can't create directory '/var/run': File exists
[BM CORE ][bm_init ,857 ] INFO: bm_init success
[BM CORE ][bm_u2k_info_init,1149] INFO: bm_u2k_info_init success
[MAC FILTER ][mf_init ,683 ] INFO: bm_mac_filter init success
*TBQ* tbq_token_ctrl size: 40
*TBQ* tbq_user size: 68
*TBQ* tbq_user_sched size: 2192
*TBQ* tbq_bucket size: 56
*TBQ* tbq_bucket_sched size: 1796
*TBQ* tbq_flow_track size: 228
*TBQ* tbq_user_track size: 4412
*TBQ* tbq_backlog size: 24
*TBQ* tbq_flow_backlog size: 36
*TBQ* nos_flow_track size: 12
*TBQ* nos_user_track size: 28
*TBQ* nf_conn size: 624
*TBQ* sk_buff size: 232
*TBQ* TBQ_BACKLOG_PACKETS_MAX: 1000000
*TBQ* TBQ_LATENCY_SHIFT_MAX: 10
*TBQ* TBQ_DISABLE_TIMEOUT_MAX: 60
*TBQ* HZ: 100
*TBQ* init_user_tbq_hash_table ok
*TBQ* nos_tbq_init() OK
Give root password for system maintenance
(or type Control-D for normal startup):argv[0] = cfmd
cfmd
cfms_apmib_init:line(475)
Read hw setting header failed!
flash_mib_compress_write DEFAULT_SETTING DONE, __[flash.c-6988]
flash_mib_compress_write CURRENT_SETTING DONE, __[flash.c-7057]
DEFAULT_SETTING hecksum_ok
CURRENT_SETTING hecksum_ok
__[flash.c-7211]setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
setMIB end...
argv[0] = timer
timer
argv[0] = logserver
logserver
argv[0] = netctrl
netctrl
prod_change_root_passwd(83)
link_send_msg_timer_func:lan_dev = NULL
insmod: can't insert '/lib/modules/phy_check.ko': File exists
/bin/sh: can't create /proc/sw_nat: Permission denied
src/common_hal.c hal_init_bridge
device eth0 entered promiscuous mode
br0: port 1(eth0) entered listening state
br0: port 1(eth0) entered listening state
netctrl_main.c,netctrl_init_vlan_ports,1207,: Set br0 to 04:95:e6:1a:96:e0.
Sun May 1 00:00:00 UTC 2011
argv[0] = device_list
device_list
argv[0] = tendaupload
tendaupload
argv[0] = sh
argv[1] = /usr/bin/mesh_op.sh
sh
######## STARTING PROGRAM #########
######## RECEIVING DATA #########
RTNETLINK answers: Operation not supported
check timer start success
RTNETLINK answers: No such file or directory
[MAC FILTER ][mf_apply ,232 ] INFO: g_mac_filter_enable = disable, mf_default_action = accept
[MAC FILTER ][mf_apply ,232 ] INFO: g_mac_filter_enable = disable, mf_default_action = accept
Init gsbmac dev success.
The ARP attack defence is init v1 successful
Interface doesn't accept private ioctl...
td_ssid_hide (8BDC): Operation not permitted
Interface doesn't accept private ioctl...
td_ssid_hide (8BDC): Operation not permitted
open /dev/gsbmac failure.
open /dev/gsbmac failure.
br0: port 1(eth0) entered learning state
Kernel:Init attack fence dev success.
the ddos ip attack defnence init successful
SET_LAN_PARAM_DATA k_data:
lan ip:3232236801
lan mask:4294967040
lan submask:3232236800
lan interface:br0
lan http port:0
set the proceee ture
SET_IPOP_FENCE_ATTACK_DATA k_data:
ip options:32512
SET_BAD_PKT_FENCE_ATTACK_DATA k_data:
bad pkt:248
SET_DDOS_FENCE_ATTACK_DATA k_data:
status:7
tcp threshold:1500
udp threshold:1500
icmp threshold:1500
ready___djc___close____guest____wifi_close_guest(4617)
djc___close____guest____wifi_close_guest(4623)
config changed,CRC:old[3cbf4591],new[3d7bd411]
mib_nvram_cfm_commit 1608: write mibvalue success
write config to flash......ok
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
/bin/sh: wlanapp.sh: not found
device wlan1 entered promiscuous mode
WlanSupportAbility = 0x3
available channels[US]: 1 2 3 4 5 6 7 8 9 10 11
br0: topology change detected, propagating
br_topology_change_detection, clear br0 fdb ...
br_topology_change_detection, clear shortcut cache...
br0: port 1(eth0) entered forwarding state
MDID is null !!, set default MDID
[ODM_software_init]
[97F] Bonding Type 97FS, PKG1
[97F] RFE type 5 PHY paratemters: GPA1+GLNA1
clock 40MHz
load efuse ok
rom_progress: 0x200006f
rom_progress: 0x400006f
[GetHwReg88XX][PHY_REG_PG_8197Fmp_Type5] size
[GetHwReg88XX][PHY_REG_PG_8197Fmp_Type5]
[GetHwReg88XX][rtl8197Ffw]
[GetHwReg88XX][rtl8197Ffw size]
[97F] Default BB Swing=20
mesh_passphrase_update, before encrypt
65 39 66 66 34 64 32 66 62 65 37 38 30 30 36 30
mesh_passphrase_update, after encrypt
64 34 38 dd 13 2c 3b ad 7b d1 93 8e 8c a8 be 34
br0: port 2(wlan1) entered listening state
br0: port 2(wlan1) entered listening state
device wlan-msh entered promiscuous mode
br0: port 3(wlan-msh) entered listening state
br0: port 3(wlan-msh) entered listening state
wifi_config_service:4505
******************
sysconf wlanapp start wlan0 wlan1 wlan0-va0 wlan1-va0
***************
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
Init Wlan application...
FT Daemon v1.0 (Jul 2 2018 10:59:15)
Receive Pathsel daemon pid:1365
[ATM] atm_swq_en on
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
/bin/sh: wlanapp.sh: not found
!!! adjust 5G 2ndoffset for 8812 !!!
br0: port 2(wlan1) entered learning state
br0: port 3(wlan-msh) entered disabled state
device wlan0 entered promiscuous mode
WlanSupportAbility = 0x3
available channels[US]: 36 40 44 48 149 153 157 161 165
MDID is null !!, set default MDID
[hard_code_8822_mibs] +++
MAX_RX_BUF_LEN = 8000
[ODM_software_init]
clock 40MHz
InitPON OK!!!
load efuse ok
rom_progress: 0x200006f
rom_progress: 0x400006f
InitMAC Page0
Init Download FW OK
halmac_init_mac_cfg OK
halmac_cfg_rx_aggregation OK
halmac_init_mac_cfg OK
[GetHwReg88XX][size PHY_REG_PG_8822Bmp_Type6]
[GetHwReg88XX][PHY_REG_PG_8822Bmp_Type6]
RL6302_MAC_PHY_Parameter_v018_20140708
[set_8822_trx_regs] +++
********************************
8822 efuse content 0x3D7 = 0xf4
8822 efuse content 0x3D8 = 0xf5
********************************
mesh_passphrase_update, before encrypt
65 39 66 66 34 64 32 66 62 65 37 38 30 30 36 30
mesh_passphrase_update, after encrypt
64 34 38 dd 13 2c 3b ad 7b d1 93 8e 8c a8 be 34
br0: port 4(wlan0) entered listening state
br0: port 4(wlan0) entered listening state
br0: port 3(wlan-msh) entered listening state
br0: port 3(wlan-msh) entered listening state
wifi_config_service:4505
******************
sysconf wlanapp start wlan0 wlan1 wlan0-va0 wlan1-va0
***************
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
FT Daemon v1.0 (Jul 2 2018 10:59:15)
Init Wlan application...
Receive Pathsel daemon pid:1502
==Set ssid close
==Set ssid close
br0: topology change detected, propagating
br_topology_change_detection, clear br0 fdb ...
br_topology_change_detection, clear shortcut cache...
br0: port 2(wlan1) entered forwarding state
[ATM] atm_swq_en on
wifi_config_service:4505
******************
sysconf wlanapp start wlan0 wlan1 wlan0-va0 wlan1-va0
***************
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
FT Daemon v1.0 (Jul 2 2018 10:59:15)
Init Wlan application...
Receive Pathsel daemon pid:1538
/bin/sh: et: not found
/bin/sh: et: not found
/bin/sh: et: not found
/bin/sh: et: not found
hw_nat_config 113: #####################flags = 1
hw_nat_config 131: ##########enable = 1
hw_nat_config 152: set /proc/hw_nat to 0
cat /proc/hw_nat
0
steering_proc_band_steering_mode_write, local band steering mode Prefer-5GHz
check timer start success
argv[0] = pann
pann
argv[0] = gpio_ctrl
gpio_ctrl
argv[0] = mesh_status_check
mesh_status_check
argv[0] = network_check
network_check
User set flags:1
=== set mesh_local.registerd = registered(2)
br0: port 4(wlan0) entered learning state
Phy[0] down
Phy[1] down
Phy[2] down
Phy[3] down
Phy[4] down
br0: port 3(wlan-msh) entered learning state
[arainc][multiWAN is not exit]netctrl_phy_link_status_change(1381)
ifconfig: SIOCSIFFLAGS: Cannot assign requested address
[netctrl_lan_services_ctrl][354] dhcpcd_lan is already exit!
argv[0] = redis-server
argv[1] = /etc_ro/redis.conf
redis-server
argv[0] = cmdsrv
argv[1] = -l
argv[2] = tcp://0.0.0.0:12598
argv[3] = -R
argv[4] = tcp://127.0.0.1:6379
cmdsrv
argv[0] = confsrv
confsrv
[get_ip_sg][313]ip : 192.168.11.1
[get_ip_sg][313]ip : 192.168.5.1
[1586] 01 May 00:00:11.607 * Max number of open files set to 10032
[1586] 01 May 00:00:11.608 # Warning: 32 bit instance detected but no memory limit set. Setting 3 GB maxmemory limit with 'noeviction' policy now.
iptables: Bad rule (does a matching rule exist in that chain?).
iptables: Bad rule (does a matching rule exist in that chain?).
[dhcps_handle][784]pCurrentCfg is NULL, NewCfgEnable = 1
_._
_.-``__ ''-._
_.-`` `. `_. ''-._ Redis 2.6.17 (00000000/0) 32 bit
.-`` .-```. ```\/ _.,_ ''-._
( ' , .-` | `, ) Running in stand alone mode
|`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
| `-._ `._ / _.-' | PID: 1586
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | http://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-'
[1586] 01 May 00:00:11.803 # Server started, Redis version 2.6.17
[1586] 01 May 00:00:11.803 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
[1586] 01 May 00:00:11.803 * The server is now ready to accept connections on port 6379
[1586] 01 May 00:00:11.803 * The server is now ready to accept connections at /tmp/redis.sock
Init features[arainc][mpp]mesh_device_features_init(2704)
[dhcps_save_config][641]dhcps_save_config end
argv[0] = dhcps
argv[1] = -C
argv[2] = /etc/dhcps.conf
argv[3] = -l
argv[4] = /etc/dhcps.leases
argv[5] = -x
argv[6] = /etc/dhcps.pid
argv[7] = -k
dhcps
br0: topology change detected, propagating
br_topology_change_detection, clear br0 fdb ...
br_topology_change_detection, clear shortcut cache...
br0: port 4(wlan0) entered forwarding state
br0: port 1(eth0) entered disabled state
Send SIGUSR2 signal from kernel to pathsel, skip for test by Jack
br0: topology change detected, propagating
br_topology_change_detection, clear br0 fdb ...
br_topology_change_detection, clear shortcut cache...
br0: port 3(wlan-msh) entered forwarding state
Phy[3] up
br0: port 1(eth0) entered listening state
br0: port 1(eth0) entered listening state
2011-05-01 00:00:12 [INFO ][uc_api_lib.c,2028][uc_api_lib_init ] Successfully initialized the api library...
sched_boot_set_cfg[62] rand_num :584
upgrade_shced_timeout start upgrade_sched_reboot_init_srv(2593)
[set_mib 3371]hex format
odm[set_mib 4037]set odm,val=0x1e
[set_mib 3371]hex format
odm[set_mib 4037]set odm,val=0x1e
iptables: No chain/target/match by that name.
iptables v1.4.4: Couldn't find target `dmz_forward_pre'
Try `iptables -h' or 'iptables --help' for more information.
iptables: No chain/target/match by that name.
iptables v1.4.4: Couldn't find target `dmz_forward_post'
Try `iptables -h' or 'iptables --help' for more information.
iptables: No chain/target/match by that name.
iptables: No chain/target/match by that name.
iptables: Index of insertion too big.
iptables: No chain/target/match by that name.
iptables: No chain/target/match by that name.
iptables v1.4.4: Couldn't find target `port_forward_pre'
Try `iptables -h' or 'iptables --help' for more information.
iptables v1.4.4: Couldn't find target `port_forward_post'
Try `iptables -h' or 'iptables --help' for more information.
iptables: No chain/target/match by that name.
iptables: No chain/target/match by that name.
iptables: No chain/target/match by that name.
iptables v1.4.4: Couldn't find target `web_wanadmin'
Try `iptables -h' or 'iptables --help' for more information.
iptables: No chain/target/match by that name.
[device_list_cmd_sub][1385][luminais] invalid param.
iptables: No chain/target/match by that name.
iptables v1.4.4: Couldn't find target `web_wanadmin'
Try `iptables -h' or 'iptables --help' for more information.
iptables: No chain/target/match by that name.
iptables: No chain/target/match by that name.
iptables v1.4.4: Couldn't find target `MINIUPNPD'
Try `iptables -h' or 'iptables --help' for more information.
iptables: No chain/target/match by that name.
miniupnpd.c,871,ver=1.0,osname=Nova,osver=1.0,osurl=http://www.tendacn.com/,manuft=Tenda,descri=Nova
br0: port 1(eth0) entered learning state
change_opmode: wan_prev_link_flag=1, lan_prev_link_flag=0
br0: port 1(eth0) entered disabled state
device eth0 left promiscuous mode
br0: port 1(eth0) entered disabled state
brctl: bridge br0: Invalid argument
set_hw_nat 158: set /proc/hw_nat to 1
/proc/hw_nat now is 1
[Rtl83xx Ethernet Driver][RTL83XX_vlan_set][901]: failed!(0x3)
RTNETLINK answers: No such file or directory
argv[0] = ucloud
argv[1] = -l
argv[2] = 4
ucloud
killall: telnet_ate_monitor: no process killed
Phy[3] down
2011-05-01 00:00:16 [INFO ][uc_api_lib.c,1938][ucloud_event_accept2 ] accept ucloud session 16
2011-05-01 00:00:16 [INFO ][uc_api_lib.c,1952][ucloud_event_accept2 ] traversal notify info
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_INFO_MESH_NODE_A[14] in module: M_CLOUD_INFO[8]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_INFO_DEV_UPLOAD_STATU[20] in module: M_CLOUD_INFO[8]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_INFO_DEV_UPLOAD_DEVIC[18] in module: M_CLOUD_INFO[8]...
2011-05-01 00:00:16 =Set ssid open
m[INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CL==Set ssid open
OUD_INFO_DEV_MARK_LIST_A[21] in module: M_CLOUD_INFO[8]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_INFO_DEV_CONFIG_TIME_[23] in module: M_CLOUD_INFO[8]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_INFO_DEV_CONFIG_A[25] in module: M_CLOUD_INFO[8]...
enable cloud info OK
init_device_attr_desc(2680)
get_mesh_info(2614)
get_mesh_info(2650)
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_INFO_MESH_SET[11] in module: M_CLOUD_INFO[8]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_INFO_CHECK_MEMORY[0] in module: M_CLOUD_INFO[8]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_INFO_BEGIN_UPGRADE[4] in module: M_CLOUD_INFO[8]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c,1955][ucloud_event_accept2 ] Init Modules
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: MESH_WAN_SET[1] in module: MESH_WAN[18]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: MESH_WAN_GET[2] in module: MESH_WAN[18]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WAN_DETECT[3] in module: M_MESH_WAN[18]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WAN_STATUS[0] in module: M_MESH_WAN[18]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WAN_DIAG[4] in module: M_MESH_WAN[18]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WAN_LINEUP_GET[7] in module: M_MESH_WAN[18]...
2011-05-01 Receive Pathsel daemon pid:2004
00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WAN_TRAFFIC[8] in module: M_MESH_WAN[18]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WLAN_GET[1] in module: M_MESH_WLAN[19]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WLAN_SET[0] in module: M_MESH_WLAN[19]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WLAN_GET[3] in module: M_MESH_WLAN[19]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WLAN_SET[2] in module: M_MESH_WLAN[19]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WLAN_ROAMING_GET[4] in module: M_MESH_WLAN[19]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_WLAN_ROAMING_SET[5] in module: M_MESH_WLAN[19]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_BASIC_SUILT[0] in module: M_MESH_BASIC[16]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_BASIC_TZ_SET[1] in module: M_MESH_BASIC[16]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_BASIC_TIME_SET[2] in module: M_MESH_BASIC[16]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_BASIC_LANG_SET[3] in module: M_MESH_BASIC[16]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_BASIC_FAST_DONE[4] in module: M_MESH_BASIC[16]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_BASIC_GET_MESH_ID[5] in module: M_MESH_BASIC[16]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_BASIC_UPLOAD_LOG[6] in module: M_MESH_BASIC[16]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_NODE_BROWS[0] in module: M_MESH_NODE[17]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_NODE_ADD[1] in module: M_MESH_NODE[17]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_NODE_DEL[2] in module: M_MESH_NODE[17]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_NODE_SET_LOCATION[3] in module: M_MESH_NODE[17]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_NODE_SET_LED[4] in module: M_MESH_NODE[17]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_NODE_QUERY_RSLT[5] in module: M_MESH_NODE[17]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_NODE_MULTI_UPGRADE_STA[6] in module: M_MESH_NODE[17]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_NODE_MANUAL_ADD[7] in module: M_MESH_NODE[17]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_HOSTS_GET[0] in module: M_MESH_HOSTS[20]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_HOSTS_MARK[1] in module: M_MESH_HOSTS[20]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_HOSTS_GET_REMARK[2] in module: M_MESH_HOSTS[20]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_MF_GET[0] in module: M_MESH_MACFILTER[21]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_MF_SET[1] in module: M_MESH_MACFILTER[21]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_FAMILY_GET_TMGRP[0] in module: M_MESH_FAMILY[22]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_FAMILY_SET_TMGRP[1] in module: M_MESH_FAMILY[22]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_FAMILY_GET_USRGRP[2] in module: M_MESH_FAMILY[22]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_FAMILY_SET_USRGRP[3] in module: M_MESH_FAMILY[22]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_FAMILY_GET_FMLYGRP[4] in module: M_MESH_FAMILY[22]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_FAMILY_SET_FMLYGRP[5] in module: M_MESH_FAMILY[22]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_PORTFWD_GET[0] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_PORTFWD_SET[1] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_UPNP_GET[2] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_UPNP_SET[3] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_MAINT_GET[4] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_MAINT_SET[5] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_DHCPS_GET[6] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_DHCPS_SET[7] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_QOS_GET[8] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_QOS_SET[9] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_DEV_ASSISTANT_GET[10] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_DEV_ASSISTANT_SET[11] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_SHAREDACC_GET[12] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_HIGH_DEVICE_GET[15] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_ADV_HIGH_DEVICE_SET[16] in module: M_MESH_ADVANCE[23]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_VERSION_Q[24] in module: M_CLOUD[3]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_INFO_CLEAR_ACC_ACK[9] in module: M_CLOUD_INFO[8]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CLOUD_INFO_ACCOUNT_INFO_A[16] in module: M_CLOUD_INFO[8]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_MNGMT_GET_STA[0] in module: M_MESH_AUTH[24]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_MESH_MNGMT_LOGIN[1] in module: M_MESH_AUTH[24]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_SYS_BASIC_INFO_GET[0] in module: M_SYS[1]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_CATEGORY_MESH[1] in module: M_CATEGORY[15]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_COMMON_SUCCESS[0] in module: M_COMMON[0]...
2011-05-01 00:00:16 [INFO ][uc_api_lib.c, 344][uc_api_lib_cmd_register] Successfully registered command: CMD_COMMON_FAILURE[1] in module: M_COMMON[0]...
argv[0] = sntp
argv[1] = 1
argv[2] = 10800
argv[3] = 43200
sntp
main,297,sntp_en =1,tz_offset_sec=10800,checktime=43200
wifi_config_service:4505
******************
sysconf wlanapp start wlan0 wlan1 wlan0-va0 wlan1-va0
***************
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
Init Wlan application...
FT Daemon v1.0 (Jul 2 2018 10:59:15)
change_opmode: sleep 1s for NIC restart.
change_opmode: sleep 2s for NIC restart.
wifi_config_service:4505
******************
sysconf wlanapp start wlan0 wlan1 wlan0-va0 wlan1-va0
***************
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
FT Daemon v1.0 (Jul 2 2018 10:59:15)
Init Wlan application...
Receive Pathsel daemon pid:2078
[arainc][multiWAN is not exit]netctrl_phy_link_status_change(1381)
change_opmode: sleep 3s for NIC restart.
device eth0 entered promiscuous mode
br0: port 1(eth0) entered listening state
br0: port 1(eth0) entered listening state
[arainc][multiWAN is not exit]netctrl_phy_link_status_change(1381)
change_opmode: sleep 1s for port reverted.
###fd failed to recv packet!###
##### NO SERVER FOUND! #####
br0: port 1(eth0) entered learning state
br0: port 2(wlan1) entered disabled state
change_opmode: sleep 2s for port reverted.
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
ifconfig: SIOCGIFFLAGS: No such device
/bin/sh: wlanapp.sh: not found
br0: port 3(wlan-msh) entered disabled state
WlanSupportAbility = 0x3
available channels[US]: 1 2 3 4 5 6 7 8 9 10 11
[ODM_software_init]
[97F] Bonding Type 97FS, PKG1
[97F] RFE type 5 PHY paratemters: GPA1+GLNA1
clock 40MHz
load efuse ok
rom_progress: 0x200006f
rom_progress: 0x400006f
[GetHwReg88XX][PHY_REG_PG_8197Fmp_Type5] size
[GetHwReg88XX][PHY_REG_PG_8197Fmp_Type5]
[GetHwReg88XX][rtl8197Ffw]
[GetHwReg88XX][rtl8197Ffw size]
[97F] Default BB Swing=20
mesh_passphrase_update, before encrypt
65 39 66 66 34 64 32 66 62 65 37 38 30 30 36 30
mesh_passphrase_update, after encrypt
64 34 38 dd 13 2c 3b ad 7b d1 93 8e 8c a8 be 34
br0: port 2(wlan1) entered listening state
br0: port 2(wlan1) entered listening state
br0: port 3(wlan-msh) entered listening state
br0: port 3(wlan-msh) entered listening state
wifi_config_service:4505
change_opmode: sleep 3s for port reverted.
******************
sysconf wlanapp start wlan0 wlan1 wlan0-va0 wlan1-va0
***************
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
open /proc/gpio: Permission denied
Init Wlan application...
FT Daemon v1.0 (Jul 2 2018 10:59:15)
Receive Pathsel daemon pid:2394
[ATM] atm_swq_en on
br0: topology change detected, propagating
br_topology_change_detection, clear br0 fdb ...
br_topology_change_detection, clear shortcut cache...
br0: port 1(eth0) entered forwarding state
change_opmode: sleep 4s for port reverted.
br0: port 2(wlan1) entered learning state
br0: port 3(wlan-msh) entered learning state
change_opmode: sleep 5s for port reverted.
change_opmode: sleep 6s for port reverted.
br0: topology change detected, propagating
br_topology_change_detection, clear br0 fdb ...
br_topology_change_detection, clear shortcut cache...
br0: port 2(wlan1) entered forwarding state
Send SIGUSR2 signal from kernel to pathsel, skip for test by Jack
br0: topology change detected, propagating
br_topology_change_detection, clear br0 fdb ...
br_topology_change_detection, clear shortcut cache...
br0: port 3(wlan-msh) entered forwarding state
change_opmode: sleep 7s for port reverted.
change_opmode: sleep 8s for port reverted.
change_opmode: sleep 9s for port reverted.
change_opmode: sleep 10s for port reverted.
change_opmode: sleep 11s for port reverted.
Phy[3] up
[arainc][multiWAN is not exit]netctrl_phy_link_status_change(1381)
change_opmode: sleep 12s for port reverted.
change_opmode: NIC restart finished.(WAN:1,LAN:0)
src/prod_common_rtl_fn_delete: failed del route from rtl865x!
hal.c,add_local_route_to_switch,179: config (192.168.5.0,255.255.255.0,br0) to the Realtek ASIC L3 Routing Table
[hw_nat_msg_handle][245]var->op 3
[set_hw_nat_by_guest_network][76]guest network is close!
eth1 has been deleted from br0!
hw_nat_config 113: #####################flags = 1
hw_nat_config 131: ##########enable = 1
hw_nat_config 152: set /proc/hw_nat to 0
cat /proc/hw_nat
wandial_handle(231)
0
[arainc][ctrl_op = 1]netctrl_moudle_multiwan_handle(22)
argv[0] = multiWAN
multiWAN
multiWAN -> multiwan_bad_sig_entry [18]...ct = 9
open:: No such file or directory
multiWAN -> multiwan_bad_sig_entry [18]...ct = 8
iptables: No chain/target/match by that name.
multiWAN -> multiwan_bad_sig_entry [18]...ct = 7
iptables: No chain/target/match by that name.
multiWAN -> multiwan_bad_sig_entry [18]...ct = 6
multiWAN -> multiwan_bad_sig_entry [18]...ct = 5
multiWAN -> multiwan_bad_sig_entry [18]...ct = 4
multiWAN -> multiwan_bad_sig_entry [18]...ct = 3
iptables: No chain/target/match by that name.
multiWAN -> multiwan_bad_sig_entry [18]...ct = 2
multiWAN -> multiwan_bad_sig_entry [18]...ct = 1
multiWAN -> multiwan_bad_sig_entry [18]...ct = 0
iptables: No chain/target/match by that name.
iptables: No chain/target/match by that name.
argv[0] = dhcpcd_wan1
argv[1] = -c
argv[2] = /etc/wan1.ini
argv[3] = -m
argv[4] = 1
argv[5] = eth1
argv[6] = -h
argv[7] = NOVA-0495e61a96e0
argv[8] = -x
argv[9] = /etc/dhcpc-wan-up1.sh
dhcpcd_wan1
program_name = dhcpcd_lan
killall: dhcpcd_lan: no process killed
[multiwan_msg_handle][2849]recv_info->SendPid = 7, recv_info->SendMid = 7, recv_info->RecvPid = 5, recv_info->RecvMid = 5
ganda_debug--[igmp_start]107 IGMP UP!!!
iptables: Bad rule (does a matching rule exist in that chain?).
iptables: Bad rule (does a matching rule exist in that chain?).
*TBQ* disabling tbq ...
*TBQ* tbq enqueue handlers is disabled
igmpproxy, Version 0.1 beta2, Build 170904
Copyright 2005 by Johnny Egeland <j*TBQ* notify disable done in timer func
ohnny@rlo.org>
*TBQ* tbq backlog is cleared
Distributed unde*TBQ* tbq disabled
r the GNU GENERAL PUBLIC LICENSE, Version 2 - check GPL.txt
update_hwnat_setting 383:/proc/hw_nat now is 0
route: SIOCDELRT: No such process
[multiwan_set_route_single_wan][1308][luminais] add_default_route_success
[getAllWanDns][125]wan1.manual.dns.en = 0
[getAllWanDns][187]dns_buf = -s 192.168.3.1
argv[0] = dnrd
argv[1] = -t
argv[2] = 3
argv[3] = -M
argv[4] = 600
argv[5] = --cache=off
argv[6] = -b
argv[7] = -R
argv[8] = /etc/dnrd
argv[9] = -r
argv[10] = 3
argv[11] = -s
argv[12] = 192.168.3.1
dnrd
[lan_wan_ip_conflict_check][707][luminais] wan : 192.168.3.140/255.255.255.0
Notice: caching turned off
[lan_wan_ip_conflict_check][722][luminais] br0 : 192.168.5.1/255.255.255.0
[multiwan_msg_handle][2849]recv_info->SendPid = 4, recv_info->SendMid = 4, recv_info->RecvPid = 5, recv_info->RecvMid = 5
open /dev/flow failed:: No such file or directory
iptables: No chain/target/match by that name.
iptables v1.4.4: Couldn't find target `icmp_access'
Try `iptables -h' or 'iptables --help' for more information.
*TBQ* tbq is not running
*TBQ* config size: 278
*TBQ* Operation not set
*TBQ* wanid=ffffffff set
*TBQ* config.Rules[n].IpIncluded not set
*TBQ* config.Rules[n].UserIncluded not set
*TBQ* config.Rules[n].AppIncluded not set
*TBQ* MaxBacklogPackets set to: 9999
*TBQ* reloading tbq ...
*TBQ* tbq reloaded
*TBQ* ------------- TBQ CONFIG (rule count: 1) -------------
*TBQ* ~~~~~~~~~ TBQ RULE [UI-GLOBAL] ~~~~~~~~~
*TBQ* global out tokens_per_jiffy: 1280000
*TBQ* user out tokens_per_jiffy: 1280000
*TBQ* global in tokens_per_jiffy: 1280000
*TBQ* user in tokens_per_jiffy: 1280000
*TBQ* max_backlog_packets: 9999
*TBQ* latency_shift: 7
*TBQ* disable_timeout: 2
*TBQ* ------------------------------------------
*TBQ* tbq enabled
killall: xl2tpd-server: no process killed
iptables: No chain/target/match by that name.
iptables: Chain already exists.
iptables: Chain already exists.
iptables: No chain/target/match by that name.
iptables v1.4.4: Couldn't find target `web_wanadmin'
Try `iptables -h' or 'iptables --help' for more information.
iptables: No chain/target/match by that name.
iptables: No chain/target/match by that name.
iptables v1.4.4: Couldn't find target `web_wanadmin'
Try `iptables -h' or 'iptables --help' for more information.
iptables: No chain/target/match by that name.
miniupnpd.c,871,ver=1.0,osname=Nova,osver=1.0,osurl=http://www.tendacn.com/,manuft=Tenda,descri=Nova
[hw_nat_msg_handle][245]var->op 2
[set_hw_nat_by_guest_network][76]guest network is close!
hw_nat_config 113: #####################flags = 0
hw_nat_config 131: ##########enable = 0
[fill_cloud_info_device_lists_rate][2600][luminais] NULL == g_ip_info
cat /proc/hw_nat
[mib_load_manage][472][luminais] GetBasicInfo [0]
0
[mib_save_manage][532][luminais] AccoutACK [0]
dev_mark_list_a(72)
[dev_mark_list_a][75]
[upload_local_diff_remark_to_cloud][2270][luminais] all client remark same with cloud.
[mesh_node_a][242]
[cloud_mesh_node_handle][3977]
[save_mesh_node_group_conf][387][kg] groupsn = 181285920113001948
not need to write flash,crc:[3d7bd411]
commit cfm failed or not need write flash
not need to write flash,crc:[3d7bd411]
commit cfm failed or not need write flash
s_time :1562925999991
config_time :1562925999991 local_time:1562925999991
telnet_ate_monitor_recv(166)
telnet_ate_monitor_recv(166)
Booting...
init_ram
00000202 M init ddr ok
DRAM Type: DDR2
DRAM frequency: 533MHz
DRAM Size: 128MB
JEDEC id 684017, EXT id 0x6840
found BH25Q64
flash vendor: BOHONG
BH25Q64, size=8MB, erasesize=64KB, max_speed_hz=55000000Hz
auto_mode=0 addr_width=3 erase_opcode=0x000000d8
=>CPU Wake-up interrupt happen! GISR=89000004
---Realtek RTL8197F boot code at 2018.04.20-10:17+0800 v3.4.11B.9 (999MHz)
Mac addr:04-95-e6-1a-96-e0
lan_wan_isolation Initing...
config: lan port mask is 0x000000f7
config: wan port mask is 0x000000e8
lan_wan_isolation Initing has been completed.
lan_wan_isolation Initing...
config: lan port mask is 0x000000f7
config: wan port mask is 0x000000e8
lan_wan_isolation Initing has been completed.
wait for upgrage
port[0] link:down
port[1] link:down
port[2] link:down
port[3] link:down
port[4] link:down
irq:0x00008080
Jump to image start=0x80a00000...
decompressing kernel:
Uncompressing Linux... done, booting the kernel.
done decompressing kernel.
start address: 0x80466860
Linux version 3.10.90 (root@linux-bkb8) (gcc version 4.4.7 (Realtek MSDK-4.4.7 Build 2001) ) #4 Mon Jul 2 10:57:35 CST 2018
CPU revision is: 00019385 (MIPS 24Kc)
Determined physical RAM map:
memory: 08000000 @ 00000000 (usable)
Zone ranges:
Normal [mem 0x00000000-0x07ffffff]
Movable zone start for each node
Early memory node ranges
node 0: [mem 0x00000000-0x07ffffff]
Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.