GithubHelp home page GithubHelp logo

Comments (11)

Matt-wzy avatar Matt-wzy commented on June 13, 2024

iptables -t nat -A PREROUTING -p udp --dport 53 -j REDIRECT --to-ports 53
iptables -t nat -A PREROUTING -p tcp --dport 53 -j REDIRECT --to-ports 53

# 通过 rkp-ipid 设置 IPID
iptables -t mangle -N IPID_MOD
iptables -t mangle -A FORWARD -j IPID_MOD
iptables -t mangle -A OUTPUT -j IPID_MOD
iptables -t mangle -A IPID_MOD -d 0.0.0.0/8 -j RETURN
iptables -t mangle -A IPID_MOD -d 127.0.0.0/8 -j RETURN
#由于本校局域网是A类网,所以我将这一条注释掉了,具体要不要注释结合你所在的校园网
# iptables -t mangle -A IPID_MOD -d 10.0.0.0/8 -j RETURN
iptables -t mangle -A IPID_MOD -d 172.16.0.0/12 -j RETURN
iptables -t mangle -A IPID_MOD -d 192.168.0.0/16 -j RETURN
iptables -t mangle -A IPID_MOD -d 255.0.0.0/8 -j RETURN
iptables -t mangle -A IPID_MOD -j MARK --set-xmark 0x10/0x10

# ua2f 改UA
iptables -t mangle -N ua2f
#iptables -t mangle -A ua2f -d 10.0.0.0/8 -j RETURN
iptables -t mangle -A ua2f -d 127.0.0.0/8 -j RETURN
iptables -t mangle -A ua2f -d 192.168.0.0/16 -j RETURN # 不处理流向保留地址的包
iptables -t mangle -A ua2f -p tcp --dport 443 -j RETURN
iptables -t mangle -A ua2f -p tcp --dport 22 -j RETURN # 不处理 SSH 和 https
iptables -t mangle -A ua2f -p tcp --dport 80 -j CONNMARK --set-mark 44
iptables -t mangle -A ua2f -m connmark --mark 43 -j RETURN # 不处理标记为非 http 的流 (实验性)
iptables -t mangle -A ua2f -m set --set nohttp dst,dst -j RETURN
iptables -t mangle -A ua2f -j NFQUEUE --queue-num 10010

iptables -t mangle -A FORWARD -p tcp -m conntrack --ctdir ORIGINAL -j ua2f
iptables -t mangle -A FORWARD -p tcp -m conntrack --ctdir REPLY


# 防时钟偏移检测
iptables -t nat -N ntp_force_local
iptables -t nat -I PREROUTING -p udp --dport 123 -j ntp_force_local
iptables -t nat -A ntp_force_local -d 0.0.0.0/8 -j RETURN
iptables -t nat -A ntp_force_local -d 127.0.0.0/8 -j RETURN
iptables -t nat -A ntp_force_local -d 192.168.0.0/16 -j RETURN
iptables -t nat -A ntp_force_local -s 192.168.0.0/16 -j DNAT --to-destination 192.168.1.1

# 通过 iptables 修改 TTL 值
iptables -t mangle -A POSTROUTING -j TTL --ttl-set 64

# iptables 拒绝 AC 进行 Flash 检测
iptables -I FORWARD -p tcp --sport 80 --tcp-flags ACK ACK -m string --algo bm --string " src=\"http://1.1.1." -j DROP

防火墙配置,不知道对问题分析有没有用

from ua2f.

Zxilly avatar Zxilly commented on June 13, 2024

你本地开了代理,指不定走代理了。。。

from ua2f.

Matt-wzy avatar Matt-wzy commented on June 13, 2024

你本地开了代理,指不定走代理了。。。

image.png

上面说了开了代理关上代理一个样了(先取消全局然后退出的)

from ua2f.

Zxilly avatar Zxilly commented on June 13, 2024

没法判断,只能靠你自己了。。。怕不是和ipid冲突了?

from ua2f.

Matt-wzy avatar Matt-wzy commented on June 13, 2024

没法判断,只能靠你自己了。。。怕不是和ipid冲突了?

电脑、手机都关了代理跑的时候抓的包,

电脑、手机访问几次ua.zhezhiyu.xyz

在路由器上运行 tcpdump -i eth0 -w test_Noproxy.cap 得到的,其中10.184.184.***是我所使用的设备在校园网内的ip地址

from ua2f.

Matt-wzy avatar Matt-wzy commented on June 13, 2024

没法判断,只能靠你自己了。。。怕不是和ipid冲突了?

电脑、手机都关了代理跑的时候抓的包,

电脑、手机访问几次ua.zhezhiyu.xyz

在路由器上运行 tcpdump -i eth0 -w test_Noproxy.cap 得到的,其中10.184.184.***是我所使用的设备在校园网内的ip地址

Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
Thu May 13 13:03:27 2021 kern.notice kernel: [    0.000000] Linux version 5.4.117 (runner@fv-az162-443) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r18571-c97d4ee646)) #0 SMP PREEMPT Tue May 11 20:19:25 2021
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] Machine model: Xunlong Orange Pi R1 Plus
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] earlycon: uart8250 at MMIO32 0x00000000ff130000 (options '')
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] printk: bootconsole [uart8250] enabled
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] cma: Reserved 8 MiB at 0x000000003f800000
Thu May 13 13:03:27 2021 kern.debug kernel: [    0.000000] On node 0 totalpages: 261632
Thu May 13 13:03:27 2021 kern.debug kernel: [    0.000000]   DMA32 zone: 4088 pages used for memmap
Thu May 13 13:03:27 2021 kern.debug kernel: [    0.000000]   DMA32 zone: 0 pages reserved
Thu May 13 13:03:27 2021 kern.debug kernel: [    0.000000]   DMA32 zone: 261632 pages, LIFO batch:63
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] psci: probing for conduit method from DT.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] psci: PSCIv1.0 detected in firmware.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] psci: Using standard PSCI v0.2 function IDs
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] psci: MIGRATE_INFO_TYPE not supported.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] psci: SMC Calling Convention v1.0
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] percpu: Embedded 21 pages/cpu s45912 r8192 d31912 u86016
Thu May 13 13:03:27 2021 kern.debug kernel: [    0.000000] pcpu-alloc: s45912 r8192 d31912 u86016 alloc=21*4096
Thu May 13 13:03:27 2021 kern.debug kernel: [    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] Detected VIPT I-cache on CPU0
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] CPU features: detected: ARM erratum 845719
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 257544
Thu May 13 13:03:27 2021 kern.notice kernel: [    0.000000] Kernel command line: console=ttyS2,1500000 earlycon=uart8250,mmio32,0xff130000 root=PARTUUID=5452574f-02 rw rootwait
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] Memory: 1005008K/1046528K available (7422K kernel code, 536K rwdata, 2308K rodata, 1664K init, 717K bss, 33328K reserved, 8192K cma-reserved)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] rcu: Preemptible hierarchical RCU implementation.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] rcu: 	RCU event tracing is enabled.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] 	Tasks RCU enabled.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] GIC: Using split EOI/Deactivate mode
Thu May 13 13:03:27 2021 kern.notice kernel: [    0.000000] random: get_random_bytes called from start_kernel+0x29c/0x39c with crng_init=0
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
Thu May 13 13:03:27 2021 kern.info kernel: [    0.000009] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
Thu May 13 13:03:27 2021 kern.info kernel: [    0.001566] Console: colour dummy device 80x25
Thu May 13 13:03:27 2021 kern.info kernel: [    0.002027] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.002959] pid_max: default: 32768 minimum: 301
Thu May 13 13:03:27 2021 kern.info kernel: [    0.003651] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.004329] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.007209] ASID allocator initialised with 32768 entries
Thu May 13 13:03:27 2021 kern.info kernel: [    0.007848] rcu: Hierarchical SRCU implementation.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.009498] smp: Bringing up secondary CPUs ...
Thu May 13 13:03:27 2021 kern.info kernel: [    0.010724] Detected VIPT I-cache on CPU1
Thu May 13 13:03:27 2021 kern.info kernel: [    0.010812] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
Thu May 13 13:03:27 2021 kern.info kernel: [    0.011604] Detected VIPT I-cache on CPU2
Thu May 13 13:03:27 2021 kern.info kernel: [    0.011667] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
Thu May 13 13:03:27 2021 kern.info kernel: [    0.012395] Detected VIPT I-cache on CPU3
Thu May 13 13:03:27 2021 kern.info kernel: [    0.012457] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
Thu May 13 13:03:27 2021 kern.info kernel: [    0.012575] smp: Brought up 1 node, 4 CPUs
Thu May 13 13:03:27 2021 kern.info kernel: [    0.015878] SMP: Total of 4 processors activated.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.016309] CPU features: detected: 32-bit EL0 Support
Thu May 13 13:03:27 2021 kern.info kernel: [    0.016780] CPU features: detected: CRC32 instructions
Thu May 13 13:03:27 2021 kern.info kernel: [    0.024993] CPU: All CPU(s) started at EL2
Thu May 13 13:03:27 2021 kern.info kernel: [    0.025427] alternatives: patching kernel code
Thu May 13 13:03:27 2021 kern.info kernel: [    0.041787] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Thu May 13 13:03:27 2021 kern.info kernel: [    0.042758] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.043981] pinctrl core: initialized pinctrl subsystem
Thu May 13 13:03:27 2021 kern.info kernel: [    0.045571] NET: Registered protocol family 16
Thu May 13 13:03:27 2021 kern.info kernel: [    0.048417] DMA: preallocated 2048 KiB pool for atomic allocations
Thu May 13 13:03:27 2021 kern.info kernel: [    0.050183] cpuidle: using governor menu
Thu May 13 13:03:27 2021 kern.info kernel: [    0.050979] Serial: AMBA PL011 UART driver
Thu May 13 13:03:27 2021 kern.info kernel: [    0.081446] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Thu May 13 13:03:27 2021 kern.info kernel: [    0.082066] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
Thu May 13 13:03:27 2021 kern.info kernel: [    0.082671] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Thu May 13 13:03:27 2021 kern.info kernel: [    0.083319] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
Thu May 13 13:03:27 2021 kern.warn kernel: [    0.088143] sdmmc-regulator GPIO handle specifies active low - ignored
Thu May 13 13:03:27 2021 kern.info kernel: [    0.090655] iommu: Default domain type: Translated
Thu May 13 13:03:27 2021 kern.notice kernel: [    0.092426] SCSI subsystem initialized
Thu May 13 13:03:27 2021 kern.info kernel: [    0.093113] usbcore: registered new interface driver usbfs
Thu May 13 13:03:27 2021 kern.info kernel: [    0.093665] usbcore: registered new interface driver hub
Thu May 13 13:03:27 2021 kern.info kernel: [    0.094201] usbcore: registered new device driver usb
Thu May 13 13:03:27 2021 kern.warn kernel: [    0.095566] workqueue: max_active 576 requested for napi_workq is out of range, clamping between 1 and 512
Thu May 13 13:03:27 2021 kern.info kernel: [    0.097444] clocksource: Switched to clocksource arch_sys_counter
Thu May 13 13:03:27 2021 kern.notice kernel: [    0.098251] VFS: Disk quotas dquot_6.6.0
Thu May 13 13:03:27 2021 kern.info kernel: [    0.098695] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.105307] thermal_sys: Registered thermal governor 'step_wise'
Thu May 13 13:03:27 2021 kern.info kernel: [    0.105315] thermal_sys: Registered thermal governor 'power_allocator'
Thu May 13 13:03:27 2021 kern.info kernel: [    0.106564] NET: Registered protocol family 2
Thu May 13 13:03:27 2021 kern.info kernel: [    0.108245] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.109037] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.109896] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.110739] TCP: Hash tables configured (established 8192 bind 8192)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.111515] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.112157] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.113082] NET: Registered protocol family 1
Thu May 13 13:03:27 2021 kern.info kernel: [    0.113560] PCI: CLS 0 bytes, default 64
Thu May 13 13:03:27 2021 kern.info kernel: [    0.115588] workingset: timestamp_bits=46 max_order=18 bucket_order=0
Thu May 13 13:03:27 2021 kern.info kernel: [    0.126800] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Thu May 13 13:03:27 2021 kern.info kernel: [    0.127340] jffs2: version 2.2 (NAND) (SUMMARY) (ZLIB) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.156330] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.157211] io scheduler mq-deadline registered
Thu May 13 13:03:27 2021 kern.info kernel: [    0.165014] dma-pl330 ff1f0000.dmac: Loaded driver for PL330 DMAC-241330
Thu May 13 13:03:27 2021 kern.info kernel: [    0.165683] dma-pl330 ff1f0000.dmac: 	DBUFF-128x8bytes Num_Chans-8 Num_Peri-20 Num_Events-16
Thu May 13 13:03:27 2021 kern.info kernel: [    0.169311] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Thu May 13 13:03:27 2021 kern.info kernel: [    0.171937] ff120000.serial: ttyS1 at MMIO 0xff120000 (irq = 12, base_baud = 1500000) is a 16550A
Thu May 13 13:03:27 2021 kern.info kernel: [    0.173746] ff130000.serial: ttyS2 at MMIO 0xff130000 (irq = 13, base_baud = 1500000) is a 16550A
Thu May 13 13:03:27 2021 kern.info kernel: [    0.174654] printk: console [ttyS2] enabled
Thu May 13 13:03:27 2021 kern.info kernel: [    0.175407] printk: bootconsole [uart8250] disabled
Thu May 13 13:03:27 2021 kern.info kernel: [    0.186243] loop: module loaded
Thu May 13 13:03:27 2021 kern.info kernel: [    0.186545] mtip32xx Version 1.3.1
Thu May 13 13:03:27 2021 kern.info kernel: [    0.190539] spi-nor spi0.0: mx25l12805d (16384 Kbytes)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.195037] libphy: Fixed MDIO Bus: probed
Thu May 13 13:03:27 2021 kern.info kernel: [    0.196826] rk_gmac-dwmac ff540000.ethernet: IRQ eth_wake_irq not found
Thu May 13 13:03:27 2021 kern.info kernel: [    0.197502] rk_gmac-dwmac ff540000.ethernet: IRQ eth_lpi not found
Thu May 13 13:03:27 2021 kern.warn kernel: [    0.198204] rk_gmac-dwmac ff540000.ethernet: PTP uses main clock
Thu May 13 13:03:27 2021 kern.err kernel: [    0.198775] rk_gmac-dwmac ff540000.ethernet: phy regulator is not available yet, deferred probing
Thu May 13 13:03:27 2021 kern.err kernel: [    0.201244] dwc3 ff600000.dwc3: Failed to get clk 'ref': -2
Thu May 13 13:03:27 2021 kern.info kernel: [    0.202376] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Thu May 13 13:03:27 2021 kern.info kernel: [    0.202956] ehci-platform: EHCI generic platform driver
Thu May 13 13:03:27 2021 kern.info kernel: [    0.205831] ehci-platform ff5c0000.usb: EHCI Host Controller
Thu May 13 13:03:27 2021 kern.info kernel: [    0.206366] ehci-platform ff5c0000.usb: new USB bus registered, assigned bus number 1
Thu May 13 13:03:27 2021 kern.info kernel: [    0.207207] ehci-platform ff5c0000.usb: irq 31, io mem 0xff5c0000
Thu May 13 13:03:27 2021 kern.info kernel: [    0.221474] ehci-platform ff5c0000.usb: USB 2.0 started, EHCI 1.00
Thu May 13 13:03:27 2021 kern.info kernel: [    0.222741] hub 1-0:1.0: USB hub found
Thu May 13 13:03:27 2021 kern.info kernel: [    0.223120] hub 1-0:1.0: 1 port detected
Thu May 13 13:03:27 2021 kern.info kernel: [    0.224055] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Thu May 13 13:03:27 2021 kern.info kernel: [    0.224648] ohci-platform: OHCI generic platform driver
Thu May 13 13:03:27 2021 kern.info kernel: [    0.225550] ohci-platform ff5d0000.usb: Generic Platform OHCI controller
Thu May 13 13:03:27 2021 kern.info kernel: [    0.226171] ohci-platform ff5d0000.usb: new USB bus registered, assigned bus number 2
Thu May 13 13:03:27 2021 kern.info kernel: [    0.227020] ohci-platform ff5d0000.usb: irq 32, io mem 0xff5d0000
Thu May 13 13:03:27 2021 kern.info kernel: [    0.290187] hub 2-0:1.0: USB hub found
Thu May 13 13:03:27 2021 kern.info kernel: [    0.290564] hub 2-0:1.0: 1 port detected
Thu May 13 13:03:27 2021 kern.info kernel: [    0.292137] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
Thu May 13 13:03:27 2021 kern.info kernel: [    0.292653] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 3
Thu May 13 13:03:27 2021 kern.info kernel: [    0.293634] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000000002010010
Thu May 13 13:03:27 2021 kern.info kernel: [    0.294536] xhci-hcd xhci-hcd.0.auto: irq 166, io mem 0xff600000
Thu May 13 13:03:27 2021 kern.info kernel: [    0.296039] hub 3-0:1.0: USB hub found
Thu May 13 13:03:27 2021 kern.info kernel: [    0.296424] hub 3-0:1.0: 1 port detected
Thu May 13 13:03:27 2021 kern.info kernel: [    0.297221] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
Thu May 13 13:03:27 2021 kern.info kernel: [    0.297775] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 4
Thu May 13 13:03:27 2021 kern.info kernel: [    0.298469] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
Thu May 13 13:03:27 2021 kern.info kernel: [    0.299127] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.300437] hub 4-0:1.0: USB hub found
Thu May 13 13:03:27 2021 kern.info kernel: [    0.300813] hub 4-0:1.0: 1 port detected
Thu May 13 13:03:27 2021 kern.info kernel: [    0.301839] usbcore: registered new interface driver usb-storage
Thu May 13 13:03:27 2021 kern.info kernel: [    0.302559] i2c /dev entries driver
Thu May 13 13:03:27 2021 kern.info kernel: [    0.305608] rk808 1-0018: chip id: 0x8050
Thu May 13 13:03:27 2021 kern.info kernel: [    0.313644] rk808-regulator rk808-regulator: there is no dvs0 gpio
Thu May 13 13:03:27 2021 kern.info kernel: [    0.314229] rk808-regulator rk808-regulator: there is no dvs1 gpio
Thu May 13 13:03:27 2021 kern.info kernel: [    0.317371] vdd_log: supplied by vdd_5v
Thu May 13 13:03:27 2021 kern.info kernel: [    0.319363] vdd_arm: supplied by vdd_5v
Thu May 13 13:03:27 2021 kern.info kernel: [    0.319974] vcc_ddr: supplied by vdd_5v
Thu May 13 13:03:27 2021 kern.info kernel: [    0.321612] vcc_io_33: supplied by vdd_5v
Thu May 13 13:03:27 2021 kern.info kernel: [    0.324951] vcc_18: supplied by vcc_io_33
Thu May 13 13:03:27 2021 kern.info kernel: [    0.328425] vcc18_emmc: supplied by vcc_io_33
Thu May 13 13:03:27 2021 kern.info kernel: [    0.331941] vdd_10: supplied by vdd_5v
Thu May 13 13:03:27 2021 kern.info kernel: [    0.341229] rk808-rtc rk808-rtc: registered as rtc0
Thu May 13 13:03:27 2021 kern.warn kernel: [    0.348515] energy_model: pd0: hertz/watts ratio non-monotonically decreasing: em_cap_state 1 >= em_cap_state0
Thu May 13 13:03:27 2021 kern.info kernel: [    0.351657] sdhci: Secure Digital Host Controller Interface driver
Thu May 13 13:03:27 2021 kern.info kernel: [    0.352213] sdhci: Copyright(c) Pierre Ossman
Thu May 13 13:03:27 2021 kern.info kernel: [    0.352596] Synopsys Designware Multimedia Card Interface Driver
Thu May 13 13:03:27 2021 kern.info kernel: [    0.353790] dwmmc_rockchip ff500000.dwmmc: IDMAC supports 32-bit address mode.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.354461] dwmmc_rockchip ff500000.dwmmc: Using internal DMA controller.
Thu May 13 13:03:27 2021 kern.info kernel: [    0.355062] dwmmc_rockchip ff500000.dwmmc: Version ID is 270a
Thu May 13 13:03:27 2021 kern.info kernel: [    0.355621] dwmmc_rockchip ff500000.dwmmc: DW MMC controller at irq 28,32 bit host data width,256 deep fifo
Thu May 13 13:03:27 2021 kern.info kernel: [    0.356522] vcc_sd: supplied by vcc_io_33
Thu May 13 13:03:27 2021 kern.info kernel: [    0.373571] mmc_host mmc0: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
Thu May 13 13:03:27 2021 kern.info kernel: [    0.387290] sdhci-pltfm: SDHCI platform and OF driver helper
Thu May 13 13:03:27 2021 kern.info kernel: [    0.389062] ledtrig-cpu: registered to indicate activity on CPUs
Thu May 13 13:03:27 2021 kern.info kernel: [    0.389954] usbcore: registered new interface driver usbhid
Thu May 13 13:03:27 2021 kern.info kernel: [    0.390481] usbhid: USB HID core driver
Thu May 13 13:03:27 2021 kern.info kernel: [    0.392679] NET: Registered protocol family 10
Thu May 13 13:03:27 2021 kern.info kernel: [    0.394360] Segment Routing with IPv6
Thu May 13 13:03:27 2021 kern.info kernel: [    0.394752] NET: Registered protocol family 17
Thu May 13 13:03:27 2021 kern.info kernel: [    0.395235] 8021q: 802.1Q VLAN Support v1.8
Thu May 13 13:03:27 2021 kern.info kernel: [    0.412313] rk_gmac-dwmac ff540000.ethernet: IRQ eth_wake_irq not found
Thu May 13 13:03:27 2021 kern.info kernel: [    0.412911] rk_gmac-dwmac ff540000.ethernet: IRQ eth_lpi not found
Thu May 13 13:03:27 2021 kern.warn kernel: [    0.413638] rk_gmac-dwmac ff540000.ethernet: PTP uses main clock
Thu May 13 13:03:27 2021 kern.info kernel: [    0.414287] rk_gmac-dwmac ff540000.ethernet: clock input or output? (input).
Thu May 13 13:03:27 2021 kern.info kernel: [    0.414908] rk_gmac-dwmac ff540000.ethernet: TX delay(0x24).
Thu May 13 13:03:27 2021 kern.info kernel: [    0.415410] rk_gmac-dwmac ff540000.ethernet: RX delay(0x18).
Thu May 13 13:03:27 2021 kern.info kernel: [    0.415914] rk_gmac-dwmac ff540000.ethernet: integrated PHY? (no).
Thu May 13 13:03:27 2021 kern.err kernel: [    0.416544] rk_gmac-dwmac ff540000.ethernet: cannot get clock clk_mac_speed
Thu May 13 13:03:27 2021 kern.info kernel: [    0.417164] rk_gmac-dwmac ff540000.ethernet: clock input from PHY
Thu May 13 13:03:27 2021 kern.info kernel: [    0.424361] rk_gmac-dwmac ff540000.ethernet: init for RGMII
Thu May 13 13:03:27 2021 kern.info kernel: [    0.425192] rk_gmac-dwmac ff540000.ethernet: User ID: 0x10, Synopsys ID: 0x35
Thu May 13 13:03:27 2021 kern.info kernel: [    0.425864] rk_gmac-dwmac ff540000.ethernet: 	DWMAC1000
Thu May 13 13:03:27 2021 kern.info kernel: [    0.426326] rk_gmac-dwmac ff540000.ethernet: DMA HW capability register supported
Thu May 13 13:03:27 2021 kern.info kernel: [    0.426981] rk_gmac-dwmac ff540000.ethernet: RX Checksum Offload Engine supported
Thu May 13 13:03:27 2021 kern.info kernel: [    0.427635] rk_gmac-dwmac ff540000.ethernet: COE Type 2
Thu May 13 13:03:27 2021 kern.info kernel: [    0.428094] rk_gmac-dwmac ff540000.ethernet: TX Checksum insertion supported
Thu May 13 13:03:27 2021 kern.info kernel: [    0.428707] rk_gmac-dwmac ff540000.ethernet: Wake-Up On Lan supported
Thu May 13 13:03:27 2021 kern.info kernel: [    0.429273] rk_gmac-dwmac ff540000.ethernet: Normal descriptors
Thu May 13 13:03:27 2021 kern.info kernel: [    0.429799] rk_gmac-dwmac ff540000.ethernet: Ring mode enabled
Thu May 13 13:03:27 2021 kern.info kernel: [    0.430309] rk_gmac-dwmac ff540000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Thu May 13 13:03:27 2021 kern.info kernel: [    0.431178] libphy: stmmac: probed
Thu May 13 13:03:27 2021 kern.notice kernel: [    0.503228] rk3328-dmc-freq dmc: current ATF version 0x101
Thu May 13 13:03:27 2021 kern.info kernel: [    0.633540] usb 4-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd
Thu May 13 13:03:27 2021 kern.notice kernel: [    0.654230] random: fast init done
Thu May 13 13:03:27 2021 kern.err kernel: [    0.943256] dwmmc_rockchip ff500000.dwmmc: Busy; trying anyway
Thu May 13 13:03:27 2021 kern.err kernel: [    1.443787] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000)
Thu May 13 13:03:27 2021 kern.info kernel: [    1.446521] rk808-rtc rk808-rtc: setting system clock to 2021-05-13T05:03:10 UTC (1620882190)
Thu May 13 13:03:27 2021 kern.info kernel: [    1.448612] Waiting for root device PARTUUID=5452574f-02...
Thu May 13 13:03:27 2021 kern.err kernel: [    2.229260] dwmmc_rockchip ff500000.dwmmc: Busy; trying anyway
Thu May 13 13:03:27 2021 kern.err kernel: [    2.729803] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000)
Thu May 13 13:03:27 2021 kern.err kernel: [    3.409266] dwmmc_rockchip ff500000.dwmmc: Busy; trying anyway
Thu May 13 13:03:27 2021 kern.err kernel: [    3.909810] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000)
Thu May 13 13:03:27 2021 kern.err kernel: [    4.576162] dwmmc_rockchip ff500000.dwmmc: Busy; trying anyway
Thu May 13 13:03:27 2021 kern.err kernel: [    5.076696] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000)
Thu May 13 13:03:27 2021 kern.err kernel: [    5.743000] dwmmc_rockchip ff500000.dwmmc: Busy; trying anyway
Thu May 13 13:03:27 2021 kern.err kernel: [    6.243533] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000)
Thu May 13 13:03:27 2021 kern.err kernel: [    6.922977] dwmmc_rockchip ff500000.dwmmc: Busy; trying anyway
Thu May 13 13:03:27 2021 kern.err kernel: [    7.423511] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000)
Thu May 13 13:03:27 2021 kern.err kernel: [    8.089477] dwmmc_rockchip ff500000.dwmmc: Busy; trying anyway
Thu May 13 13:03:27 2021 kern.err kernel: [    8.590016] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000)
Thu May 13 13:03:27 2021 kern.err kernel: [    9.256154] dwmmc_rockchip ff500000.dwmmc: Busy; trying anyway
Thu May 13 13:03:27 2021 kern.err kernel: [    9.756692] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000)
Thu May 13 13:03:27 2021 kern.err kernel: [   10.435838] dwmmc_rockchip ff500000.dwmmc: Busy; trying anyway
Thu May 13 13:03:27 2021 kern.err kernel: [   10.936374] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000)
Thu May 13 13:03:27 2021 kern.err kernel: [   11.602535] dwmmc_rockchip ff500000.dwmmc: Busy; trying anyway
Thu May 13 13:03:27 2021 kern.err kernel: [   12.103071] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000)
Thu May 13 13:03:27 2021 kern.warn kernel: [   12.131468] mmc0: Skipping voltage switch
Thu May 13 13:03:27 2021 kern.info kernel: [   12.252859] mmc_host mmc0: Bus speed (slot 0) = 50000000Hz (slot req 50000000Hz, actual 50000000HZ div = 0)
Thu May 13 13:03:27 2021 kern.info kernel: [   12.254008] mmc0: new high speed SDXC card at address 0001
Thu May 13 13:03:27 2021 kern.info kernel: [   12.256059] mmcblk0: mmc0:0001 EC2QT 59.6 GiB
Thu May 13 13:03:27 2021 kern.info kernel: [   12.260075]  mmcblk0: p1 p2
Thu May 13 13:03:27 2021 kern.info kernel: [   12.297833] EXT4-fs (mmcblk0p2): mounted filesystem without journal. Opts: (null)
Thu May 13 13:03:27 2021 kern.info kernel: [   12.298576] VFS: Mounted root (ext4 filesystem) on device 179:2.
Thu May 13 13:03:27 2021 kern.info kernel: [   12.300256] Freeing unused kernel memory: 1664K
Thu May 13 13:03:27 2021 kern.info kernel: [   12.313585] Run /sbin/init as init process
Thu May 13 13:03:27 2021 user.info kernel: [   12.399671] init: Console is alive
Thu May 13 13:03:27 2021 user.info kernel: [   12.662732] kmodloader: loading kernel modules from /etc/modules-boot.d/*
Thu May 13 13:03:27 2021 kern.info kernel: [   12.678199] usbcore: registered new interface driver uas
Thu May 13 13:03:27 2021 user.info kernel: [   12.679132] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
Thu May 13 13:03:27 2021 user.info kernel: [   12.683887] init: - preinit -
Thu May 13 13:03:27 2021 kern.notice kernel: [   12.862203] random: jshn: uninitialized urandom read (4 bytes read)
Thu May 13 13:03:27 2021 kern.notice kernel: [   12.884432] random: jshn: uninitialized urandom read (4 bytes read)
Thu May 13 13:03:27 2021 kern.notice kernel: [   12.915015] random: jshn: uninitialized urandom read (4 bytes read)
Thu May 13 13:03:27 2021 user.notice kernel: [   17.045348] mount_root: mounting /dev/root
Thu May 13 13:03:27 2021 kern.info kernel: [   17.063387] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
Thu May 13 13:03:27 2021 user.info kernel: [   17.064148] mount_root: loading kmods from internal overlay
Thu May 13 13:03:27 2021 user.info kernel: [   17.077367] kmodloader: loading kernel modules from //etc/modules-boot.d/*
Thu May 13 13:03:27 2021 user.info kernel: [   17.078878] kmodloader: done loading kernel modules from //etc/modules-boot.d/*
Thu May 13 13:03:27 2021 user.info kernel: [   17.916267] block: attempting to load /etc/config/fstab
Thu May 13 13:03:27 2021 user.info kernel: [   17.919679] block: extroot: not configured
Thu May 13 13:03:27 2021 kern.info kernel: [   18.023830] fuse: init (API version 7.31)
Thu May 13 13:03:27 2021 kern.info kernel: [   18.162642] EXT4-fs (mmcblk0p1): mounted filesystem without journal. Opts: (null)
Thu May 13 13:03:27 2021 user.warn kernel: [   18.195980] urandom-seed: Seeding with /etc/urandom.seed
Thu May 13 13:03:27 2021 user.info kernel: [   18.219133] procd: - early -
Thu May 13 13:03:27 2021 user.info kernel: [   18.761820] procd: - ubus -
Thu May 13 13:03:27 2021 kern.warn kernel: [   18.772296] urandom_read: 3 callbacks suppressed
Thu May 13 13:03:27 2021 kern.notice kernel: [   18.772305] random: ubusd: uninitialized urandom read (4 bytes read)
Thu May 13 13:03:27 2021 kern.notice kernel: [   18.812963] random: ubusd: uninitialized urandom read (4 bytes read)
Thu May 13 13:03:27 2021 kern.notice kernel: [   18.814100] random: ubusd: uninitialized urandom read (4 bytes read)
Thu May 13 13:03:27 2021 user.info kernel: [   18.816556] procd: - init -
Thu May 13 13:03:27 2021 user.info kernel: [   18.948799] urngd: v1.0.2 started.
Thu May 13 13:03:27 2021 kern.notice kernel: [   18.969052] random: crng init done
Thu May 13 13:03:27 2021 kern.notice kernel: [   18.969384] random: 1 urandom warning(s) missed due to ratelimiting
Thu May 13 13:03:27 2021 user.info kernel: [   19.115798] kmodloader: loading kernel modules from /etc/modules.d/*
Thu May 13 13:03:27 2021 kern.info kernel: [   19.131159] NET: Registered protocol family 38
Thu May 13 13:03:27 2021 kern.info kernel: [   19.151882] tun: Universal TUN/TAP device driver, 1.6
Thu May 13 13:03:27 2021 kern.info kernel: [   19.198383] cryptodev: driver 1.11 loaded.
Thu May 13 13:03:27 2021 kern.warn kernel: [   19.202712] rkp-ipid: Started, version=2, mark_capture=0x10. mark_random=0x20.
Thu May 13 13:03:27 2021 kern.warn kernel: [   19.203357] rkp-ipid: nf_register_hook returnd 0.
Thu May 13 13:03:27 2021 kern.info kernel: [   19.258620] usbcore: registered new interface driver r8152
Thu May 13 13:03:27 2021 kern.info kernel: [   19.263971] usbcore: registered new interface driver ums-alauda
Thu May 13 13:03:27 2021 kern.info kernel: [   19.265225] usbcore: registered new interface driver ums-cypress
Thu May 13 13:03:27 2021 kern.info kernel: [   19.266721] usbcore: registered new interface driver ums-datafab
Thu May 13 13:03:27 2021 kern.info kernel: [   19.267974] usbcore: registered new interface driver ums-freecom
Thu May 13 13:03:27 2021 kern.info kernel: [   19.269277] usbcore: registered new interface driver ums-isd200
Thu May 13 13:03:27 2021 kern.info kernel: [   19.270607] usbcore: registered new interface driver ums-jumpshot
Thu May 13 13:03:27 2021 kern.info kernel: [   19.271890] usbcore: registered new interface driver ums-karma
Thu May 13 13:03:27 2021 kern.info kernel: [   19.273311] usbcore: registered new interface driver ums-sddr09
Thu May 13 13:03:27 2021 kern.info kernel: [   19.274708] usbcore: registered new interface driver ums-sddr55
Thu May 13 13:03:27 2021 kern.info kernel: [   19.276397] usbcore: registered new interface driver ums-usbat
Thu May 13 13:03:27 2021 kern.info kernel: [   19.299837] xt_time: kernel timezone is -0000
Thu May 13 13:03:27 2021 kern.info kernel: [   19.335252] PPP generic driver version 2.4.2
Thu May 13 13:03:27 2021 kern.info kernel: [   19.336691] PPP MPPE Compression module registered
Thu May 13 13:03:27 2021 kern.info kernel: [   19.338521] NET: Registered protocol family 24
Thu May 13 13:03:27 2021 user.info kernel: [   19.357603] kmodloader: done loading kernel modules from /etc/modules.d/*
Thu May 13 13:03:27 2021 kern.info kernel: [   19.419601] usb 4-1: reset SuperSpeed Gen 1 USB device number 2 using xhci-hcd
Thu May 13 13:03:27 2021 kern.info kernel: [   19.491446] r8152 4-1:1.0 eth1: v1.10.11
Thu May 13 13:03:28 2021 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses!
Thu May 13 13:03:28 2021 user.notice dnsmasq: Allowing 127.0.0.0/8 responses
Thu May 13 13:03:28 2021 daemon.info dnsmasq[732]: Connected to system UBus
Thu May 13 13:03:28 2021 authpriv.info dropbear[807]: Not backgrounding
Thu May 13 13:03:28 2021 kern.info kernel: [   21.811837] xt_FULLCONENAT: RFC3489 Full Cone NAT module
Thu May 13 13:03:28 2021 kern.info kernel: [   21.811837] xt_FULLCONENAT: Copyright (C) 2018 Chion Tang <[email protected]>
Thu May 13 13:03:29 2021 kern.info kernel: [   22.301748] EXT4-fs (mmcblk0p1): mounted filesystem without journal. Opts:
Thu May 13 13:03:29 2021 user.notice : Added device handler type: 8021ad
Thu May 13 13:03:29 2021 user.notice : Added device handler type: 8021q
Thu May 13 13:03:29 2021 user.notice : Added device handler type: macvlan
Thu May 13 13:03:29 2021 user.notice : Added device handler type: veth
Thu May 13 13:03:29 2021 user.notice : Added device handler type: bridge
Thu May 13 13:03:29 2021 user.notice : Added device handler type: Network device
Thu May 13 13:03:29 2021 user.notice : Added device handler type: tunnel
Thu May 13 13:03:29 2021 kern.info kernel: [   22.598036] br-lan: port 1(eth1) entered blocking state
Thu May 13 13:03:29 2021 kern.info kernel: [   22.598550] br-lan: port 1(eth1) entered disabled state
Thu May 13 13:03:29 2021 kern.info kernel: [   22.599344] device eth1 entered promiscuous mode
Thu May 13 13:03:29 2021 daemon.notice netifd: Interface 'lan' is enabled
Thu May 13 13:03:29 2021 daemon.notice netifd: Interface 'lan' is setting up now
Thu May 13 13:03:29 2021 kern.info kernel: [   22.602479] br-lan: port 1(eth1) entered blocking state
Thu May 13 13:03:29 2021 kern.info kernel: [   22.602981] br-lan: port 1(eth1) entered forwarding state
Thu May 13 13:03:29 2021 daemon.notice netifd: Interface 'lan' is now up
Thu May 13 13:03:29 2021 daemon.notice netifd: bridge 'br-lan' link is up
Thu May 13 13:03:29 2021 daemon.notice netifd: Interface 'lan' has link connectivity
Thu May 13 13:03:29 2021 daemon.notice netifd: Interface 'loopback' is enabled
Thu May 13 13:03:29 2021 daemon.notice netifd: Interface 'loopback' is setting up now
Thu May 13 13:03:29 2021 daemon.notice netifd: Interface 'loopback' is now up
Thu May 13 13:03:29 2021 kern.notice kernel: [   22.621312] r8152 4-1:1.0 eth1: Promiscuous mode enabled
Thu May 13 13:03:29 2021 kern.info kernel: [   22.623269] r8152 4-1:1.0 eth1: carrier on
Thu May 13 13:03:29 2021 kern.info kernel: [   22.682989] rk_gmac-dwmac ff540000.ethernet eth0: PHY [stmmac-0:01] driver [RTL8211E Gigabit Ethernet]
Thu May 13 13:03:29 2021 kern.info kernel: [   22.693506] rk_gmac-dwmac ff540000.ethernet eth0: No Safety Features support found
Thu May 13 13:03:29 2021 kern.warn kernel: [   22.694322] rk_gmac-dwmac ff540000.ethernet eth0: PTP not supported by HW
Thu May 13 13:03:29 2021 kern.info kernel: [   22.694943] rk_gmac-dwmac ff540000.ethernet eth0: configuring for phy/rgmii link mode
Thu May 13 13:03:29 2021 daemon.notice netifd: Interface 'wan' is enabled
Thu May 13 13:03:29 2021 daemon.notice netifd: Interface 'wan6' is enabled
Thu May 13 13:03:29 2021 daemon.notice netifd: Network device 'eth1' link is up
Thu May 13 13:03:29 2021 daemon.notice netifd: Network device 'lo' link is up
Thu May 13 13:03:29 2021 daemon.notice netifd: Interface 'loopback' has link connectivity
Thu May 13 13:03:29 2021 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Thu May 13 13:03:30 2021 cron.err crond[1249]: crond (busybox 1.33.0) started, log level 5
Thu May 13 13:03:30 2021 user.notice : UA2F processor start at [1302].
Thu May 13 13:03:30 2021 user.notice : Try to start UA2F processor at [1302].
Thu May 13 13:03:30 2021 syslog.notice UA2F[1302]: Pipset inited.
Thu May 13 13:03:30 2021 syslog.notice UA2F[1302]: UA2F has inited successful.
Thu May 13 13:03:30 2021 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/dhcp
Thu May 13 13:03:30 2021 user.notice ucitrack: Setting up /etc/config/wireless reload dependency on /etc/config/network
Thu May 13 13:03:30 2021 kern.info kernel: [   23.613650] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Thu May 13 13:03:30 2021 user.notice ucitrack: Setting up /etc/config/firewall reload dependency on /etc/config/luci-splash
Thu May 13 13:03:30 2021 daemon.err odhcpd[1075]: Failed to send to ff02::1%lan@br-lan (Address not available)
Thu May 13 13:03:30 2021 user.notice ucitrack: Setting up /etc/config/firewall reload dependency on /etc/config/qos
Thu May 13 13:03:30 2021 user.notice ucitrack: Setting up /etc/config/firewall reload dependency on /etc/config/miniupnpd
Thu May 13 13:03:30 2021 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/odhcpd
Thu May 13 13:03:31 2021 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Thu May 13 13:03:31 2021 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Thu May 13 13:03:31 2021 user.notice ucitrack: Setting up /etc/config/system reload dependency on /etc/config/luci_statistics
Thu May 13 13:03:31 2021 user.notice ucitrack: Setting up /etc/config/system reload dependency on /etc/config/dhcp
Thu May 13 13:03:31 2021 user.notice ucitrack: Setting up /etc/config/cpufreq reload trigger for non-procd /etc/init.d/cpufreq
Thu May 13 13:03:31 2021 user.notice ucitrack: Setting up /etc/config/shadowsocksr reload trigger for non-procd /etc/init.d/shadowsocksr
Thu May 13 13:03:31 2021 user.notice ucitrack: Setting up /etc/config/mia reload trigger for non-procd /etc/init.d/mia
Thu May 13 13:03:31 2021 user.notice ucitrack: Setting up /etc/config/turboacc reload trigger for non-procd /etc/init.d/turboacc
Thu May 13 13:03:31 2021 daemon.notice procd: /etc/rc.d/S90kms: ImmortalWrt
Thu May 13 13:03:31 2021 daemon.notice procd: /etc/rc.d/S90kms: ImmortalWrt
Thu May 13 13:03:31 2021 user.info vlmcsd[2004]: Read ini file /etc/vlmcsd.ini
Thu May 13 13:03:31 2021 user.info vlmcsd[2004]: Listening on 0.0.0.0:1688
Thu May 13 13:03:31 2021 user.info vlmcsd[2004]: Listening on [::]:1688
Thu May 13 13:03:31 2021 user.info vlmcsd[2004]: vlmcsd private build started successfully
Thu May 13 13:03:31 2021 daemon.notice procd: /etc/rc.d/S90turboacc: net.ipv4.tcp_congestion_control = bbr
Thu May 13 13:03:31 2021 daemon.notice procd: /etc/rc.d/S90turboacc: Stop DNS Caching
Thu May 13 13:03:32 2021 daemon.notice netifd: Network device 'eth0' link is up
Thu May 13 13:03:32 2021 daemon.notice netifd: Interface 'wan' has link connectivity
Thu May 13 13:03:32 2021 daemon.notice netifd: Interface 'wan' is setting up now
Thu May 13 13:03:32 2021 daemon.notice netifd: Interface 'wan6' has link connectivity
Thu May 13 13:03:32 2021 daemon.notice netifd: Interface 'wan6' is setting up now
Thu May 13 13:03:32 2021 kern.info kernel: [   25.758397] rk_gmac-dwmac ff540000.ethernet eth0: Link is Up - 100Mbps/Full - flow control off
Thu May 13 13:03:32 2021 kern.info kernel: [   25.759188] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Thu May 13 13:03:32 2021 daemon.notice netifd: wan (2110): udhcpc: started, v1.33.0
Thu May 13 13:03:32 2021 daemon.err odhcp6c[2109]: Failed to send RS (Address not available)
Thu May 13 13:03:32 2021 daemon.notice netifd: wan (2110): udhcpc: sending discover
Thu May 13 13:03:33 2021 daemon.err odhcp6c[2109]: Failed to send SOLICIT message to ff02::1:2 (Address not available)
Thu May 13 13:03:34 2021 daemon.notice netifd: wan (2110): udhcpc: sending select for 10.184.184.158
Thu May 13 13:03:34 2021 daemon.notice netifd: wan (2110): udhcpc: lease of 10.184.184.158 obtained, lease time 691200
Thu May 13 13:03:34 2021 daemon.notice netifd: Interface 'wan' is now up
Thu May 13 13:03:34 2021 user.notice firewall: Reloading firewall due to ifup of wan (eth0)
Thu May 13 13:03:34 2021 kern.warn kernel: [   27.225475] rkp-ipid: Successfully modified 2 packages, in which 2 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:03:34 2021 daemon.info dnsmasq[2323]: Connected to system UBus
Thu May 13 13:03:34 2021 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses!
Thu May 13 13:03:34 2021 user.notice dnsmasq: Allowing 127.0.0.0/8 responses
Thu May 13 13:03:34 2021 user.notice ddns-scripts[2369]: myddns_ipv4: PID '2369' started at 2021-05-13 13:03
Thu May 13 13:03:34 2021 user.warn ddns-scripts[2369]: myddns_ipv4: Service section disabled! - TERMINATE
Thu May 13 13:03:34 2021 user.warn ddns-scripts[2369]: myddns_ipv4: PID '2369' exit WITH ERROR '1' at 2021-05-13 13:03
Thu May 13 13:03:35 2021 kern.warn kernel: [   28.200554] rkp-ipid: Successfully modified 4 packages, in which 4 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:03:35 2021 kern.warn kernel: [   28.233343] rkp-ipid: Successfully modified 8 packages, in which 8 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:03:36 2021 kern.warn kernel: [   28.911665] rkp-ipid: Successfully modified 16 packages, in which 16 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:03:37 2021 daemon.info dnsmasq[2661]: Connected to system UBus
Thu May 13 13:03:37 2021 daemon.notice procd: /etc/rc.d/S90turboacc: DNSMASQ change
Thu May 13 13:03:38 2021 kern.warn kernel: [   31.217819] rkp-ipid: Successfully modified 32 packages, in which 32 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:03:42 2021 kern.warn kernel: [   35.207615] rkp-ipid: Successfully modified 64 packages, in which 64 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:03:48 2021 daemon.err uhttpd[1333]: luci: accepted login on / for root from 192.168.1.124
Thu May 13 13:03:48 2021 kern.warn kernel: [   41.693797] rkp-ipid: Successfully modified 128 packages, in which 128 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:04:04 2021 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses!
Thu May 13 13:04:04 2021 user.notice dnsmasq: Allowing 127.0.0.0/8 responses
Thu May 13 13:04:07 2021 daemon.info dnsmasq[3194]: Connected to system UBus
Thu May 13 13:04:07 2021 daemon.notice procd: /etc/rc.d/S96led: setting up led WAN
Thu May 13 13:04:07 2021 daemon.notice procd: /etc/rc.d/S96led: setting up led LAN
Thu May 13 13:04:07 2021 daemon.notice ttyd[3330]: ttyd 1.6.3 (libwebsockets 3.1.0)
Thu May 13 13:04:07 2021 daemon.notice ttyd[3330]: tty configuration:
Thu May 13 13:04:07 2021 daemon.notice ttyd[3330]:   start command: /bin/login
Thu May 13 13:04:07 2021 daemon.notice ttyd[3330]:   close signal: SIGHUP (1)
Thu May 13 13:04:07 2021 daemon.notice ttyd[3330]:   terminal type: xterm-256color
Thu May 13 13:04:07 2021 daemon.notice ttyd[3330]:  Using foreign event loop...
Thu May 13 13:04:07 2021 daemon.notice ttyd[3330]: Creating Vhost 'default' port 7681, 2 protocols, IPv6 off
Thu May 13 13:04:07 2021 daemon.notice ttyd[3330]:  Listening on port: 7681
Thu May 13 13:04:07 2021 daemon.notice procd: /etc/rc.d/S99zerotier: disabled in config
Thu May 13 13:04:07 2021 daemon.info procd: - init complete -
Thu May 13 13:04:08 2021 kern.warn kernel: [   60.960643] rkp-ipid: Successfully modified 256 packages, in which 256 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:05:16 2021 authpriv.info dropbear[3516]: Child connection from 192.168.1.124:51558
Thu May 13 13:05:17 2021 authpriv.notice dropbear[3516]: Pubkey auth succeeded for 'root' with key sha1!! de:0e:a6:01:a7:c8:d4:6d:c7:f3:ae:03:38:13:04:38:4c:95:42:7a from 192.168.1.124:51558
Thu May 13 13:05:57 2021 kern.warn kernel: [  167.921489] rkp-ipid: Successfully modified 512 packages, in which 512 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:10:03 2021 kern.warn kernel: [  413.780262] rkp-ipid: Successfully modified 1024 packages, in which 1024 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:10:05 2021 syslog.info UA2F[1302]: UA2F has handled 8 ua http, 581 tcp. Set 0 mark and 0 noUA mark in 6 minutes and 35 seconds
Thu May 13 13:13:36 2021 kern.warn kernel: [  626.497908] rkp-ipid: Successfully modified 2048 packages, in which 2048 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 13:14:06 2021 authpriv.info dropbear[3560]: Child connection from 192.168.1.124:51701
Thu May 13 13:14:06 2021 authpriv.notice dropbear[3560]: Pubkey auth succeeded for 'root' with key sha1!! de:0e:a6:01:a7:c8:d4:6d:c7:f3:ae:03:38:13:04:38:4c:95:42:7a from 192.168.1.124:51701
Thu May 13 13:14:45 2021 kern.info kernel: [  695.761609] device eth0 entered promiscuous mode
Thu May 13 13:15:06 2021 syslog.info UA2F[1302]: UA2F has handled 16 ua http, 1234 tcp. Set 1 mark and 0 noUA mark in 11 minutes and 36 seconds
Thu May 13 13:17:50 2021 kern.warn kernel: [  880.265030] rkp-ipid: Successfully modified 4096 packages, in which 4096 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
 13 13:51:15 2021 kern.warn kernel: [ 2885.932999] rkp-ipid: Successfully modified 8192 packages, in which 8192 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.
Thu May 13 14:20:00 2021 cron.err crond[1249]: USER root pid 4699 cmd sh /etc/config/xyw.sh
Thu May 13 14:20:05 2021 user.notice 【校园网】: 脚本开始
Thu May 13 14:20:05 2021 user.notice 【校园网】: ping 114.114.114.114
Thu May 13 14:20:05 2021 user.notice 【校园网】: 网络连接正常
Thu May 13 14:20:05 2021 user.notice 【校园网】: 脚本结束
Thu May 13 14:52:59 2021 daemon.err uhttpd[1333]: luci: accepted login on /admin/status/syslog for root from 192.168.1.124
Thu May 13 14:56:38 2021 authpriv.info dropbear[3516]: Exit (root) from <192.168.1.124:51558>: Exited normally
Thu May 13 14:58:19 2021 authpriv.info dropbear[4842]: Child connection from 192.168.1.124:56011
Thu May 13 14:58:20 2021 authpriv.notice dropbear[4842]: Pubkey auth succeeded for 'root' with key sha1!! de:0e:a6:01:a7:c8:d4:6d:c7:f3:ae:03:38:13:04:38:4c:95:42:7a from 192.168.1.124:56011
Thu May 13 14:59:13 2021 authpriv.info dropbear[4842]: Exit (root) from <192.168.1.124:56011>: Exited normally
Thu May 13 15:08:49 2021 kern.warn kernel: [ 7540.481142] rkp-ipid: Successfully modified 16384 packages, in which 16384 IDs are in increasing order, 0 IDs are random. There are 0 packages not writable.

对应此时路由器内日志(删除部分校园网脚本登录信息)

from ua2f.

Matt-wzy avatar Matt-wzy commented on June 13, 2024

中午抓的这个包,在电脑开启clash代理的时候莫名其妙成功了几次,不过大多数都没成功
image.png

from ua2f.

Zxilly avatar Zxilly commented on June 13, 2024

看起来UA2F没有接收到这些包,检查一下你的拓扑吧。。。你这环境太复杂了我没看明白

from ua2f.

Zxilly avatar Zxilly commented on June 13, 2024

我去看了一下rkp-ipid的设计,emmm。。。不太兼容
那边已经给包的mark位加上标记了,会导致ua2f不处理这些包,ua2f是默认包上没有任何标记的

from ua2f.

XingNian-www avatar XingNian-www commented on June 13, 2024

(怕不是开启了硬件加速或者Flow Offloading 转发加速的锅

from ua2f.

Matt-wzy avatar Matt-wzy commented on June 13, 2024

由于本人实操后发现改ua+ipid+ttl+时间偏移等一套组合拳打完还是莫得用处,该禁网还是禁网,算了算了,直接住没网大学得了,也不纠结这些细节了,把有关的抓包文件和编辑历史都删掉了,所有编辑仅此而已,并无它改动,望后人看到此issue(当然没人看)时周知,也十分感谢仓库作者对于我问题的耐心分析和解答,虽然没有在实际上帮到我成功使用整个互联网,但是也对仓库作者做出十足的敬意,感谢您写出这样的代码给我们一代又一代人用,让我们在看到一丝希望的光时也能了解到相关的网络原理。
只可惜,我无幸成为那一批被圣光普照到的人,只希望,更多的人能通过高考中多考一两分钟,使自己以后生活在没有恶心的网络限制的地方。

from ua2f.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.