Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RPCError #6078

Open
snakwu opened this issue Nov 6, 2022 · 50 comments
Open

RPCError #6078

snakwu opened this issue Nov 6, 2022 · 50 comments

Comments

@snakwu
Copy link

snakwu commented Nov 6, 2022

RPC call to luci/getFeatures failed with error -32000: Object not found

@snakwu
Copy link
Author

snakwu commented Nov 6, 2022

Screenshot_20221106_225937

@M95D
Copy link

M95D commented Nov 9, 2022

It might be the same as: #4555

@jow-
Copy link
Contributor

jow- commented Nov 9, 2022

Run service rpcd restart and check logread for errors. Also run ucode /usr/share/rpcd/ucode/luci and see if this returns without output.

@snakwu
Copy link
Author

snakwu commented Nov 10, 2022

Run service rpcd restart and check logread for errors. Also run ucode /usr/share/rpcd/ucode/luci and see if this returns without output.

5VH}U0Z8@GRN9EO1`OJ5A
}}}L{TO9)_4DCA$TX3DU%B7

nothing is output

@rendiix
Copy link

rendiix commented Nov 10, 2022

Sampe problem
Screenshot_20221110-203709407 (1)

@jow-
Copy link
Contributor

jow- commented Nov 10, 2022

Is rpcd-mod-ucode installed?

@snakwu
Copy link
Author

snakwu commented Nov 10, 2022

@jow-
image

image

@jow-
Copy link
Contributor

jow- commented Nov 10, 2022

Please provide the output of ubus -v list. Also mention the OpenWrt target

@ptpt52
Copy link
Contributor

ptpt52 commented Nov 10, 2022

@jow-

my lagency luci code cannot run:
https://github.com/x-wrt/com.x-wrt/blob/201a40c0f1eca3f0d68fdc08e286fac4eb736b37/luci-app-natcap/files/luci/controller/natcap.lua#L175-L211

function get_openvpn_client_udp()
	local reader = ltn12_popen("sh /usr/share/natcapd/natcapd.openvpn.sh gen_client_udp")

	luci.http.header('Content-Disposition', 'attachment; filename="natcap-client-udp.ovpn"')
	luci.http.prepare_content("application/x-openvpn-profile")
	luci.ltn12.pump.all(reader, luci.http.write)
end

function ltn12_popen(command)

	local fdi, fdo = nixio.pipe()
	local pid = nixio.fork()

	if pid > 0 then
		fdo:close()
		local close
		return function()
			local buffer = fdi:read(2048)
			local wpid, stat = nixio.waitpid(pid, "nohang")
			if not close and wpid and stat == "exited" then
				close = true
			end

			if buffer and #buffer > 0 then
				return buffer
			elseif close then
				fdi:close()
				return nil
			end
		end
	elseif pid == 0 then
		nixio.dup(fdo, nixio.stdout)
		fdi:close()
		fdo:close()
		nixio.exec("/bin/sh", "-c", command)
	end
end

error in logread:

Fri Nov 11 06:04:36 2022 daemon.info uwsgi-luci: sed: write error
Fri Nov 11 06:04:36 2022 daemon.info uwsgi-luci: sh: write error: Broken pipe
Fri Nov 11 06:04:36 2022 daemon.info uwsgi-luci: cat: write error: Broken pipe
Fri Nov 11 06:04:36 2022 daemon.info uwsgi-luci: sh: write error: Broken pipe
Fri Nov 11 06:04:36 2022 daemon.info uwsgi-luci: cat: write error: Broken pipe
Fri Nov 11 06:04:36 2022 daemon.info uwsgi-luci: sh: write error: Broken pipe
Fri Nov 11 06:04:36 2022 daemon.info uwsgi-luci: cat: write error: Broken pipe
Fri Nov 11 06:04:36 2022 daemon.info uwsgi-luci: sh: write error: Broken pipe
Fri Nov 11 06:04:36 2022 daemon.info uwsgi-luci: cat: write error: Broken pipe
Fri Nov 11 06:04:36 2022 daemon.info uwsgi-luci: sh: write error: Broken pipe
Fri Nov 11 06:05:06 2022 daemon.info uwsgi-luci: sed: write error
Fri Nov 11 06:05:06 2022 daemon.info uwsgi-luci: sh: write error: Broken pipe
Fri Nov 11 06:05:06 2022 daemon.info uwsgi-luci: cat: write error: Broken pipe
Fri Nov 11 06:05:06 2022 daemon.info uwsgi-luci: sh: write error: Broken pipe
Fri Nov 11 06:05:06 2022 daemon.info uwsgi-luci: cat: write error: Broken pipe
Fri Nov 11 06:05:06 2022 daemon.info uwsgi-luci: sh: write error: Broken pipe
Fri Nov 11 06:05:06 2022 daemon.info uwsgi-luci: cat: write error: Broken pipe
Fri Nov 11 06:05:06 2022 daemon.info uwsgi-luci: sh: write error: Broken pipe
Fri Nov 11 06:05:06 2022 daemon.info uwsgi-luci: cat: write error: Broken pipe
Fri Nov 11 06:05:06 2022 daemon.info uwsgi-luci: sh: write error: Broken pipe

@ptpt52
Copy link
Contributor

ptpt52 commented Nov 10, 2022

hmm, I should open an new issue?

@snakwu
Copy link
Author

snakwu commented Nov 10, 2022

Please provide the output of ubus -v list. Also mention the OpenWrt target

root@SnakWu-OpenWrt:~# ubus -v list
'dhcp' @ad719314
	"ipv4leases":{}
	"ipv6leases":{}
	"add_lease":{"ip":"String","mac":"String","duid":"String","hostid":"String","leasetime":"String","name":"String"}
'dnsmasq' @5d120a16
	"metrics":{}
	"set_connmark_allowlist":{"mark":"Integer","mask":"Integer","patterns":"Array"}
'dnsmasq.dns' @36aeb29b
'file' @9a3e035e
	"read":{"path":"String","base64":"Boolean","ubus_rpc_session":"String"}
	"write":{"path":"String","data":"String","append":"Boolean","mode":"Integer","base64":"Boolean","ubus_rpc_session":"String"}
	"list":{"path":"String","ubus_rpc_session":"String"}
	"stat":{"path":"String","ubus_rpc_session":"String"}
	"md5":{"path":"String","ubus_rpc_session":"String"}
	"remove":{"path":"String","ubus_rpc_session":"String"}
	"exec":{"command":"String","params":"Array","env":"Table","ubus_rpc_session":"String"}
'hotplug.dhcp' @07d8d6ed
	"call":{"env":"Array"}
'hotplug.iface' @dfef3157
	"call":{"env":"Array"}
'hotplug.neigh' @9f4f5410
	"call":{"env":"Array"}
'hotplug.net' @215495a6
	"call":{"env":"Array"}
'hotplug.ntp' @818c934d
	"call":{"env":"Array"}
'hotplug.tftp' @c6f62bda
	"call":{"env":"Array"}
'iwinfo' @babb5594
	"devices":{}
	"info":{"device":"String"}
	"scan":{"device":"String"}
	"assoclist":{"device":"String","mac":"String"}
	"freqlist":{"device":"String"}
	"txpowerlist":{"device":"String"}
	"countrylist":{"device":"String"}
	"survey":{"device":"String"}
	"phyname":{"section":"String"}
'log' @1a2c5c3b
	"read":{"lines":"Integer","stream":"Boolean","oneshot":"Boolean"}
	"write":{"event":"String"}
'luci-rpc' @952c05c2
	"getNetworkDevices":{}
	"getWirelessDevices":{}
	"getHostHints":{}
	"getDUIDHints":{}
	"getBoardJSON":{}
	"getDHCPLeases":{"family":"Integer"}
'luci.ddns' @763185ec
	"get_services_log":{"service_name":"String"}
	"get_env":{}
	"get_ddns_state":{}
	"get_services_status":{}
'network' @6d7ab89e
	"restart":{}
	"reload":{}
	"add_host_route":{"target":"String","v6":"Boolean","interface":"String","exclude":"Boolean"}
	"get_proto_handlers":{}
	"add_dynamic":{"name":"String"}
	"netns_updown":{"jail":"String","start":"Boolean"}
'network.device' @df4af68e
	"status":{"name":"String"}
	"set_alias":{"alias":"Array","device":"String"}
	"set_state":{"name":"String","defer":"Boolean","auth_status":"Boolean"}
	"stp_init":{}
'network.interface' @679ca21c
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.iptv' @7c0632ce
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.lan' @3cfa522f
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.loopback' @5395e1bb
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.modem' @03dec105
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.wan' @7a968697
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.wan6' @eb860d86
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.rrdns' @bc48c243
	"lookup":{"addrs":"Array","timeout":"Integer","server":"String","port":"(unknown)","limit":"Integer"}
'network.wireless' @6adb1e95
	"up":{}
	"down":{}
	"reconf":{}
	"status":{}
	"notify":{}
	"get_validate":{}
'rc' @8dbe92ce
	"list":{}
	"init":{"name":"String","action":"String"}
'rpc-sys' @4ca58df0
	"packagelist":{"all":"Boolean"}
	"password_set":{"user":"String","password":"String"}
	"upgrade_test":{}
	"upgrade_start":{"keep":"Boolean"}
	"upgrade_clean":{}
	"factory":{}
	"reboot":{}
'service' @90172790
	"set":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
	"add":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
	"list":{"name":"String","verbose":"Boolean"}
	"delete":{"name":"String","instance":"String"}
	"signal":{"name":"String","instance":"String","signal":"Integer"}
	"update_start":{"name":"String"}
	"update_complete":{"name":"String"}
	"event":{"type":"String","data":"Table"}
	"validate":{"package":"String","type":"String","service":"String"}
	"get_data":{"name":"String","instance":"String","type":"String"}
	"state":{"spawn":"Boolean","name":"String"}
	"watchdog":{"mode":"Integer","timeout":"Integer","name":"String","instance":"String"}
'session' @b92edece
	"create":{"timeout":"Integer"}
	"list":{"ubus_rpc_session":"String"}
	"grant":{"ubus_rpc_session":"String","scope":"String","objects":"Array"}
	"revoke":{"ubus_rpc_session":"String","scope":"String","objects":"Array"}
	"access":{"ubus_rpc_session":"String","scope":"String","object":"String","function":"String"}
	"set":{"ubus_rpc_session":"String","values":"Table"}
	"get":{"ubus_rpc_session":"String","keys":"Array"}
	"unset":{"ubus_rpc_session":"String","keys":"Array"}
	"destroy":{"ubus_rpc_session":"String"}
	"login":{"username":"String","password":"String","timeout":"Integer"}
'system' @cd51e573
	"board":{}
	"info":{}
	"reboot":{}
	"watchdog":{"frequency":"Integer","timeout":"Integer","magicclose":"Boolean","stop":"Boolean"}
	"signal":{"pid":"Integer","signum":"Integer"}
	"validate_firmware_image":{"path":"String"}
	"sysupgrade":{"path":"String","force":"Boolean","backup":"String","prefix":"String","command":"String","options":"Table"}
'uci' @6e8b5fce
	"configs":{}
	"get":{"config":"String","section":"String","option":"String","type":"String","match":"Table","ubus_rpc_session":"String"}
	"state":{"config":"String","section":"String","option":"String","type":"String","match":"Table","ubus_rpc_session":"String"}
	"add":{"config":"String","type":"String","name":"String","values":"Table","ubus_rpc_session":"String"}
	"set":{"config":"String","section":"String","type":"String","match":"Table","values":"Table","ubus_rpc_session":"String"}
	"delete":{"config":"String","section":"String","type":"String","match":"Table","option":"String","options":"Array","ubus_rpc_session":"String"}
	"rename":{"config":"String","section":"String","option":"String","name":"String","ubus_rpc_session":"String"}
	"order":{"config":"String","sections":"Array","ubus_rpc_session":"String"}
	"changes":{"config":"String","ubus_rpc_session":"String"}
	"revert":{"config":"String","ubus_rpc_session":"String"}
	"commit":{"config":"String","ubus_rpc_session":"String"}
	"apply":{"rollback":"Boolean","timeout":"Integer","ubus_rpc_session":"String"}
	"confirm":{"ubus_rpc_session":"String"}
	"rollback":{"ubus_rpc_session":"String"}
	"reload_config":{}
root@SnakWu-OpenWrt:~#

@jow-
Copy link
Contributor

jow- commented Nov 10, 2022

Please install strace and provide the output of service rpcd stop; strace /sbin/rpcd

Also: ubus call system board

@snakwu
Copy link
Author

snakwu commented Nov 11, 2022

i can't install strace and provide,I can't install the mission software right now

Please install strace and provide the output of service rpcd stop; strace /sbin/rpcd

Also: ubus call system board

Sorry,i can't install strace and provide,I can't install the mission software right now

@wangzan200808
Copy link

the same problem

@jow-
Copy link
Contributor

jow- commented Nov 13, 2022

the same questions

1 similar comment
@naluckstar
Copy link

the same questions

@naluckstar
Copy link

{
"kernel": "5.10.159",
"hostname": "OpenWrt",
"system": "MediaTek MT7628AN ver:1 eco:2",
"model": "Easywayphy DTU03_S",
"board_name": "Easywayphy,DTU03_S",
"rootfs_type": "squashfs",
"release": {
"distribution": "OpenWrt",
"version": "SNAPSHOT",
"revision": "unknown",
"target": "ramips/mt76x8",
"description": "OpenWrt SNAPSHOT unknown"
}
}

@naluckstar
Copy link

    "set_data":{}

'network.interface.wifi6' @c2e635f2
"up":{}
"down":{}
"renew":{}
"status":{}
"prepare":{}
"dump":{}
"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"notify_proto":{}
"remove":{}
"set_data":{}
'network.wireless' @fd64f66e
"up":{}
"down":{}
"reconf":{}
"status":{}
"notify":{}
"get_validate":{}
'service' @56b7f3ba
"set":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
"add":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
"list":{"name":"String","verbose":"Boolean"}
"delete":{"name":"String","instance":"String"}
"signal":{"name":"String","instance":"String","signal":"Integer"}
"update_start":{"name":"String"}
"update_complete":{"name":"String"}
"event":{"type":"String","data":"Table"}
"validate":{"package":"String","type":"String","service":"String"}
"get_data":{"name":"String","instance":"String","type":"String"}
"state":{"spawn":"Boolean","name":"String"}
"watchdog":{"mode":"Integer","timeout":"Integer","name":"String","instance":"String"}
'system' @e5a800c0
"board":{}
"info":{}
"reboot":{}
"watchdog":{"frequency":"Integer","timeout":"Integer","magicclose":"Boolean","stop":"Boolean"}
"signal":{"pid":"Integer","signum":"Integer"}
"validate_firmware_image":{"path":"String"}
"sysupgrade":{"path":"String","force":"Boolean","backup":"String","prefix":"String","command":"String","options":"Table"}
'wpa_supplicant' @5a54d93e
"config_add":{"driver":"String","iface":"String","bridge":"String","hostapd_ctrl":"String","ctrl":"String","config":"String"}
"config_remove":{"iface":"String"}

@XiaoliChan
Copy link

Got same problem

RPC call to luci/getFeatures failed with error -32000: Object not found
  at handleCallReply (http://192.168.1.102/luci-static/resources/rpc.js?v=git-22.361.69865-deed682:11:3)

@jow-
Copy link
Contributor

jow- commented Jan 10, 2023

And it is still the same questions. All people reporting this issue seem to lack the luci object in ubus. This object is hosted by rpcd and implemented using an ucode script. Maybe your builds don't have rpcd-mod-ucode installed. I requested an strace of the rpcd startup sequence a while back, haven't received it yet.

Also asked for the OpenWrt version of affected devices and the output presented contained "revision": "unknown" so I guess this is proprietary, non-official OpenWrt builds exhibiting this behavior.

Another thing you can try is executing the following command, it should return without error and no output:
ucode /usr/share/rpcd/ucode/luci

@XiaoliChan
Copy link

@jow- I can confirm the rpcd-mod-ucode have already installed, still don't know why get this exception.

@jow-
Copy link
Contributor

jow- commented Jan 11, 2023

Another thing you can try is executing the following command, it should return without error and no output:
ucode /usr/share/rpcd/ucode/luci

@XiaoliChan
Copy link

XiaoliChan commented Jan 11, 2023

ucode /usr/share/rpcd/ucode/luci

@jow- Yep, no output with this command.

After I installed luci-app-dawn, luci-mod-dashboard, luci-theme-openwrt-2020, the exception is thrown.

@jow-
Copy link
Contributor

jow- commented Jan 11, 2023

The please run service rpcd stop; service rcpd start; ubus call luci getFeatures

@XiaoliChan
Copy link

XiaoliChan commented Jan 11, 2023

The please run service rpcd stop; service rcpd start; ubus call luci getFeatures

I will try this on the weekend :)

@XiaoliChan
Copy link

@jow- Really weird, I recompile the firmware with latest commit version of OP & Luci, the exception has been gone.

@mis1042
Copy link

mis1042 commented Jan 16, 2023

The please run service rpcd stop; service rcpd start; ubus call luci getFeatures

KA1WL7L%RR@QE34@L{NXF Q

As you see,Not work
By the way,I built this firmware on 2023.1.16.This error also occurred in the firmware I built a few months ago
OpenWrt SNAPSHOT r21807-09f313bfd7

@mis1042
Copy link

mis1042 commented Jan 16, 2023

Maybe we can save this error for the Spring Festival : )

@mis1042
Copy link

mis1042 commented Jan 16, 2023

Run service rpcd restart and check logread for errors. Also run ucode /usr/share/rpcd/ucode/luci and see if this returns without output.

5VH}U0Z8@GRN9EO1`OJ5A }}}L{TO9)_4DCA$TX3DU%B7

nothing is output

I found something wrong...

Sun Jan 15 12:43:53 2023 daemon.notice netifd: wan (2087): Command failed: ubus call network.interface notify_proto { "action": 0, "link-up": false, "keep": false, "interface": "wan" }

@mis1042
Copy link

mis1042 commented Jan 16, 2023

The please run service rpcd stop; service rcpd start; ubus call luci getFeatures

ubus -v list:
'container' @d5d957db
"set":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
"add":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
"list":{"name":"String","verbose":"Boolean"}
"delete":{"name":"String","instance":"String"}
"state":{"spawn":"Boolean","name":"String"}
"get_features":{}
"console_set":{"name":"String","instance":"String"}
"console_attach":{"name":"String","instance":"String"}
'dawn' @ab324f6f
"add_mac":{"addrs":"Array"}
"get_hearing_map":{}
"get_network":{}
"reload_config":{}
'dhcp' @be0181c9
"ipv4leases":{}
"ipv6leases":{}
"add_lease":{"ip":"String","mac":"String","duid":"String","hostid":"String","leasetime":"String","name":"String"}
'dnsmasq' @51589253
"metrics":{}
'dnsmasq.dns' @5b9b2a49
'file' @e9879f6d
"read":{"path":"String","base64":"Boolean","ubus_rpc_session":"String"}
"write":{"path":"String","data":"String","append":"Boolean","mode":"Integer","base64":"Boolean","ubus_rpc_session":"String"}
"list":{"path":"String","ubus_rpc_session":"String"}
"stat":{"path":"String","ubus_rpc_session":"String"}
"md5":{"path":"String","ubus_rpc_session":"String"}
"remove":{"path":"String","ubus_rpc_session":"String"}
"exec":{"command":"String","params":"Array","env":"Table","ubus_rpc_session":"String"}
'hostapd' @b12e0815
"config_add":{"iface":"String","config":"String"}
"config_remove":{"iface":"String"}
'hotplug.dhcp' @c42d4717
"call":{"env":"Array"}
'hotplug.ieee80211' @7e98961e
"call":{"env":"Array"}
'hotplug.iface' @7228ecb1
"call":{"env":"Array"}
'hotplug.neigh' @e9af9f37
"call":{"env":"Array"}
'hotplug.net' @7dc29955
"call":{"env":"Array"}
'hotplug.ntp' @2a35069a
"call":{"env":"Array"}
'hotplug.tftp' @ef21e244
"call":{"env":"Array"}
'hotplug.usb' @ffd114d6
"call":{"env":"Array"}
'iwinfo' @d2e4b6fc
"devices":{}
"info":{"device":"String"}
"scan":{"device":"String"}
"assoclist":{"device":"String","mac":"String"}
"freqlist":{"device":"String"}
"txpowerlist":{"device":"String"}
"countrylist":{"device":"String"}
"survey":{"device":"String"}
"phyname":{"section":"String"}
'log' @bc26a7f5
"read":{"lines":"Integer","stream":"Boolean","oneshot":"Boolean"}
"write":{"event":"String"}
'luci-rpc' @1025f597
"getNetworkDevices":{}
"getWirelessDevices":{}
"getHostHints":{}
"getDUIDHints":{}
"getBoardJSON":{}
"getDHCPLeases":{"family":"Integer"}
'network' @bcd144d0
"restart":{}
"reload":{}
"add_host_route":{"target":"String","v6":"Boolean","interface":"String","exclude":"Boolean"}
"get_proto_handlers":{}
"add_dynamic":{"name":"String"}
"netns_updown":{"jail":"String","start":"Boolean"}
'network.device' @591f883a
"status":{"name":"String"}
"set_alias":{"alias":"Array","device":"String"}
"set_state":{"name":"String","defer":"Boolean","auth_status":"Boolean"}
"stp_init":{}
'network.interface' @ed0d0b85
"up":{}
"down":{}
"renew":{}
"status":{}
"prepare":{}
"dump":{}
"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"notify_proto":{}
"remove":{}
"set_data":{}
'network.interface.lan' @3b55e1c4
"up":{}
"down":{}
"renew":{}
"status":{}
"prepare":{}
"dump":{}
"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"notify_proto":{}
"remove":{}
"set_data":{}
'network.interface.loopback' @ad2ab20e
"up":{}
"down":{}
"renew":{}
"status":{}
"prepare":{}
"dump":{}
"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"notify_proto":{}
"remove":{}
"set_data":{}
'network.interface.wan' @03646933
"up":{}
"down":{}
"renew":{}
"status":{}
"prepare":{}
"dump":{}
"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"notify_proto":{}
"remove":{}
"set_data":{}
'network.interface.wan6' @b7616f09
"up":{}
"down":{}
"renew":{}
"status":{}
"prepare":{}
"dump":{}
"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
"notify_proto":{}
"remove":{}
"set_data":{}
'network.rrdns' @bfa58658
"lookup":{"addrs":"Array","timeout":"Integer","server":"String","port":"(unknown)","limit":"Integer"}
'network.wireless' @1d129af9
"up":{}
"down":{}
"reconf":{}
"status":{}
"notify":{}
"get_validate":{}
'rc' @5564cc07
"list":{}
"init":{"name":"String","action":"String"}
'rpc-sys' @a7f365a9
"packagelist":{"all":"Boolean"}
"password_set":{"user":"String","password":"String"}
"upgrade_test":{}
"upgrade_start":{"keep":"Boolean"}
"upgrade_clean":{}
"factory":{}
"reboot":{}
'service' @260e1ad9
"set":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
"add":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
"list":{"name":"String","verbose":"Boolean"}
"delete":{"name":"String","instance":"String"}
"signal":{"name":"String","instance":"String","signal":"Integer"}
"update_start":{"name":"String"}
"update_complete":{"name":"String"}
"event":{"type":"String","data":"Table"}
"validate":{"package":"String","type":"String","service":"String"}
"get_data":{"name":"String","instance":"String","type":"String"}
"state":{"spawn":"Boolean","name":"String"}
"watchdog":{"mode":"Integer","timeout":"Integer","name":"String","instance":"String"}
'session' @a17e4816
"create":{"timeout":"Integer"}
"list":{"ubus_rpc_session":"String"}
"grant":{"ubus_rpc_session":"String","scope":"String","objects":"Array"}
"revoke":{"ubus_rpc_session":"String","scope":"String","objects":"Array"}
"access":{"ubus_rpc_session":"String","scope":"String","object":"String","function":"String"}
"set":{"ubus_rpc_session":"String","values":"Table"}
"get":{"ubus_rpc_session":"String","keys":"Array"}
"unset":{"ubus_rpc_session":"String","keys":"Array"}
"destroy":{"ubus_rpc_session":"String"}
"login":{"username":"String","password":"String","timeout":"Integer"}
'system' @cf0b43ed
"board":{}
"info":{}
"reboot":{}
"watchdog":{"frequency":"Integer","timeout":"Integer","magicclose":"Boolean","stop":"Boolean"}
"signal":{"pid":"Integer","signum":"Integer"}
"validate_firmware_image":{"path":"String"}
"sysupgrade":{"path":"String","force":"Boolean","backup":"String","prefix":"String","command":"String","options":"Table"}
'uci' @e3843ad2
"configs":{}
"get":{"config":"String","section":"String","option":"String","type":"String","match":"Table","ubus_rpc_session":"String"}
"state":{"config":"String","section":"String","option":"String","type":"String","match":"Table","ubus_rpc_session":"String"}
"add":{"config":"String","type":"String","name":"String","values":"Table","ubus_rpc_session":"String"}
"set":{"config":"String","section":"String","type":"String","match":"Table","values":"Table","ubus_rpc_session":"String"}
"delete":{"config":"String","section":"String","type":"String","match":"Table","option":"String","options":"Array","ubus_rpc_session":"String"}
"rename":{"config":"String","section":"String","option":"String","name":"String","ubus_rpc_session":"String"}
"order":{"config":"String","sections":"Array","ubus_rpc_session":"String"}
"changes":{"config":"String","ubus_rpc_session":"String"}
"revert":{"config":"String","ubus_rpc_session":"String"}
"commit":{"config":"String","ubus_rpc_session":"String"}
"apply":{"rollback":"Boolean","timeout":"Integer","ubus_rpc_session":"String"}
"confirm":{"ubus_rpc_session":"String"}
"rollback":{"ubus_rpc_session":"String"}
"reload_config":{}
'umdns' @55f47a51
"set_config":{"interfaces":"Array","keep":"Boolean"}
"query":{"question":"String","interface":"String","type":"Integer"}
"fetch":{"question":"String","interface":"String","type":"Integer"}
"update":{}
"browse":{}
"hosts":{}
"reload":{}
'wpa_supplicant' @9f548ce3
"config_add":{"driver":"String","iface":"String","bridge":"String","hostapd_ctrl":"String","ctrl":"String","config":"String"}
"config_remove":{"iface":"String"}

But there is no luci getFeatures

@jow-
Copy link
Contributor

jow- commented Jan 16, 2023

@mis1042 - What's the output of ls -lh /usr/lib/rpcd/ucode.so ?

@mis1042
Copy link

mis1042 commented Jan 16, 2023

-rwxr-xr-x 1 root root 16.4K Nov 17 01:55 /usr/lib/rpcd/ucode.so

@jow-
Copy link
Contributor

jow- commented Jan 16, 2023

Then please opkg update strace; service rpcd stop; strace rpcd and provide the output here.

@mis1042
Copy link

mis1042 commented Jan 17, 2023

Then please opkg update strace; service rpcd stop; strace rpcd and provide the output here.

root@OpenWrt:~# strace rpcd
execve("/sbin/rpcd", ["rpcd"], 0x7fc76ee0 /* 13 vars */) = 0
set_thread_area(0x77eb7df0)             = 0
set_tid_address(0x77eaf69c)             = 27806
brk(NULL)                               = 0x557ee000
brk(0x557f0000)                         = 0x557f0000
mmap2(0x557ee000, 4096, PROT_NONE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x557ee000
open("/etc/ld-musl-mipsel-sf.path", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libubox.so.20220927", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
statx(3, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=37451, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0\0\37\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 106496, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x77ddb000
mmap2(0x77df3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x8000) = 0x77df3000
close(3)                                = 0
open("/lib/libubus.so.20220601", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
statx(3, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=16763, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0`\20\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 86016, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x77dc6000
mmap2(0x77dd9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x3000) = 0x77dd9000
close(3)                                = 0
open("/lib/libuci.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
statx(3, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0777, stx_size=29199, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0 \22\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 98304, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x77dae000
mmap2(0x77dc4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x6000) = 0x77dc4000
close(3)                                = 0
open("/lib/libblobmsg_json.so.20220927", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
statx(3, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=8351, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0\260\t\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 77824, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x77d9b000
mmap2(0x77dac000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x1000) = 0x77dac000
close(3)                                = 0
open("/lib/libjson-c.so.5", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libjson-c.so.5", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libjson-c.so.5", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
statx(3, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=45847, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0`)\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 114688, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x77d7f000
mmap2(0x77d99000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0xa000) = 0x77d99000
close(3)                                = 0
open("/lib/libgcc_s.so.1", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
statx(3, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=78099, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0\260'\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 147456, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x77d5b000
mmap2(0x77d7d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x12000) = 0x77d7d000
close(3)                                = 0
mprotect(0x77df3000, 4096, PROT_READ)   = 0
mprotect(0x77dd9000, 4096, PROT_READ)   = 0
mprotect(0x77dc4000, 4096, PROT_READ)   = 0
mprotect(0x77dac000, 4096, PROT_READ)   = 0
mprotect(0x77d99000, 4096, PROT_READ)   = 0
mprotect(0x77d7d000, 4096, PROT_READ)   = 0
mprotect(0x5559a000, 4096, PROT_READ)   = 0
statx(AT_FDCWD, "/var/run/rpcd", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0700, stx_size=60, ...}) = 0
umask(077)                              = 022
rt_sigaction(SIGPIPE, {sa_handler=SIG_IGN, sa_mask=[RT_68 RT_70 RT_72 RT_73 RT_80 RT_86 RT_87 RT_88 RT_89 RT_90 RT_91 RT_93 RT_94 RT_95], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=NULL}, {sa_handler=SIG_DFL, sa_mask=[RT_65 RT_67 RT_72 RT_74 RT_76 RT_79 RT_82 RT_83 RT_87 RT_88 RT_89 RT_90 RT_94 RT_95], sa_flags=0}, 16) = 0
rt_sigprocmask(SIG_UNBLOCK, [RT_1 RT_2], NULL, 16) = 0
rt_sigaction(SIGHUP, {sa_handler=0x555825e1, sa_mask=[RT_68 RT_70 RT_72 RT_73 RT_80 RT_86 RT_87 RT_88 RT_89 RT_90 RT_91 RT_93 RT_94 RT_95], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=NULL}, {sa_handler=SIG_DFL, sa_mask=[RT_65 RT_67 RT_72 RT_74 RT_76 RT_79 RT_82 RT_83 RT_87 RT_88 RT_89 RT_90 RT_94 RT_95], sa_flags=0}, 16) = 0
rt_sigaction(SIGUSR1, {sa_handler=0x555825e1, sa_mask=[RT_68 RT_70 RT_72 RT_73 RT_80 RT_86 RT_87 RT_88 RT_89 RT_90 RT_91 RT_93 RT_94 RT_95], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=NULL}, {sa_handler=SIG_DFL, sa_mask=[RT_65 RT_67 RT_72 RT_74 RT_76 RT_79 RT_82 RT_83 RT_87 RT_88 RT_89 RT_90 RT_94 RT_95], sa_flags=0}, 16) = 0
epoll_create1(0)                        = 3
fcntl64(3, F_GETFD)                     = 0
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
pipe([4, 5])                            = 4
fcntl64(4, F_GETFD)                     = 0
fcntl64(4, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(4, F_GETFL)                     = 0 (flags O_RDONLY)
fcntl64(4, F_SETFL, O_RDONLY|O_NONBLOCK|O_LARGEFILE) = 0
fcntl64(5, F_GETFD)                     = 0
fcntl64(5, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(5, F_GETFL)                     = 0x1 (flags O_WRONLY)
fcntl64(5, F_SETFL, O_WRONLY|O_NONBLOCK|O_LARGEFILE) = 0
fcntl64(4, F_GETFL)                     = 0x80 (flags O_RDONLY|O_NONBLOCK)
fcntl64(4, F_SETFL, O_RDONLY|O_NONBLOCK|O_LARGEFILE) = 0
epoll_ctl(3, EPOLL_CTL_ADD, 4, {events=EPOLLIN|EPOLLRDHUP, data={u32=2011119632, u64=2011119632}}) = 0
rt_sigaction(SIGINT, NULL, {sa_handler=SIG_DFL, sa_mask=[RT_65 RT_66 RT_67 RT_68 RT_69 RT_70 RT_71], sa_flags=0}, 16) = 0
rt_sigaction(SIGINT, {sa_handler=0x77ddeb41, sa_mask=[RT_68 RT_70 RT_72 RT_73 RT_80 RT_86 RT_87 RT_88 RT_89 RT_90 RT_91 RT_93 RT_94 RT_95], sa_flags=SA_RESTORER, sa_restorer=NULL}, NULL, 16) = 0
rt_sigaction(SIGTERM, NULL, {sa_handler=SIG_DFL, sa_mask=[RT_65 RT_66 RT_67 RT_68 RT_69 RT_70 RT_71], sa_flags=0}, 16) = 0rt_sigaction(SIGTERM, {sa_handler=0x77ddeb41, sa_mask=[RT_68 RT_70 RT_72 RT_73 RT_80 RT_86 RT_87 RT_88 RT_89 RT_90 RT_91 RT_93 RT_94 RT_95], sa_flags=SA_RESTORER, sa_restorer=NULL}, NULL, 16) = 0
rt_sigaction(SIGCHLD, NULL, {sa_handler=SIG_DFL, sa_mask=[RT_65 RT_66 RT_67 RT_68 RT_69 RT_70 RT_71], sa_flags=0}, 16) = 0rt_sigaction(SIGCHLD, {sa_handler=0x77ddeb11, sa_mask=[RT_68 RT_70 RT_72 RT_73 RT_80 RT_86 RT_87 RT_88 RT_89 RT_90 RT_91 RT_93 RT_94 RT_95], sa_flags=SA_RESTORER, sa_restorer=NULL}, NULL, 16) = 0
rt_sigaction(SIGPIPE, NULL, {sa_handler=SIG_IGN, sa_mask=[RT_67 RT_68 RT_69 RT_73 RT_74 RT_77 RT_79 RT_82 RT_83 RT_86 RT_87 RT_88 RT_89 RT_90 RT_91 RT_93 RT_94 RT_95], sa_flags=SA_RESTART}, 16) = 0
rt_sigaction(SIGINT, NULL, {sa_handler=0x77ddeb41, sa_mask=[], sa_flags=0}, 16) = 0
rt_sigaction(SIGTERM, NULL, {sa_handler=0x77ddeb41, sa_mask=[], sa_flags=0}, 16) = 0
rt_sigaction(SIGCHLD, NULL, {sa_handler=0x77ddeb11, sa_mask=[], sa_flags=0}, 16) = 0
rt_sigaction(SIGPIPE, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTART}, 16) = 0
mmap2(NULL, 69632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77d4a000
socket(AF_UNIX, SOCK_STREAM, 0)         = 6
fcntl64(6, F_GETFD)                     = 0
fcntl64(6, F_SETFD, FD_CLOEXEC)         = 0
connect(6, {sa_family=AF_UNIX, sun_path="/var/run/ubus/ubus.sock"}, 110) = 0
read(6, "\0\0\0\0\336\262\311&\0\0\0\4", 12) = 12
read(6, "", 0)                          = 0
fcntl64(6, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(6, F_SETFL, O_RDWR|O_NONBLOCK|O_LARGEFILE|O_CLOEXEC) = 0
epoll_ctl(3, EPOLL_CTL_ADD, 6, {events=EPOLLIN|EPOLLRDHUP, data={u32=2010754236, u64=2010754236}}) = 0
open("/usr/share/rpcd/acl.d/", O_RDONLY|O_LARGEFILE|O_CLOEXEC|O_DIRECTORY) = 7
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eab000
getdents64(7, 0x77eab048 /* 23 entries */, 2048) = 976
getdents64(7, 0x77eab048 /* 0 entries */, 2048) = 0
close(7)                                = 0
munmap(0x77eab000, 8192)                = 0
open("/usr/share/rpcd/acl.d/luci-app-argon-config.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n    \"luci-app-argon-config\": {"..., 4096) = 230
read(7, "", 4096)                       = 0
getrandom("\x9d\x33\xe4\x1e", 4, GRND_NONBLOCK) = 4
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-attendedsysupgrade\""..., 4096) = 538
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-app-easymesh.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n    \"luci-app-easymesh\": {\n   "..., 4096) = 227
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-app-fileassistant.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-fileassistant\": {\n\t"..., 4096) = 194
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-app-firewall.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-firewall\": {\n\t\t\"des"..., 4096) = 411
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-app-frps.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-frps\": {\n\t\t\"descrip"..., 4096) = 273
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-app-mwan3.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-mwan3\": {\n\t\t\"descri"..., 4096) = 843
read(7, "", 4096)                       = 0
close(7)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eac000
munmap(0x77eac000, 4096)                = 0
open("/usr/share/rpcd/acl.d/luci-app-nlbwmon.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-nlbwmon\": {\n\t\t\"desc"..., 4096) = 850
read(7, "", 4096)                       = 0
close(7)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eac000
munmap(0x77eac000, 4096)                = 0
open("/usr/share/rpcd/acl.d/luci-app-openclash.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-openclash\": {\n\t\t\"de"..., 4096) = 177
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-app-opkg.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-opkg\": {\n\t\t\"descrip"..., 4096) = 774
read(7, "", 4096)                       = 0
close(7)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eac000
munmap(0x77eac000, 4096)                = 0
open("/usr/share/rpcd/acl.d/luci-app-serverchan.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-serverchan\": {\n\t\t\"d"..., 4096) = 182
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-app-ttyd.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-ttyd\": {\n\t\t\"descrip"..., 4096) = 158
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-app-upnp.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-ddns\": {\n\t\t\"descrip"..., 4096) = 297
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-app-wol.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-app-wol\": {\n\t\t\"descript"..., 4096) = 287
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-base.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"unauthenticated\": {\n\t\t\"descr"..., 4096) = 946
read(7, "", 4096)                       = 0
close(7)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eac000
munmap(0x77eac000, 4096)                = 0
open("/usr/share/rpcd/acl.d/luci-compat.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"allow-full-uci-access\": {\n\t\t"..., 4096) = 171
read(7, "", 4096)                       = 0
close(7)                                = 0
open("/usr/share/rpcd/acl.d/luci-mod-network.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-mod-network-config\": {\n"..., 4096) = 1777
read(7, "", 4096)                       = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eac000
close(7)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eab000
munmap(0x77eab000, 4096)                = 0
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eaa000
munmap(0x77eac000, 4096)                = 0
munmap(0x77eaa000, 8192)                = 0
open("/usr/share/rpcd/acl.d/luci-mod-status-index.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-mod-status-index\": {\n\t\t"..., 4096) = 1073
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eac000
read(7, "", 4096)                       = 0
munmap(0x77eac000, 4096)                = 0
close(7)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eac000
munmap(0x77eac000, 4096)                = 0
open("/usr/share/rpcd/acl.d/luci-mod-status.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-mod-status-realtime\": {"..., 4096) = 2064
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eab000
read(7, "", 4096)                       = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eaa000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea9000
munmap(0x77eab000, 8192)                = 0
close(7)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eac000
munmap(0x77eac000, 4096)                = 0
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eab000
munmap(0x77ea9000, 4096)                = 0
munmap(0x77eaa000, 4096)                = 0
munmap(0x77eab000, 8192)                = 0
open("/usr/share/rpcd/acl.d/luci-mod-system.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"luci-mod-system-config\": {\n\t"..., 4096) = 4096
mmap2(NULL, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea9000
read(7, "rite\" ]\n\t\t\t},\n\t\t\t\"ubus\": {\n\t\t\t\t\""..., 4096) = 345
mmap2(NULL, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea2000
munmap(0x77ea9000, 16384)               = 0
read(7, "", 4096)                       = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eac000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eab000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eaa000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea9000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea1000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea0000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77e9f000
madvise(0x77ea3000, 4096, MADV_FREE)    = 0
munmap(0x77ea2000, 28672)               = 0
close(7)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea8000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea7000
munmap(0x77ea8000, 4096)                = 0
munmap(0x77ea7000, 4096)                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea8000
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea6000
munmap(0x77ea8000, 4096)                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea8000
munmap(0x77ea6000, 8192)                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea7000
munmap(0x77ea8000, 4096)                = 0
mmap2(NULL, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77ea3000
munmap(0x77ea7000, 4096)                = 0
munmap(0x77eac000, 4096)                = 0
munmap(0x77eab000, 4096)                = 0
munmap(0x77ea9000, 4096)                = 0
munmap(0x77eaa000, 4096)                = 0
munmap(0x77e9f000, 4096)                = 0
munmap(0x77ea1000, 4096)                = 0
munmap(0x77ea0000, 4096)                = 0
munmap(0x77ea3000, 16384)               = 0
open("/usr/share/rpcd/acl.d/unauthenticated.json", O_RDONLY|O_LARGEFILE) = 7
read(7, "{\n\t\"unauthenticated\": {\n\t\t\"descr"..., 4096) = 179
read(7, "", 4096)                       = 0
close(7)                                = 0
sendmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\6\0\1\0\0\0\0", iov_len=8}, {iov_base="\0\0\2\200\2\0\0\fsession\0\6\0\2p\202\0\0$\0\6create"..., iov_len=640}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, 0) = 648
poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\2\0\1\0\0\0\0\0\0\0\24", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\3\0\0\10\235n\242\306\5\0\0\10O\233)\361", iov_len=16}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 16
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\1\0\1\0\0\0\0\0\0\0\f", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\0\0\10\0\0\0\0", iov_len=8}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eac000
sendmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\6\0\2\0\0\0\0", iov_len=8}, {iov_base="\0\0\4\374\2\0\0\10uci\0\6\0\4\360\202\0\0\20\0\7configs\0\0\0"..., iov_len=1276}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, 0) = 1284
poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\2\0\2\0\0\0\0\0\0\0\24", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\3\0\0\10\271\207\254\1\5\0\0\108\t\202=", iov_len=16}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 16
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\1\0\2\0\0\0\0\0\0\0\f", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\0\0\10\0\0\0\0", iov_len=8}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8
sendmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\6\0\3\0\0\0\0", iov_len=8}, {iov_base="\0\0\0L\2\0\0\7rc\0\0\6\0\0@\202\0\0\f\0\4list\0\0\202\0\0000"..., iov_len=76}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, 0) = 84
poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\2\0\3\0\0\0\0\0\0\0\24", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\3\0\0\0101=\26\364\5\0\0\10n}\227@", iov_len=16}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 16
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\1\0\3\0\0\0\0\0\0\0\f", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\0\0\10\0\0\0\0", iov_len=8}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8
open("/usr/libexec/rpcd", O_RDONLY|O_LARGEFILE|O_CLOEXEC|O_DIRECTORY) = 7
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eaa000
getdents64(7, 0x77eaa248 /* 3 entries */, 2048) = 80
statx(AT_FDCWD, "/usr/libexec/rpcd/.", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=28, ...}) = 0
statx(AT_FDCWD, "/usr/libexec/rpcd/..", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_TYPE|STATX_MODE|STATX_NLINK|STATX_UID|STATX_GID|STATX_MTIME|STATX_CTIME|STATX_INO|STATX_SIZE|STATX_BLOCKS|STATX_MNT_ID, stx_attributes=STATX_ATTR_COMPRESSED, stx_mode=S_IFDIR|0755, stx_size=224, ...}) = 0
statx(AT_FDCWD, "/usr/libexec/rpcd/mwan3", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=5716, ...}) = 0
pipe([8, 9])                            = 8
rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1 RT_2], [], 16) = 0
rt_sigprocmask(SIG_BLOCK, ~[], ~[KILL STOP RTMIN RT_1 RT_2], 16) = 0
fork()                                  = 27807
rt_sigprocmask(SIG_SETMASK, ~[KILL STOP RTMIN RT_1 RT_2], NULL, 16) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 16) = 0
read(8, "{ \"status\": { \"section\": \"x\", \"i"..., 1024) = 68
sendmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\6\0\4\0\0\0\0", iov_len=8}, {iov_base="\0\0\0`\2\0\0\nmwan3\0\0\0\6\0\0P\202\0\0L\0\6status"..., iov_len=96}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, 0) = 104
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=27807, si_uid=0, si_status=0, si_utime=4 /* 0.04 s */, si_stime=2 /* 0.02 s */} ---
write(5, "w", 1)                        = 1
sigreturn({mask=[]})                    = 104
poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\2\0\4\0\0\0\0\0\0\0\24", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\3\0\0\10\200\21\331\333\5\0\0\10\36\311\331\242", iov_len=16}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 16
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\1\0\4\0\0\0\0\0\0\0\f", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\0\0\10\0\0\0\0", iov_len=8}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8
close(8)                                = 0
close(9)                                = 0
wait4(27807, NULL, 0, NULL)             = 27807
getdents64(7, 0x77eaa248 /* 0 entries */, 2048) = 0
close(7)                                = 0
munmap(0x77eaa000, 8192)                = 0
open("/usr/lib/rpcd", O_RDONLY|O_LARGEFILE|O_CLOEXEC|O_DIRECTORY) = 7
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eaa000
getdents64(7, 0x77eaa258 /* 8 entries */, 2048) = 240
statx(AT_FDCWD, "/usr/lib/rpcd/.", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=111, ...}) = 0
statx(AT_FDCWD, "/usr/lib/rpcd/..", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_TYPE|STATX_MODE|STATX_NLINK|STATX_UID|STATX_GID|STATX_MTIME|STATX_CTIME|STATX_INO|STATX_SIZE|STATX_BLOCKS|STATX_MNT_ID, stx_attributes=STATX_ATTR_COMPRESSED, stx_mode=S_IFDIR|0755, stx_size=288, ...}) = 0
statx(AT_FDCWD, "/usr/lib/rpcd/file.so", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=12675, ...}) = 0
open("/usr/lib/rpcd/file.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
statx(8, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=12675, ...}) = 0
read(8, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0@\16\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 86016, PROT_READ|PROT_EXEC, MAP_PRIVATE, 8, 0) = 0x77d35000
mmap2(0x77d47000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 8, 0x2000) = 0x77d47000
mmap2(0x77d49000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x77d49000
close(8)                                = 0
mprotect(0x77d47000, 4096, PROT_READ)   = 0
sendmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\6\0\5\0\0\0\0", iov_len=8}, {iov_base="\0\0\2$\2\0\0\tfile\0\0\0\0\6\0\2\24\202\0\0L\0\4read\0\0"..., iov_len=548}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, 0) = 556
poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\2\0\5\0\0\0\0\0\0\0\24", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\3\0\0\108\365D\21\5\0\0\10\327\376\273\256", iov_len=16}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 16
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\1\0\5\0\0\0\0\0\0\0\f", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\0\0\10\0\0\0\0", iov_len=8}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8
statx(AT_FDCWD, "/usr/lib/rpcd/iwinfo.so", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=16631, ...}) = 0
open("/usr/lib/rpcd/iwinfo.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
statx(8, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=16631, ...}) = 0
read(8, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0p\t\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 86016, PROT_READ|PROT_EXEC, MAP_PRIVATE, 8, 0) = 0x77d20000
mmap2(0x77d33000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 8, 0x3000) = 0x77d33000
close(8)                                = 0
open("/lib/libiwinfo.so.20210430", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libiwinfo.so.20210430", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libiwinfo.so.20210430", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
statx(8, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=46939, ...}) = 0
read(8, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0\300\30\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 118784, PROT_READ|PROT_EXEC, MAP_PRIVATE, 8, 0) = 0x77d03000
mmap2(0x77d1d000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 8, 0xa000) = 0x77d1d000
mmap2(0x77d1f000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x77d1f000
close(8)                                = 0
open("/lib/libnl-tiny.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libnl-tiny.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libnl-tiny.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
statx(8, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=25471, ...}) = 0
read(8, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0 \33\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 94208, PROT_READ|PROT_EXEC, MAP_PRIVATE, 8, 0) = 0x77cec000
mmap2(0x77d01000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 8, 0x5000) = 0x77d01000
close(8)                                = 0
mprotect(0x77d33000, 4096, PROT_READ)   = 0
mprotect(0x77d1d000, 4096, PROT_READ)   = 0
mprotect(0x77d01000, 4096, PROT_READ)   = 0
sendmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\6\0\6\0\0\0\0", iov_len=8}, {iov_base="\0\0\1T\2\0\0\viwinfo\0\0\6\0\1D\202\0\0\20\0\7device"..., iov_len=340}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, 0) = 348
poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\2\0\6\0\0\0\0\0\0\0\24", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\3\0\0\10j\20\17\322\5\0\0\10\17\fc%", iov_len=16}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 16
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\1\0\6\0\0\0\0\0\0\0\f", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\0\0\10\0\0\0\0", iov_len=8}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8
statx(AT_FDCWD, "/usr/lib/rpcd/luci.so", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=25091, ...}) = 0
open("/usr/lib/rpcd/luci.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
statx(8, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=25091, ...}) = 0
read(8, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0\0\21\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 94208, PROT_READ|PROT_EXEC, MAP_PRIVATE, 8, 0) = 0x77cd5000
mmap2(0x77cea000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 8, 0x5000) = 0x77cea000
close(8)                                = 0
mprotect(0x77cea000, 4096, PROT_READ)   = 0
sendmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\6\0\7\0\0\0\0", iov_len=8}, {iov_base="\0\0\0\260\2\0\0\rluci-rpc\0\0\0\0\6\0\0\234\202\0\0\30\0\21ge"..., iov_len=176}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, 0) = 184
poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\2\0\7\0\0\0\0\0\0\0\24", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\3\0\0\10\2\\N)\5\0\0\10\331J\251_", iov_len=16}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 16
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\1\0\7\0\0\0\0\0\0\0\f", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\0\0\10\0\0\0\0", iov_len=8}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8
statx(AT_FDCWD, "/usr/lib/rpcd/rpcsys.so", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=8543, ...}) = 0
open("/usr/lib/rpcd/rpcsys.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
statx(8, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=8543, ...}) = 0
read(8, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0\340\n\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 77824, PROT_READ|PROT_EXEC, MAP_PRIVATE, 8, 0) = 0x77cc2000
mmap2(0x77cd3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 8, 0x1000) = 0x77cd3000
close(8)                                = 0
mprotect(0x77cd3000, 4096, PROT_READ)   = 0
sendmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\6\0\10\0\0\0\0", iov_len=8}, {iov_base="\0\0\0\334\2\0\0\frpc-sys\0\6\0\0\314\202\0\0$\0\vpackag"..., iov_len=220}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, 0) = 228
poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\2\0\10\0\0\0\0\0\0\0\24", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\3\0\0\109\336\274\270\5\0\0\10N\353\312\v", iov_len=16}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 16
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\1\0\10\0\0\0\0\0\0\0\f", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\0\0\10\0\0\0\0", iov_len=8}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8
statx(AT_FDCWD, "/usr/lib/rpcd/rrdns.so", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=8503, ...}) = 0
open("/usr/lib/rpcd/rrdns.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
statx(8, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=8503, ...}) = 0
read(8, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0\260\n\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 77824, PROT_READ|PROT_EXEC, MAP_PRIVATE, 8, 0) = 0x77caf000
mmap2(0x77cc0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 8, 0x1000) = 0x77cc0000
close(8)                                = 0
mprotect(0x77cc0000, 4096, PROT_READ)   = 0
sendmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\6\0\t\0\0\0\0", iov_len=8}, {iov_base="\0\0\0\204\2\0\0\22network.rrdns\0\0\0\6\0\0l\202\0\0h"..., iov_len=132}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, 0) = 140
poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\2\0\t\0\0\0\0\0\0\0\24", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\3\0\0\10\224+H\4\5\0\0\10~>\301\314", iov_len=16}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 16
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0\1\0\t\0\0\0\0\0\0\0\f", iov_len=12}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 12
recvmsg(6, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\0\0\10\0\0\0\0", iov_len=8}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 8
statx(AT_FDCWD, "/usr/lib/rpcd/ucode.so", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=16811, ...}) = 0
open("/usr/lib/rpcd/ucode.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
statx(8, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=16811, ...}) = 0
read(8, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0p\20\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 86016, PROT_READ|PROT_EXEC, MAP_PRIVATE, 8, 0) = 0x77c9a000
mmap2(0x77cad000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 8, 0x3000) = 0x77cad000
close(8)                                = 0
open("/lib/libucode.so.20220812", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libucode.so.20220812", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libucode.so.20220812", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
statx(8, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=132323, ...}) = 0
read(8, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\10\0\1\0\0\0 3\0\0004\0\0\0"..., 936) = 936
mmap2(NULL, 200704, PROT_READ|PROT_EXEC, MAP_PRIVATE, 8, 0) = 0x77c69000
mmap2(0x77c98000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 8, 0x1f000) = 0x77c98000
close(8)                                = 0
mprotect(0x77cad000, 4096, PROT_READ)   = 0
mprotect(0x77c98000, 4096, PROT_READ)   = 0
open("/usr/lib/rpcd/ucode.so", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
statx(8, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0755, stx_size=16811, ...}) = 0
close(8)                                = 0
open("/usr/share/rpcd/ucode", O_RDONLY|O_LARGEFILE|O_CLOEXEC|O_DIRECTORY) = 8
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
getdents64(8, 0x77eaacf8 /* 4 entries */, 2048) = 104
statx(AT_FDCWD, "/usr/share/rpcd/ucode/.", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0777, stx_size=44, ...}) = 0
statx(AT_FDCWD, "/usr/share/rpcd/ucode/..", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0777, stx_size=41, ...}) = 0
statx(AT_FDCWD, "/usr/share/rpcd/ucode/luci", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0666, stx_size=12323, ...}) = 0
writev(2, [{iov_base="Ignoring ucode script /usr/share"..., iov_len=78}, {iov_base=NULL, iov_len=0}], 2Ignoring ucode script /usr/share/rpcd/ucode/luci because it is world writable
) = 78
statx(AT_FDCWD, "/usr/share/rpcd/ucode/luci.upnp", AT_STATX_SYNC_AS_STAT, STATX_BASIC_STATS, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0666, stx_size=3270, ...}) = 0
writev(2, [{iov_base="Ignoring ucode script /usr/share"..., iov_len=53}, {iov_base=" because it is world writable\n", iov_len=30}], 2Ignoring ucode script /usr/share/rpcd/ucode/luci.upnp because it is world writable
) = 83
writev(2, [{iov_base="", iov_len=0}, {iov_base=NULL, iov_len=0}], 2) = 0
getdents64(8, 0x77eaacf8 /* 0 entries */, 2048) = 0
close(8)                                = 0
getdents64(7, 0x77eaa258 /* 0 entries */, 2048) = 0
close(7)                                = 0
munmap(0x77eaa000, 8192)                = 0
open("/var/run/rpcd/", O_RDONLY|O_LARGEFILE|O_CLOEXEC|O_DIRECTORY) = 7
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x77eaa000
getdents64(7, 0x77eaa268 /* 3 entries */, 2048) = 80
getdents64(7, 0x77eaa268 /* 0 entries */, 2048) = 0
close(7)                                = 0
munmap(0x77eaa000, 8192)                = 0
wait4(-1, 0x7f885adc, WNOHANG, NULL)    = -1 ECHILD (No child process)
epoll_pwait(3, [{events=EPOLLIN, data={u32=2011119632, u64=2011119632}}], 10, -1, NULL, 16) = 1
read(4, "w", 4)                         = 1
read(4, 0x7f885a84, 4)                  = -1 EAGAIN (Resource temporarily unavailable)
epoll_pwait(3, 

@jow-
Copy link
Contributor

jow- commented Jan 17, 2023

Ignoring ucode script /usr/share/rpcd/ucode/luci because it is world writable
Ignoring ucode script /usr/share/rpcd/ucode/luci.upnp because it is world writable

Seems your rootfs file permissions are broken. Try the following:

chmod 0644 /usr/share/rpcd/ucode/luci
chmod 0644 /usr/share/rpcd/ucode/luci.upnp
service rpcd restart

@mis1042
Copy link

mis1042 commented Jan 17, 2023

Ignoring ucode script /usr/share/rpcd/ucode/luci because it is world writable
Ignoring ucode script /usr/share/rpcd/ucode/luci.upnp because it is world writable

Seems your rootfs file permissions are broken. Try the following:

chmod 0644 /usr/share/rpcd/ucode/luci
chmod 0644 /usr/share/rpcd/ucode/luci.upnp
service rpcd restart

Fixed
But I didn't change the permission settings, this might be a new problem

@jow-
Copy link
Contributor

jow- commented Jan 17, 2023

It does not appear to be a problem in the official builds. I assume it is an issue with your build environment, unusual umask settings or filesystem limitations.

@mis1042
Copy link

mis1042 commented Jan 17, 2023

It does not appear to be a problem in the official builds. I assume it is an issue with your build environment, unusual umask settings or filesystem limitations.

Ok, maybe I need to test more, my compilation environment is GitHub CodeSpace

@naluckstar
Copy link

chmod 0644 /usr/share/rpcd/ucode/luci
chmod 0644 /usr/share/rpcd/ucode/luci.upnp
service rpcd restart

The above can solve the problem, but I am using version 23.0.5 of openwrt and still have this issue with version 23.05.0. Is this question not included?

@thezedt
Copy link

thezedt commented Mar 3, 2024

The above can solve the problem, but I am using version 23.0.5 of openwrt and still have this issue with version 23.05.0. Is this question not included?

image

I've had the same RPC call to luci/getFeatures failed with error -32000: Object not found issue after building a slightly customized OpenWrt 23.05.2 from a work folder on which I messed with file/folder permissions (in an attempt to make them easily editable through a network share).

Running
chmod 0644 /usr/share/rpcd/ucode/luci
service rpcd restart
on the device running the broken build as suggested above by jow- fixed the issue.

After restarting from scratch and rebuilding without messing up with permissions/ownership, the generated image works perfectly.

@Saiv46
Copy link

Saiv46 commented Apr 9, 2024

Package luci-app-ddns caused the issue for me, steps in reply above fixed this too.

@marek22k
Copy link
Contributor

marek22k commented May 2, 2024

Hello, I have the same problem. I have also installed luci-app-ddns. I can log in to LuCI for a short time. But when I change the page, I am asked to log in again.
Screenshot_2024-05-02_18-12-18

$ssh root@192.168.41.1 -L 1234:127.0.0.1:443


BusyBox v1.36.1 (2024-03-22 22:09:42 UTC) built-in shell (ash)

  _______                     ________        __
 |       |.-----.-----.-----.|  |  |  |.----.|  |_
 |   -   ||  _  |  -__|     ||  |  |  ||   _||   _|
 |_______||   __|_____|__|__||________||__|  |____|
          |__| W I R E L E S S   F R E E D O M
 -----------------------------------------------------
 OpenWrt 23.05.3, r23809-234f1a2efa
 -----------------------------------------------------
root@OpenWrt:~# ubus call system board
{
	"kernel": "5.15.150",
	"hostname": "OpenWrt",
	"system": "ARMv8 Processor rev 4",
	"model": "GL.iNet GL-MT6000",
	"board_name": "glinet,gl-mt6000",
	"rootfs_type": "squashfs",
	"release": {
		"distribution": "OpenWrt",
		"version": "23.05.3",
		"revision": "r23809-234f1a2efa",
		"target": "mediatek/filogic",
		"description": "OpenWrt 23.05.3 r23809-234f1a2efa"
	}
}
root@OpenWrt:~# ubus call luci getFeatures
{
	"firewall": true,
	"firewall4": true,
	"opkg": true,
	"offloading": true,
	"br2684ctl": false,
	"swconfig": false,
	"odhcpd": true,
	"zram": false,
	"sysntpd": true,
	"ipv6": true,
	"dropbear": true,
	"cabundle": true,
	"relayd": false,
	"hostapd": {
		"cli": false,
		"eap": false,
		"11ac": true,
		"11ax": true,
		"11r": true,
		"acs": true,
		"sae": true,
		"owe": true,
		"suiteb192": false,
		"wep": false,
		"wps": false
	},
	"wpasupplicant": {
		"cli": false,
		"eap": false,
		"11ac": true,
		"11ax": true,
		"11r": true,
		"acs": true,
		"sae": true,
		"owe": true,
		"suiteb192": false,
		"wep": false,
		"wps": false
	},
	"dnsmasq": {
		"ipv6": true,
		"gnu-getopt": true,
		"dbus": false,
		"ubus": true,
		"i18n": false,
		"idn": false,
		"dhcp": true,
		"dhcpv6": false,
		"lua": false,
		"tftp": true,
		"conntrack": false,
		"ipset": false,
		"nftset": false,
		"auth": false,
		"cryptohash": false,
		"dnssec": false,
		"id": false,
		"loop-detect": true,
		"inotify": true,
		"dumpfile": true
	}
}
root@OpenWrt:~# ubus -v list
'container' @72e54ed6
	"set":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
	"add":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
	"list":{"name":"String","verbose":"Boolean"}
	"delete":{"name":"String","instance":"String"}
	"state":{"spawn":"Boolean","name":"String"}
	"get_features":{}
	"console_set":{"name":"String","instance":"String"}
	"console_attach":{"name":"String","instance":"String"}
'dhcp' @d0c82b57
	"ipv4leases":{}
	"ipv6leases":{}
	"add_lease":{"ip":"String","mac":"String","duid":"String","hostid":"String","leasetime":"String","name":"String"}
'dnsmasq' @ada7312d
	"metrics":{}
'dnsmasq.dns' @617d0003
'file' @9bd22a90
	"read":{"path":"String","base64":"Boolean","ubus_rpc_session":"String"}
	"write":{"path":"String","data":"String","append":"Boolean","mode":"Integer","base64":"Boolean","ubus_rpc_session":"String"}
	"list":{"path":"String","ubus_rpc_session":"String"}
	"stat":{"path":"String","ubus_rpc_session":"String"}
	"md5":{"path":"String","ubus_rpc_session":"String"}
	"remove":{"path":"String","ubus_rpc_session":"String"}
	"exec":{"command":"String","params":"Array","env":"Table","ubus_rpc_session":"String"}
'hostapd' @3d603234
	"reload":{"phy":"String"}
	"apsta_state":{"phy":"String","up":"Boolean","frequency":"Integer","sec_chan_offset":"Integer","csa":"Boolean","csa_count":"Integer"}
	"config_get_macaddr_list":{"phy":"String"}
	"config_set":{"phy":"String","config":"String","prev_config":"String"}
	"config_add":{"iface":"String","config":"String"}
	"config_remove":{"iface":"String"}
'hostapd.phy0-ap0' @2c3c3d60
	"reload":{}
	"get_clients":{}
	"get_status":{}
	"del_client":{"addr":"String","reason":"Integer","deauth":"Boolean","ban_time":"Integer"}
	"update_airtime":{"sta":"String","weight":"Integer"}
	"list_bans":{}
	"update_beacon":{}
	"get_features":{}
	"switch_chan":{"freq":"Integer","bcn_count":"Integer","center_freq1":"Integer","center_freq2":"Integer","bandwidth":"Integer","sec_channel_offset":"Integer","ht":"Boolean","vht":"Boolean","he":"Boolean","block_tx":"Boolean","force":"Boolean"}
	"set_vendor_elements":{"vendor_elements":"String"}
	"notify_response":{"notify_response":"Integer"}
	"bss_mgmt_enable":{"neighbor_report":"Boolean","beacon_report":"Boolean","link_measurement":"Boolean"}
	"rrm_nr_get_own":{}
	"rrm_nr_list":{}
	"rrm_nr_set":{"list":"Array"}
	"rrm_beacon_req":{"addr":"String","mode":"Integer","op_class":"Integer","channel":"Integer","duration":"Integer","bssid":"String","ssid":"String"}
	"link_measurement_req":{"addr":"String","tx-power-used":"Integer","tx-power-max":"Integer"}
'hostapd.phy1-ap0' @52472e8c
	"reload":{}
	"get_clients":{}
	"get_status":{}
	"del_client":{"addr":"String","reason":"Integer","deauth":"Boolean","ban_time":"Integer"}
	"update_airtime":{"sta":"String","weight":"Integer"}
	"list_bans":{}
	"update_beacon":{}
	"get_features":{}
	"switch_chan":{"freq":"Integer","bcn_count":"Integer","center_freq1":"Integer","center_freq2":"Integer","bandwidth":"Integer","sec_channel_offset":"Integer","ht":"Boolean","vht":"Boolean","he":"Boolean","block_tx":"Boolean","force":"Boolean"}
	"set_vendor_elements":{"vendor_elements":"String"}
	"notify_response":{"notify_response":"Integer"}
	"bss_mgmt_enable":{"neighbor_report":"Boolean","beacon_report":"Boolean","link_measurement":"Boolean"}
	"rrm_nr_get_own":{}
	"rrm_nr_list":{}
	"rrm_nr_set":{"list":"Array"}
	"rrm_beacon_req":{"addr":"String","mode":"Integer","op_class":"Integer","channel":"Integer","duration":"Integer","bssid":"String","ssid":"String"}
	"link_measurement_req":{"addr":"String","tx-power-used":"Integer","tx-power-max":"Integer"}
'hotplug.dhcp' @d42e3570
	"call":{"env":"Array"}
'hotplug.firmware' @007ca219
	"call":{"env":"Array"}
'hotplug.ieee80211' @5d47c47c
	"call":{"env":"Array"}
'hotplug.iface' @5063d4ee
	"call":{"env":"Array"}
'hotplug.neigh' @b12757fe
	"call":{"env":"Array"}
'hotplug.net' @36803389
	"call":{"env":"Array"}
'hotplug.ntp' @9a038369
	"call":{"env":"Array"}
'hotplug.tftp' @ac8c6a0c
	"call":{"env":"Array"}
'iwinfo' @62492e55
	"devices":{}
	"info":{"device":"String"}
	"scan":{"device":"String"}
	"assoclist":{"device":"String","mac":"String"}
	"freqlist":{"device":"String"}
	"txpowerlist":{"device":"String"}
	"countrylist":{"device":"String"}
	"survey":{"device":"String"}
	"phyname":{"section":"String"}
'log' @1420d32f
	"read":{"lines":"Integer","stream":"Boolean","oneshot":"Boolean"}
	"write":{"event":"String"}
'luci' @28edabe2
	"getVersion":{}
	"getInitList":{"name":"String"}
	"setInitAction":{"name":"String","action":"String"}
	"getLocaltime":{}
	"setLocaltime":{"localtime":"Integer"}
	"getTimezones":{}
	"getLEDs":{}
	"getUSBDevices":{}
	"getConntrackHelpers":{}
	"getFeatures":{}
	"getSwconfigFeatures":{"switch":"String"}
	"getSwconfigPortState":{"switch":"String"}
	"setPassword":{"username":"String","password":"String"}
	"getBlockDevices":{}
	"setBlockDetect":{}
	"getMountPoints":{}
	"getRealtimeStats":{"mode":"String","device":"String"}
	"getConntrackList":{}
	"getProcessList":{}
	"getBuiltinEthernetPorts":{}
'luci-rpc' @8991f48d
	"getNetworkDevices":{}
	"getWirelessDevices":{}
	"getHostHints":{}
	"getDUIDHints":{}
	"getBoardJSON":{}
	"getDHCPLeases":{"family":"Integer"}
'luci.advanced_reboot' @9bf573c0
	"obtain_device_info":{}
	"toggle_boot_partition":{}
'luci.ddns' @3074d434
	"get_services_log":{"service_name":"String"}
	"get_env":{}
	"get_ddns_state":{}
	"get_services_status":{}
'luci.wireguard' @38802919
	"generatePsk":{}
	"generateKeyPair":{}
	"getPublicAndPrivateKeyFromPrivate":{"privkey":"String"}
	"getWgInstances":{}
'network' @edbe36a0
	"restart":{}
	"reload":{}
	"add_host_route":{"target":"String","v6":"Boolean","interface":"String","exclude":"Boolean"}
	"get_proto_handlers":{}
	"add_dynamic":{"name":"String"}
	"netns_updown":{"jail":"String","start":"Boolean"}
'network.device' @693831b1
	"status":{"name":"String"}
	"set_alias":{"alias":"Array","device":"String"}
	"set_state":{"name":"String","defer":"Boolean","auth_status":"Boolean","auth_vlans":"Array"}
	"stp_init":{}
'network.interface' @efb3bdb2
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.crxn' @eb786d17
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.dmz' @c74c1a3a
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.lan' @9b08c2f3
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.laplace' @d7a5a35b
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.loopback' @9bc72bbb
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.upstream' @9ba65efd
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.interface.upstream_6' @71d8c933
	"up":{}
	"down":{}
	"renew":{}
	"status":{}
	"prepare":{}
	"dump":{}
	"add_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"remove_device":{"name":"String","link-ext":"Boolean","vlan":"Array"}
	"notify_proto":{}
	"remove":{}
	"set_data":{}
'network.rrdns' @38ebe862
	"lookup":{"addrs":"Array","timeout":"Integer","server":"String","port":"(unknown)","limit":"Integer"}
'network.wireless' @b75e348f
	"up":{}
	"down":{}
	"reconf":{}
	"status":{}
	"notify":{}
	"get_validate":{}
'rc' @37a22c25
	"list":{"name":"String","skip_running_check":"Boolean"}
	"init":{"name":"String","action":"String"}
'service' @714ddb0a
	"set":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
	"add":{"name":"String","script":"String","instances":"Table","triggers":"Array","validate":"Array","autostart":"Boolean","data":"Table"}
	"list":{"name":"String","verbose":"Boolean"}
	"delete":{"name":"String","instance":"String"}
	"signal":{"name":"String","instance":"String","signal":"Integer"}
	"update_start":{"name":"String"}
	"update_complete":{"name":"String"}
	"event":{"type":"String","data":"Table"}
	"validate":{"package":"String","type":"String","service":"String"}
	"get_data":{"name":"String","instance":"String","type":"String"}
	"state":{"spawn":"Boolean","name":"String"}
	"watchdog":{"mode":"Integer","timeout":"Integer","name":"String","instance":"String"}
'session' @8bf7f0ae
	"create":{"timeout":"Integer"}
	"list":{"ubus_rpc_session":"String"}
	"grant":{"ubus_rpc_session":"String","scope":"String","objects":"Array"}
	"revoke":{"ubus_rpc_session":"String","scope":"String","objects":"Array"}
	"access":{"ubus_rpc_session":"String","scope":"String","object":"String","function":"String"}
	"set":{"ubus_rpc_session":"String","values":"Table"}
	"get":{"ubus_rpc_session":"String","keys":"Array"}
	"unset":{"ubus_rpc_session":"String","keys":"Array"}
	"destroy":{"ubus_rpc_session":"String"}
	"login":{"username":"String","password":"String","timeout":"Integer"}
'system' @228530a3
	"board":{}
	"info":{}
	"reboot":{}
	"watchdog":{"frequency":"Integer","timeout":"Integer","magicclose":"Boolean","stop":"Boolean"}
	"signal":{"pid":"Integer","signum":"Integer"}
	"validate_firmware_image":{"path":"String"}
	"sysupgrade":{"path":"String","force":"Boolean","backup":"String","prefix":"String","command":"String","options":"Table"}
'uci' @3a830ca6
	"configs":{}
	"get":{"config":"String","section":"String","option":"String","type":"String","match":"Table","ubus_rpc_session":"String"}
	"state":{"config":"String","section":"String","option":"String","type":"String","match":"Table","ubus_rpc_session":"String"}
	"add":{"config":"String","type":"String","name":"String","values":"Table","ubus_rpc_session":"String"}
	"set":{"config":"String","section":"String","type":"String","match":"Table","values":"Table","ubus_rpc_session":"String"}
	"delete":{"config":"String","section":"String","type":"String","match":"Table","option":"String","options":"Array","ubus_rpc_session":"String"}
	"rename":{"config":"String","section":"String","option":"String","name":"String","ubus_rpc_session":"String"}
	"order":{"config":"String","sections":"Array","ubus_rpc_session":"String"}
	"changes":{"config":"String","ubus_rpc_session":"String"}
	"revert":{"config":"String","ubus_rpc_session":"String"}
	"commit":{"config":"String","ubus_rpc_session":"String"}
	"apply":{"rollback":"Boolean","timeout":"Integer","ubus_rpc_session":"String"}
	"confirm":{"ubus_rpc_session":"String"}
	"rollback":{"ubus_rpc_session":"String"}
	"reload_config":{}
'wpa_supplicant' @e142481e
	"phy_set_state":{"phy":"String","stop":"Boolean"}
	"phy_set_macaddr_list":{"phy":"String","macaddr":"Array"}
	"phy_status":{"phy":"String"}
	"config_set":{"phy":"String","config":"Array","defer":"Boolean"}
	"config_add":{"driver":"String","iface":"String","bridge":"String","hostapd_ctrl":"String","ctrl":"String","config":"String"}
	"config_remove":{"iface":"String"}
root@OpenWrt:~# opkg install rpcd-mod-ucode
Package rpcd-mod-ucode (2023-07-01-c07ab2f9-1) installed in root is up to date.
root@OpenWrt:~# opkg status luci-app-ddns
Package: luci-app-ddns
Version: git-23.346.52990-28c4a65
Depends: libc, luci-mod-admin-full, luci-lua-runtime, ddns-scripts
Status: install user installed
Architecture: all
Installed-Time: 1712163255

root@OpenWrt:~# logread
Thu May  2 17:57:08 2024 kern.info kernel: [    0.019184] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
Thu May  2 17:57:08 2024 kern.info kernel: [    0.019285] NET: Registered PF_UNIX/PF_LOCAL protocol family
Thu May  2 17:57:08 2024 kern.info kernel: [    0.019309] PCI: CLS 0 bytes, default 64
Thu May  2 17:57:08 2024 kern.info kernel: [    0.021017] workingset: timestamp_bits=46 max_order=18 bucket_order=0
Thu May  2 17:57:08 2024 kern.info kernel: [    0.023641] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Thu May  2 17:57:08 2024 kern.info kernel: [    0.023656] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
Thu May  2 17:57:08 2024 kern.info kernel: [    0.045612] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
Thu May  2 17:57:08 2024 kern.info kernel: [    0.048972] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled
Thu May  2 17:57:08 2024 kern.info kernel: [    0.050288] printk: console [ttyS0] disabled
Thu May  2 17:57:08 2024 kern.info kernel: [    0.070427] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 121, base_baud = 2500000) is a ST16650V2
Thu May  2 17:57:08 2024 kern.info kernel: [    0.711771] printk: console [ttyS0] enabled
Thu May  2 17:57:08 2024 kern.info kernel: [    0.716595] mtk_rng 1020f000.rng: registered RNG driver
Thu May  2 17:57:08 2024 kern.warn kernel: [    0.716653] hwrng: no data available
Thu May  2 17:57:08 2024 kern.warn kernel: [    0.725393] cacheinfo: Unable to detect cache hierarchy for CPU 0
Thu May  2 17:57:08 2024 kern.info kernel: [    0.733584] loop: module loaded
Thu May  2 17:57:08 2024 kern.info kernel: [    0.736735] Loading iSCSI transport class v2.0-870.
Thu May  2 17:57:08 2024 kern.err kernel: [    0.869041] mtk_soc_eth 15100000.ethernet: generated random MAC address f2:a7:49:3e:99:ac
Thu May  2 17:57:08 2024 kern.err kernel: [    0.877266] mtk_soc_eth 15100000.ethernet: generated random MAC address 42:c4:57:82:05:13
Thu May  2 17:57:08 2024 kern.info kernel: [    1.599911] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc009580000, irq 129
Thu May  2 17:57:08 2024 kern.info kernel: [    1.609715] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc009580000, irq 129
Thu May  2 17:57:08 2024 kern.info kernel: [    1.619230] i2c_dev: i2c /dev entries driver
Thu May  2 17:57:08 2024 kern.info kernel: [    1.624468] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0)
Thu May  2 17:57:08 2024 kern.info kernel: [    1.632936] NET: Registered PF_INET6 protocol family
Thu May  2 17:57:08 2024 kern.info kernel: [    1.638535] Segment Routing with IPv6
Thu May  2 17:57:08 2024 kern.info kernel: [    1.642206] In-situ OAM (IOAM) with IPv6
Thu May  2 17:57:08 2024 kern.info kernel: [    1.646143] NET: Registered PF_PACKET protocol family
Thu May  2 17:57:08 2024 kern.info kernel: [    1.651215] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
Thu May  2 17:57:08 2024 kern.info kernel: [    1.664248] 8021q: 802.1Q VLAN Support v1.8
Thu May  2 17:57:08 2024 kern.info kernel: [    1.669304] pstore: Using crash dump compression: deflate
Thu May  2 17:57:08 2024 kern.info kernel: [    1.720079] mt7530-mdio mdio-bus:1f: configuring for fixed/2500base-x link mode
Thu May  2 17:57:08 2024 kern.info kernel: [    1.728867] mt7530-mdio mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx
Thu May  2 17:57:08 2024 kern.info kernel: [    1.729470] mtk-msdc 11230000.mmc: phase: [map:7ffffff] [maxlen:27] [final:9]
Thu May  2 17:57:08 2024 kern.info kernel: [    1.738069] mt7530-mdio mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:00] driver [MediaTek MT7531 PHY] (irq=137)
Thu May  2 17:57:08 2024 kern.info kernel: [    1.743850] mmc0: new HS400 MMC card at address 0001
Thu May  2 17:57:08 2024 kern.info kernel: [    1.759727] mmcblk0: mmc0:0001 8GTF4R 7.28 GiB
Thu May  2 17:57:08 2024 kern.info kernel: [    1.763950] mt7530-mdio mdio-bus:1f lan3 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7531 PHY] (irq=138)
Thu May  2 17:57:08 2024 kern.warn kernel: [    1.765286] GPT:Primary header thinks Alt. header is not at the end of the disk.
Thu May  2 17:57:08 2024 kern.warn kernel: [    1.781951] GPT:1 != 15269887
Thu May  2 17:57:08 2024 kern.info kernel: [    1.784377] mt7530-mdio mdio-bus:1f lan4 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7531 PHY] (irq=139)
Thu May  2 17:57:08 2024 kern.warn kernel: [    1.784907] GPT:Alternate GPT header not at the end of the disk.
Thu May  2 17:57:08 2024 kern.warn kernel: [    1.784909] GPT:1 != 15269887
Thu May  2 17:57:08 2024 kern.warn kernel: [    1.804171] GPT: Use GNU Parted to correct GPT errors.
Thu May  2 17:57:08 2024 kern.info kernel: [    1.805057] mt7530-mdio mdio-bus:1f lan5 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7531 PHY] (irq=140)
Thu May  2 17:57:08 2024 kern.info kernel: [    1.809314]  mmcblk0: p1 p2 p3 p4 p5 p6 p7
Thu May  2 17:57:08 2024 kern.info kernel: [    1.824829] mmcblk0boot0: mmc0:0001 8GTF4R 4.00 MiB
Thu May  2 17:57:08 2024 kern.info kernel: [    1.830605] mmcblk0boot1: mmc0:0001 8GTF4R 4.00 MiB
Thu May  2 17:57:08 2024 kern.info kernel: [    1.835781] mmcblk0rpmb: mmc0:0001 8GTF4R 512 KiB, chardev (250:0)
Thu May  2 17:57:08 2024 kern.info kernel: [    2.057876] mt7530-mdio mdio-bus:1f lan1 (uninitialized): PHY [mdio-bus:07] driver [RTL8221B-VB-CG 2.5Gbps PHY] (irq=63)
Thu May  2 17:57:08 2024 kern.info kernel: [    2.069407] DSA: tree 0 setup
Thu May  2 17:57:08 2024 kern.info kernel: [    2.075530] VFS: Mounted root (squashfs filesystem) readonly on device 179:7.
Thu May  2 17:57:08 2024 kern.info kernel: [    2.082822] Freeing unused kernel memory: 448K
Thu May  2 17:57:08 2024 kern.info kernel: [    2.127920] Run /sbin/init as init process
Thu May  2 17:57:08 2024 kern.debug kernel: [    2.132000]   with arguments:
Thu May  2 17:57:08 2024 kern.debug kernel: [    2.134950]     /sbin/init
Thu May  2 17:57:08 2024 kern.debug kernel: [    2.137640]   with environment:
Thu May  2 17:57:08 2024 kern.debug kernel: [    2.140772]     HOME=/
Thu May  2 17:57:08 2024 kern.debug kernel: [    2.143116]     TERM=linux
Thu May  2 17:57:08 2024 user.info kernel: [    2.231921] init: Console is alive
Thu May  2 17:57:08 2024 user.info kernel: [    2.235424] init: - watchdog -
Thu May  2 17:57:08 2024 user.info kernel: [    2.438891] kmodloader: loading kernel modules from /etc/modules-boot.d/*
Thu May  2 17:57:08 2024 kern.info kernel: [    2.458297] usbcore: registered new interface driver usbfs
Thu May  2 17:57:08 2024 kern.info kernel: [    2.463800] usbcore: registered new interface driver hub
Thu May  2 17:57:08 2024 kern.info kernel: [    2.469151] usbcore: registered new device driver usb
Thu May  2 17:57:08 2024 kern.info kernel: [    2.478450] xhci-mtk 11200000.usb: xHCI Host Controller
Thu May  2 17:57:08 2024 kern.info kernel: [    2.483683] xhci-mtk 11200000.usb: new USB bus registered, assigned bus number 1
Thu May  2 17:57:08 2024 kern.info kernel: [    2.494154] xhci-mtk 11200000.usb: hcc params 0x01403f99 hci version 0x110 quirks 0x0000000000210010
Thu May  2 17:57:08 2024 kern.info kernel: [    2.503304] xhci-mtk 11200000.usb: irq 122, io mem 0x11200000
Thu May  2 17:57:08 2024 kern.info kernel: [    2.509126] xhci-mtk 11200000.usb: xHCI Host Controller
Thu May  2 17:57:08 2024 kern.info kernel: [    2.514336] xhci-mtk 11200000.usb: new USB bus registered, assigned bus number 2
Thu May  2 17:57:08 2024 kern.info kernel: [    2.521719] xhci-mtk 11200000.usb: Host supports USB 3.2 Enhanced SuperSpeed
Thu May  2 17:57:08 2024 kern.info kernel: [    2.529096] hub 1-0:1.0: USB hub found
Thu May  2 17:57:08 2024 kern.info kernel: [    2.532850] hub 1-0:1.0: 2 ports detected
Thu May  2 17:57:08 2024 kern.info kernel: [    2.537112] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Thu May  2 17:57:08 2024 kern.info kernel: [    2.545461] hub 2-0:1.0: USB hub found
Thu May  2 17:57:08 2024 kern.info kernel: [    2.549221] hub 2-0:1.0: 1 port detected
Thu May  2 17:57:08 2024 user.info kernel: [    2.555489] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
Thu May  2 17:57:08 2024 user.info kernel: [    2.572992] init: - preinit -
Thu May  2 17:57:08 2024 kern.info kernel: [    2.728657] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode
Thu May  2 17:57:08 2024 kern.info kernel: [    2.737103] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx
Thu May  2 17:57:08 2024 kern.info kernel: [    2.745643] mt7530-mdio mdio-bus:1f lan1: configuring for phy/2500base-x link mode
Thu May  2 17:57:08 2024 kern.info kernel: [    2.787963] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Thu May  2 17:57:08 2024 kern.notice kernel: [    2.797646] random: procd: uninitialized urandom read (4 bytes read)
Thu May  2 17:57:08 2024 kern.info kernel: [    4.829412] loop0: detected capacity change from 0 to 15178752
Thu May  2 17:57:08 2024 kern.info kernel: [    4.907872] loop0: detected capacity change from 15178752 to 15167744
Thu May  2 17:57:08 2024 kern.notice kernel: [    4.968033] F2FS-fs (loop0): Mounted with checkpoint version = 5ccce414
Thu May  2 17:57:08 2024 user.info kernel: [    4.975749] mount_root: switching to f2fs overlay
Thu May  2 17:57:08 2024 kern.warn kernel: [    4.981066] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off.
Thu May  2 17:57:08 2024 user.debug kernel: [    4.992422] urandom-seed: Seeding with /etc/urandom.seed
Thu May  2 17:57:08 2024 user.info kernel: [    5.023345] procd: - early -
Thu May  2 17:57:08 2024 user.info kernel: [    5.026273] procd: - watchdog -
Thu May  2 17:57:08 2024 user.info kernel: [    5.548578] procd: - watchdog -
Thu May  2 17:57:08 2024 user.info kernel: [    5.552329] procd: - ubus -
Thu May  2 17:57:08 2024 kern.notice kernel: [    5.567315] random: ubusd: uninitialized urandom read (4 bytes read)
Thu May  2 17:57:08 2024 kern.notice kernel: [    5.605555] random: ubusd: uninitialized urandom read (4 bytes read)
Thu May  2 17:57:08 2024 kern.notice kernel: [    5.612140] random: ubusd: uninitialized urandom read (4 bytes read)
Thu May  2 17:57:08 2024 user.info kernel: [    5.620005] procd: - init -
Thu May  2 17:57:08 2024 user.info kernel: [    5.779287] kmodloader: loading kernel modules from /etc/modules.d/*
Thu May  2 17:57:08 2024 kern.info kernel: [    5.792814] GACT probability on
Thu May  2 17:57:08 2024 kern.info kernel: [    5.796576] Mirror/redirect action on
Thu May  2 17:57:08 2024 kern.info kernel: [    5.803195] u32 classifier
Thu May  2 17:57:08 2024 kern.info kernel: [    5.805902]     input device check on
Thu May  2 17:57:08 2024 kern.info kernel: [    5.809570]     Actions configured
Thu May  2 17:57:08 2024 kern.info kernel: [    5.817573] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433(alg:7fcdfc00)/0/0/0
Thu May  2 17:57:08 2024 kern.info kernel: [    5.833010] Loading modules backported from Linux version v6.1.24-0-g0102425ac76b
Thu May  2 17:57:08 2024 kern.info kernel: [    5.840556] Backport generated by backports.git v5.15.92-1-44-gd6ea70fafd36
Thu May  2 17:57:08 2024 kern.info kernel: [    5.856010] xt_time: kernel timezone is -0000
Thu May  2 17:57:08 2024 user.info kernel: [    5.897611] urngd: v1.0.2 started.
Thu May  2 17:57:08 2024 kern.notice kernel: [    6.002385] random: crng init done
Thu May  2 17:57:08 2024 kern.notice kernel: [    6.005778] random: 23 urandom warning(s) missed due to ratelimiting
Thu May  2 17:57:08 2024 kern.info kernel: [    6.211361] mt798x-wmac 18000000.wifi: HW/SW Version: 0x8a108a10, Build Time: 20221012174648a
Thu May  2 17:57:08 2024 kern.info kernel: [    6.211361]
Thu May  2 17:57:08 2024 kern.info kernel: [    6.316722] mt798x-wmac 18000000.wifi: WM Firmware Version: ____000000, Build Time: 20221012174725
Thu May  2 17:57:08 2024 kern.info kernel: [    6.382874] mt798x-wmac 18000000.wifi: WA Firmware Version: DEV_000000, Build Time: 20221012174937
Thu May  2 17:57:08 2024 kern.warn kernel: [    6.530018] mt798x-wmac 18000000.wifi: eeprom load fail, use default bin
Thu May  2 17:57:08 2024 kern.info kernel: [   10.368892] PPP generic driver version 2.4.2
Thu May  2 17:57:08 2024 kern.info kernel: [   10.373860] NET: Registered PF_PPPOX protocol family
Thu May  2 17:57:08 2024 kern.info kernel: [   10.380157] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
Thu May  2 17:57:08 2024 kern.info kernel: [   10.387988] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
Thu May  2 17:57:08 2024 user.info kernel: [   10.400125] kmodloader: done loading kernel modules from /etc/modules.d/*
Thu May  2 17:57:09 2024 daemon.info chronyd[1379]: chronyd version 4.4 starting (+CMDMON +NTP +REFCLOCK -RTC +PRIVDROP -SCFILTER -SIGND +ASYNCDNS +NTS -SECHASH +IPV6 -DEBUG)
Thu May  2 17:57:09 2024 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Thu May  2 17:57:09 2024 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Thu May  2 17:57:09 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Thu May  2 17:57:09 2024 daemon.info dnsmasq[1]: using nameserver ::1#5353
Thu May  2 17:57:09 2024 daemon.info dnsmasq[1]: using nameserver 127.0.0.1#5353
Thu May  2 17:57:09 2024 daemon.info dnsmasq[1]: using nameserver 62.109.121.2#53 for domain sip.alice-voip.de
Thu May  2 17:57:09 2024 daemon.info dnsmasq[1]: using nameserver 62.109.121.1#53 for domain sip.alice-voip.de
Thu May  2 17:57:09 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Thu May  2 17:57:09 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:57:09 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Thu May  2 17:57:09 2024 authpriv.info dropbear[1589]: Not backgrounding
Thu May  2 17:57:09 2024 user.notice : Added device handler type: bonding
Thu May  2 17:57:09 2024 user.notice : Added device handler type: 8021ad
Thu May  2 17:57:09 2024 user.notice : Added device handler type: 8021q
Thu May  2 17:57:09 2024 user.notice : Added device handler type: macvlan
Thu May  2 17:57:09 2024 user.notice : Added device handler type: veth
Thu May  2 17:57:09 2024 user.notice : Added device handler type: bridge
Thu May  2 17:57:09 2024 user.notice : Added device handler type: Network device
Thu May  2 17:57:09 2024 user.notice : Added device handler type: tunnel
Thu May  2 17:57:09 2024 daemon.notice procd: /etc/rc.d/S25packet_steering: uci: Entry not found
Thu May  2 17:57:09 2024 daemon.notice wpa_supplicant[1749]: Successfully initialized wpa_supplicant
Thu May  2 17:57:10 2024 cron.err crond[1990]: crond (busybox 1.36.1) started, log level 5
Thu May  2 17:57:10 2024 kern.info kernel: [   12.057804] mtk_soc_eth 15100000.ethernet eth0: Link is Down
Thu May  2 17:57:10 2024 kern.info kernel: [   12.069700] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode
Thu May  2 17:57:10 2024 kern.info kernel: [   12.078120] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx
Thu May  2 17:57:10 2024 kern.info kernel: [   12.081958] device eth0 entered promiscuous mode
Thu May  2 17:57:10 2024 kern.info kernel: [   12.091798] mt7530-mdio mdio-bus:1f lan2: configuring for phy/gmii link mode
Thu May  2 17:57:10 2024 kern.info kernel: [   12.099378] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Thu May  2 17:57:10 2024 kern.info kernel: [   12.105779] br-dmz: port 1(lan2) entered blocking state
Thu May  2 17:57:10 2024 kern.info kernel: [   12.111023] br-dmz: port 1(lan2) entered disabled state
Thu May  2 17:57:10 2024 kern.info kernel: [   12.117583] device lan2 entered promiscuous mode
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'dmz' is enabled
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'dmz' is setting up now
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'dmz' is now up
Thu May  2 17:57:10 2024 kern.info kernel: [   12.133688] mt7530-mdio mdio-bus:1f lan5: configuring for phy/gmii link mode
Thu May  2 17:57:10 2024 kern.info kernel: [   12.143664] br-dmz: port 2(lan5) entered blocking state
Thu May  2 17:57:10 2024 kern.info kernel: [   12.148938] br-dmz: port 2(lan5) entered disabled state
Thu May  2 17:57:10 2024 kern.info kernel: [   12.155837] device lan5 entered promiscuous mode
Thu May  2 17:57:10 2024 kern.info kernel: [   12.166612] mt7530-mdio mdio-bus:1f lan1: configuring for phy/2500base-x link mode
Thu May  2 17:57:10 2024 kern.info kernel: [   12.208466] br-lan: port 1(lan1) entered blocking state
Thu May  2 17:57:10 2024 kern.info kernel: [   12.213694] br-lan: port 1(lan1) entered disabled state
Thu May  2 17:57:10 2024 kern.info kernel: [   12.220366] device lan1 entered promiscuous mode
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'lan' is enabled
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'lan' is setting up now
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'lan' is now up
Thu May  2 17:57:10 2024 kern.info kernel: [   12.233749] mt7530-mdio mdio-bus:1f lan3: configuring for phy/gmii link mode
Thu May  2 17:57:10 2024 kern.info kernel: [   12.243659] br-lan: port 2(lan3) entered blocking state
Thu May  2 17:57:10 2024 kern.info kernel: [   12.248896] br-lan: port 2(lan3) entered disabled state
Thu May  2 17:57:10 2024 kern.info kernel: [   12.255742] device lan3 entered promiscuous mode
Thu May  2 17:57:10 2024 kern.info kernel: [   12.267220] mt7530-mdio mdio-bus:1f lan4: configuring for phy/gmii link mode
Thu May  2 17:57:10 2024 kern.info kernel: [   12.277063] br-lan: port 3(lan4) entered blocking state
Thu May  2 17:57:10 2024 kern.info kernel: [   12.282294] br-lan: port 3(lan4) entered disabled state
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'crxn' is enabled
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'crxn' is setting up now
Thu May  2 17:57:10 2024 kern.info kernel: [   12.289294] device lan4 entered promiscuous mode
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'crxn' is now up
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'laplace' is setting up now
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'loopback' is enabled
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'loopback' is setting up now
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'loopback' is now up
Thu May  2 17:57:10 2024 kern.info kernel: [   12.537881] mtk_soc_eth 15100000.ethernet eth1: PHY [mdio-bus:01] driver [RTL8221B-VB-CG 2.5Gbps PHY] (irq=62)
Thu May  2 17:57:10 2024 kern.info kernel: [   12.548157] mtk_soc_eth 15100000.ethernet eth1: configuring for phy/2500base-x link mode
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'upstream' is enabled
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'upstream' is setting up now
Thu May  2 17:57:10 2024 daemon.notice netifd: Network device 'eth0' link is up
Thu May  2 17:57:10 2024 daemon.notice netifd: Network device 'lo' link is up
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'loopback' has link connectivity
Thu May  2 17:57:10 2024 daemon.notice netifd: Network device 'dummy0' link is up
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'crxn' has link connectivity
Thu May  2 17:57:10 2024 daemon.notice netifd: radio1 (2249): WARNING: Variable 'data' does not exist or is not an array/object
Thu May  2 17:57:10 2024 daemon.notice netifd: Interface 'laplace' is now up
Thu May  2 17:57:10 2024 daemon.notice netifd: radio0 (2247): WARNING: Variable 'data' does not exist or is not an array/object
Thu May  2 17:57:10 2024 daemon.notice netifd: Network device 'laplace' link is up
Thu May  2 17:57:10 2024 daemon.info pppd[2296]: Plugin pppoe.so loaded.
Thu May  2 17:57:10 2024 daemon.info pppd[2296]: PPPoE plugin from pppd 2.4.9
Thu May  2 17:57:11 2024 daemon.notice pppd[2296]: pppd 2.4.9 started by root, uid 0
Thu May  2 17:57:11 2024 daemon.info bird: Started
Thu May  2 17:57:11 2024 daemon.info chronyd[1379]: Allowed NTP access from 192.168.41.1/24
Thu May  2 17:57:11 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:11 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:11 2024 user.notice firewall: Reloading firewall due to ifup of dmz (br-dmz)
Thu May  2 17:57:12 2024 daemon.notice hostapd: Set new config for phy phy1:
Thu May  2 17:57:12 2024 daemon.notice hostapd: Set new config for phy phy0:
Thu May  2 17:57:12 2024 daemon.notice wpa_supplicant[1749]: Set new config for phy phy1
Thu May  2 17:57:12 2024 daemon.notice wpa_supplicant[1749]: Set new config for phy phy0
Thu May  2 17:57:12 2024 kern.info kernel: [   13.817433] mt7530-mdio mdio-bus:1f lan1: Link is Up - 1Gbps/Full - flow control rx/tx
Thu May  2 17:57:12 2024 daemon.info chronyd[1379]: Allowed NTP access from 192.168.41.1/24
Thu May  2 17:57:12 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:12 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:12 2024 kern.info kernel: [   13.849437] br-lan: port 1(lan1) entered blocking state
Thu May  2 17:57:12 2024 kern.info kernel: [   13.854675] br-lan: port 1(lan1) entered forwarding state
Thu May  2 17:57:12 2024 daemon.notice netifd: Network device 'lan1' link is up
Thu May  2 17:57:12 2024 kern.info kernel: [   13.861661] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Thu May  2 17:57:12 2024 daemon.notice netifd: bridge 'br-lan' link is up
Thu May  2 17:57:12 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Thu May  2 17:57:12 2024 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Thu May  2 17:57:12 2024 daemon.notice wpa_supplicant[1749]: Set new config for phy phy0
Thu May  2 17:57:12 2024 daemon.notice hostapd: Set new config for phy phy0: /var/run/hostapd-phy0.conf
Thu May  2 17:57:12 2024 daemon.notice hostapd: Restart interface for phy phy0
Thu May  2 17:57:12 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=DE ieee80211d=1 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935] ieee80211ax=1 he_su_beamformer=1 he_su_beamformee=1 he_mu_beamformer=1 he_bss_color=128 he_spr_sr_control=3 he_default_pe_duration=4 he_rts_threshold=1023 he_mu_edca_qos_info_param_count=0 he_mu_edca_qos_info_q_ack=0 he_mu_edca_qos_info_queue_request=0 he_mu_edca_qos_info_txop_request=0 he_mu_edca_ac_be_aifsn=8 he_mu_edca_ac_be_aci=0 he_mu_edca_ac_be_ecwmin=9 he_mu_edca_ac_be_ecwmax=10 he_mu_edca_ac_be_timer=255 he_mu_edca_ac_bk_aifsn=15 he_mu_edca_ac_bk_aci=1 he_mu_edca_ac_bk_ecwmin=9 he_mu_edca_ac_bk_ecwmax=10 he_mu_edca_ac_bk_timer=255 he_mu_edca_ac_vi_ecwmin=5 he_mu_edca_ac_vi_ecwmax=7 he_mu_edca_ac_vi_aifsn=5 he_mu_
Thu May  2 17:57:12 2024 daemon.notice wpa_supplicant[1749]: Set new config for phy phy1
Thu May  2 17:57:12 2024 kern.info kernel: [   14.243730] mt7530-mdio mdio-bus:1f lan2: Link is Up - 100Mbps/Full - flow control off
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: configfile: stat (/etc/collectd/conf.d/*.conf) failed: No such file or directory
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "conntrack" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "cpu" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "dns" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "exec" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "interface" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "ipstatistics" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "iwinfo" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "load" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "memory" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "netlink" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "ping" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "rrdtool" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: rrdtool plugin: RRASingle = true: creating only AVERAGE RRAs
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: plugin_load: plugin "thermal" successfully loaded.
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: netlink plugin: ir_init: buffer size = 4096
Thu May  2 17:57:12 2024 daemon.err collectd[3262]: Initialization complete, entering read-loop.
Thu May  2 17:57:12 2024 daemon.info chronyd[1379]: Allowed NTP access from 192.168.41.1/24
Thu May  2 17:57:12 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:12 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:12 2024 kern.info kernel: [   14.519764] br-lan: port 4(phy0-ap0) entered blocking state
Thu May  2 17:57:12 2024 kern.info kernel: [   14.525345] br-lan: port 4(phy0-ap0) entered disabled state
Thu May  2 17:57:12 2024 kern.info kernel: [   14.531153] device phy0-ap0 entered promiscuous mode
Thu May  2 17:57:12 2024 kern.info kernel: [   14.536245] br-lan: port 4(phy0-ap0) entered blocking state
Thu May  2 17:57:12 2024 kern.info kernel: [   14.541847] br-lan: port 4(phy0-ap0) entered forwarding state
Thu May  2 17:57:12 2024 kern.info kernel: [   14.547688] br-dmz: port 1(lan2) entered blocking state
Thu May  2 17:57:12 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/network
Thu May  2 17:57:12 2024 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/wireless
Thu May  2 17:57:12 2024 kern.info kernel: [   14.552941] br-dmz: port 1(lan2) entered forwarding state
Thu May  2 17:57:12 2024 user.notice ucitrack: Setting up /etc/config/luci-splash reload dependency on /etc/config/firewall
Thu May  2 17:57:12 2024 kern.info kernel: [   14.563147] br-lan: port 4(phy0-ap0) entered disabled state
Thu May  2 17:57:12 2024 user.notice ucitrack: Setting up /etc/config/qos reload dependency on /etc/config/firewall
Thu May  2 17:57:12 2024 daemon.notice hostapd: phy0-ap0: interface state UNINITIALIZED->COUNTRY_UPDATE
Thu May  2 17:57:12 2024 kern.info kernel: [   14.569200] IPv6: ADDRCONF(NETDEV_CHANGE): br-dmz: link becomes ready
Thu May  2 17:57:12 2024 daemon.notice hostapd: ACS: Automatic channel selection started, this may take a bit
Thu May  2 17:57:12 2024 daemon.notice hostapd: phy0-ap0: interface state COUNTRY_UPDATE->ACS
Thu May  2 17:57:12 2024 daemon.notice hostapd: phy0-ap0: ACS-STARTED
Thu May  2 17:57:12 2024 user.notice ucitrack: Setting up /etc/config/miniupnpd reload dependency on /etc/config/firewall
Thu May  2 17:57:12 2024 daemon.notice netifd: Network device 'lan2' link is up
Thu May  2 17:57:12 2024 daemon.notice netifd: bridge 'br-dmz' link is up
Thu May  2 17:57:12 2024 daemon.notice netifd: Interface 'dmz' has link connectivity
Thu May  2 17:57:12 2024 daemon.notice hostapd: Set new config for phy phy1: /var/run/hostapd-phy1.conf
Thu May  2 17:57:12 2024 daemon.notice hostapd: Restart interface for phy phy1
Thu May  2 17:57:12 2024 user.notice ucitrack: Setting up /etc/config/sqm reload dependency on /etc/config/firewall
Thu May  2 17:57:12 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=DE ieee80211d=1 ieee80211h=1 hw_mode=a beacon_int=100 tx_queue_data2_burst=2.0 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[HT40+][LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935] ieee80211ac=1 vht_oper_chwidth=1 vht_oper_centr_freq_seg0_idx=-6 vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][SU-BEAMFORMER][SU-BEAMFORMEE][MU-BEAMFORMER][MU-BEAMFORMEE][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN][RX-STBC-1][SOUNDING-DIMENSION-4][BF-ANTENNA-4][MAX-MPDU-11454][MAX-A-MPDU-LEN-EXP7] ieee80211ax=1 he_oper_chwidth=1 he_oper_centr_freq_seg0_idx=-6 he_su_beamformer=1 he_su_beamformee=1 he_mu_beamformer=1 he_bss_color=128 he_spr_sr_control=3 he_default_pe_duration=4 he_rts_threshold=1023 he_mu_edca_qos_info_param_count=0 he_mu_edca_qos_info_q_ack=0 he_mu_edca_qos_info_queue_request=0 he_mu_edca_qos_info_txop_request=0 he_mu_edca_ac_be_aif
Thu May  2 17:57:12 2024 kern.info kernel: [   14.614724] mt7530-mdio mdio-bus:1f lan4: Link is Up - 100Mbps/Full - flow control off
Thu May  2 17:57:12 2024 user.notice firewall: Reloading firewall due to ifup of crxn (dummy0)
Thu May  2 17:57:12 2024 user.notice ucitrack: Setting up /etc/config/odhcpd reload dependency on /etc/config/dhcp
Thu May  2 17:57:13 2024 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Thu May  2 17:57:13 2024 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Thu May  2 17:57:13 2024 user.notice ucitrack: Setting up /etc/config/luci_statistics reload dependency on /etc/config/system
Thu May  2 17:57:13 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/system
Thu May  2 17:57:13 2024 kern.info kernel: [   15.033005] br-lan: port 3(lan4) entered blocking state
Thu May  2 17:57:13 2024 kern.info kernel: [   15.038262] br-lan: port 3(lan4) entered forwarding state
Thu May  2 17:57:13 2024 kern.info kernel: [   15.044379] br-lan: port 5(phy1-ap0) entered blocking state
Thu May  2 17:57:13 2024 daemon.err asterisk: service not enabled in /etc/config/asterisk
Thu May  2 17:57:13 2024 daemon.notice procd: /etc/rc.d/S99asterisk: asterisk: service not enabled in /etc/config/asterisk
Thu May  2 17:57:13 2024 kern.info kernel: [   15.050158] br-lan: port 5(phy1-ap0) entered disabled state
Thu May  2 17:57:13 2024 kern.info kernel: [   15.055958] device phy1-ap0 entered promiscuous mode
Thu May  2 17:57:13 2024 kern.info kernel: [   15.061118] br-lan: port 5(phy1-ap0) entered blocking state
Thu May  2 17:57:13 2024 kern.info kernel: [   15.066700] br-lan: port 5(phy1-ap0) entered forwarding state
Thu May  2 17:57:13 2024 daemon.notice netifd: Network device 'lan4' link is up
Thu May  2 17:57:13 2024 daemon.notice hostapd: phy1-ap0: interface state UNINITIALIZED->COUNTRY_UPDATE
Thu May  2 17:57:13 2024 daemon.notice hostapd: ACS: Automatic channel selection started, this may take a bit
Thu May  2 17:57:13 2024 daemon.notice hostapd: phy1-ap0: interface state COUNTRY_UPDATE->ACS
Thu May  2 17:57:13 2024 daemon.notice hostapd: phy1-ap0: ACS-STARTED
Thu May  2 17:57:13 2024 daemon.notice netifd: Wireless device 'radio0' is now up
Thu May  2 17:57:13 2024 daemon.info procd: - init complete -
Thu May  2 17:57:13 2024 daemon.notice netifd: Wireless device 'radio1' is now up
Thu May  2 17:57:13 2024 daemon.info chronyd[1379]: Allowed NTP access from 192.168.41.1/24
Thu May  2 17:57:13 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:13 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 17:57:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 17:57:13 2024 kern.info kernel: [   15.444032] mt7530-mdio mdio-bus:1f lan5: Link is Up - 1Gbps/Full - flow control rx/tx
Thu May  2 17:57:13 2024 kern.info kernel: [   15.452052] br-dmz: port 2(lan5) entered blocking state
Thu May  2 17:57:13 2024 kern.info kernel: [   15.457283] br-dmz: port 2(lan5) entered forwarding state
Thu May  2 17:57:13 2024 daemon.notice netifd: Network device 'lan5' link is up
Thu May  2 17:57:13 2024 daemon.info chronyd[1379]: Allowed NTP access from 192.168.41.1/24
Thu May  2 17:57:13 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:13 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:13 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:57:13 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Thu May  2 17:57:13 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c.2650 - 6 names
Thu May  2 17:57:13 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 0 names
Thu May  2 17:57:13 2024 user.notice firewall: Reloading firewall due to ifup of laplace (laplace)
Thu May  2 17:57:13 2024 kern.info kernel: [   15.558057] br-lan: port 5(phy1-ap0) entered disabled state
Thu May  2 17:57:14 2024 daemon.err odhcpd[1926]: Failed to send to fe80::9683:c4ff:fe21:6f22%dmz@br-dmz (Address not available)
Thu May  2 17:57:14 2024 kern.info kernel: [   16.096425] mtk_soc_eth 15100000.ethernet eth1: Link is Up - 1Gbps/Full - flow control off
Thu May  2 17:57:14 2024 kern.info kernel: [   16.104717] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
Thu May  2 17:57:14 2024 daemon.notice netifd: Network device 'eth1' link is up
Thu May  2 17:57:14 2024 daemon.notice netifd: Interface 'upstream' has link connectivity
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Thu May  2 17:57:14 2024 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.43.100 -- 192.168.43.249, lease time 12h
Thu May  2 17:57:14 2024 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.41.100 -- 192.168.41.249, lease time 12h
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: using nameserver ::1#5353
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: using nameserver 127.0.0.1#5353
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: using nameserver 62.109.121.2#53 for domain sip.alice-voip.de
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: using nameserver 62.109.121.1#53 for domain sip.alice-voip.de
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 8 names
Thu May  2 17:57:14 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 0 names
Thu May  2 17:57:14 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu May  2 17:57:15 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:57:15 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 8 names
Thu May  2 17:57:15 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 0 names
Thu May  2 17:57:15 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu May  2 17:57:15 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:57:15 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 8 names
Thu May  2 17:57:15 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 2 names
Thu May  2 17:57:15 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu May  2 17:57:16 2024 user.notice unbound: default memory configuration
Thu May  2 17:57:16 2024 user.notice unbound: default recursion configuration
Thu May  2 17:57:16 2024 daemon.notice unbound: [4942:0] notice: init module 0: validator
Thu May  2 17:57:16 2024 daemon.notice unbound: [4942:0] notice: init module 1: iterator
Thu May  2 17:57:16 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-dmz) 94:83:c4:21:6f:22
Thu May  2 17:57:16 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-dmz) 192.168.43.3 94:83:c4:21:6f:22
Thu May  2 17:57:16 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-dmz) 192.168.43.3 94:83:c4:21:6f:22
Thu May  2 17:57:16 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-dmz) 192.168.43.3 94:83:c4:21:6f:22 grisha
Thu May  2 17:57:16 2024 daemon.err unbound: [4942:0] error: duplicate forward zone . ignored.
Thu May  2 17:57:16 2024 daemon.info unbound: [4942:0] info: start of service (unbound 1.19.3).
Thu May  2 17:57:17 2024 daemon.warn odhcpd[1926]: No default route present, overriding ra_lifetime!
Thu May  2 17:57:20 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 6a:a1:2b:a0:22:d0
Thu May  2 17:57:20 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.41.136 6a:a1:2b:a0:22:d0
Thu May  2 17:57:20 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 6a:a1:2b:a0:22:d0
Thu May  2 17:57:20 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.41.136 6a:a1:2b:a0:22:d0
Thu May  2 17:57:20 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.41.136 6a:a1:2b:a0:22:d0
Thu May  2 17:57:20 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.41.136 6a:a1:2b:a0:22:d0 ff3l-bandura
Thu May  2 17:57:21 2024 daemon.warn odhcpd[1926]: No default route present, overriding ra_lifetime!
Thu May  2 17:57:21 2024 daemon.info pppd[2296]: PPP session is 23
Thu May  2 17:57:21 2024 daemon.warn pppd[2296]: Connected to 0c:86:10:f7:76:1c via interface eth1
Thu May  2 17:57:21 2024 kern.info kernel: [   23.038512] pppoe-upstream: renamed from ppp0
Thu May  2 17:57:21 2024 daemon.info pppd[2296]: Renamed interface ppp0 to pppoe-upstream
Thu May  2 17:57:21 2024 daemon.info pppd[2296]: Using interface pppoe-upstream
Thu May  2 17:57:21 2024 daemon.notice pppd[2296]: Connect: pppoe-upstream <--> eth1
Thu May  2 17:57:24 2024 daemon.notice hostapd: ACS: Survey for freq 2462 is missing noise floor
Thu May  2 17:57:24 2024 daemon.notice hostapd: ACS: Survey for freq 2462 is missing noise floor
Thu May  2 17:57:24 2024 daemon.notice hostapd: ACS: Survey for freq 2462 is missing noise floor
Thu May  2 17:57:24 2024 daemon.notice hostapd: ACS: Survey for freq 2462 is missing noise floor
Thu May  2 17:57:24 2024 daemon.notice hostapd: ACS: Survey for freq 2462 is missing noise floor
Thu May  2 17:57:24 2024 daemon.notice hostapd: ACS: Survey for freq 2462 is missing noise floor
Thu May  2 17:57:24 2024 daemon.notice hostapd: ACS: Survey for freq 2462 is missing noise floor
Thu May  2 17:57:24 2024 daemon.notice hostapd: ACS: Survey for freq 2462 is missing noise floor
Thu May  2 17:57:24 2024 daemon.notice hostapd: ACS: Survey for freq 2462 is missing noise floor
Thu May  2 17:57:24 2024 daemon.notice hostapd: ACS: Survey for freq 2462 is missing noise floor
Thu May  2 17:57:24 2024 daemon.notice hostapd: phy0-ap0: ACS-COMPLETED freq=2447 channel=8
Thu May  2 17:57:24 2024 kern.info kernel: [   26.200526] IPv6: ADDRCONF(NETDEV_CHANGE): phy0-ap0: link becomes ready
Thu May  2 17:57:24 2024 kern.info kernel: [   26.207261] br-lan: port 4(phy0-ap0) entered blocking state
Thu May  2 17:57:24 2024 kern.info kernel: [   26.212834] br-lan: port 4(phy0-ap0) entered forwarding state
Thu May  2 17:57:24 2024 daemon.notice netifd: Network device 'phy0-ap0' link is up
Thu May  2 17:57:24 2024 daemon.info pppd[2296]: Remote message: Accepted.
Thu May  2 17:57:24 2024 daemon.notice pppd[2296]: PAP authentication succeeded
Thu May  2 17:57:24 2024 daemon.notice pppd[2296]: peer from calling number 0C:86:10:F7:76:1C authorized
Thu May  2 17:57:24 2024 daemon.notice pppd[2296]: local  LL address fe80::b5ff:20cf:430f:c381
Thu May  2 17:57:24 2024 daemon.notice pppd[2296]: remote LL address fe80::6a8f:84ff:fef4:ad9a
Thu May  2 17:57:24 2024 daemon.notice pppd[2296]: local  IP address 95.112.33.29
Thu May  2 17:57:24 2024 daemon.notice pppd[2296]: remote IP address 62.52.201.200
Thu May  2 17:57:24 2024 daemon.notice pppd[2296]: primary   DNS address 62.109.121.2
Thu May  2 17:57:24 2024 daemon.notice pppd[2296]: secondary DNS address 62.109.121.1
Thu May  2 17:57:24 2024 daemon.notice netifd: Network device 'pppoe-upstream' link is up
Thu May  2 17:57:24 2024 daemon.notice netifd: Interface 'upstream' is now up
Thu May  2 17:57:24 2024 daemon.notice netifd: Network alias 'pppoe-upstream' link is up
Thu May  2 17:57:24 2024 daemon.notice netifd: Interface 'upstream_6' is enabled
Thu May  2 17:57:24 2024 daemon.notice netifd: Interface 'upstream_6' has link connectivity
Thu May  2 17:57:24 2024 daemon.notice netifd: Interface 'upstream_6' is setting up now
Thu May  2 17:57:24 2024 daemon.notice hostapd: phy0-ap0: interface state ACS->ENABLED
Thu May  2 17:57:24 2024 daemon.notice hostapd: phy0-ap0: AP-ENABLED
Thu May  2 17:57:24 2024 user.notice SQM: Starting SQM script: piece_of_cake.qos on pppoe-upstream, in: 200000 Kbps, out: 35000 Kbps
Thu May  2 17:57:25 2024 daemon.warn odhcpd[1926]: No default route present, overriding ra_lifetime!
Thu May  2 17:57:25 2024 daemon.info unbound: [4942:0] info: generate keytag query _ta-4f66. NULL IN
Thu May  2 17:57:25 2024 user.notice SQM: piece_of_cake.qos was started on pppoe-upstream successfully
Thu May  2 17:57:25 2024 daemon.info chronyd[1379]: Allowed NTP access from 192.168.41.1/24
Thu May  2 17:57:25 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:25 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:25 2024 user.notice firewall: Reloading firewall due to ifup of upstream (pppoe-upstream)
Thu May  2 17:57:25 2024 daemon.warn odhcpd[1926]: No default route present, overriding ra_lifetime!
Thu May  2 17:57:25 2024 user.notice firewall: Reloading firewall due to ifupdate of upstream (pppoe-upstream)
Thu May  2 17:57:56 2024 daemon.notice netifd: Interface 'upstream_6' is now up
Thu May  2 17:57:56 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:57:56 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 8 names
Thu May  2 17:57:56 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 4 names
Thu May  2 17:57:56 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu May  2 17:57:56 2024 user.notice SQM: Stopping SQM on pppoe-upstream
Thu May  2 17:57:56 2024 user.notice SQM: Starting SQM script: piece_of_cake.qos on pppoe-upstream, in: 200000 Kbps, out: 35000 Kbps
Thu May  2 17:57:56 2024 user.notice SQM: piece_of_cake.qos was started on pppoe-upstream successfully
Thu May  2 17:57:56 2024 daemon.info chronyd[1379]: Allowed NTP access from 192.168.41.1/24
Thu May  2 17:57:56 2024 daemon.info chronyd[1379]: Allowed NTP access from 2a01:c23:9025:7b01::1/64
Thu May  2 17:57:56 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:56 2024 daemon.info chronyd[1379]: Allowed NTP access from fd5f:28a6:6bea:4242::1/64
Thu May  2 17:57:56 2024 user.notice firewall: Reloading firewall due to ifup of upstream_6 (pppoe-upstream)
Thu May  2 17:57:59 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:57:59 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 8 names
Thu May  2 17:57:59 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 8 names
Thu May  2 17:57:59 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu May  2 17:58:01 2024 daemon.notice hostapd: phy1-ap0: ACS-COMPLETED freq=5580 channel=116
Thu May  2 17:58:01 2024 daemon.notice hostapd: phy1-ap0: interface state ACS->HT_SCAN
Thu May  2 17:58:01 2024 daemon.notice hostapd: phy1-ap0: interface state HT_SCAN->DFS
Thu May  2 17:58:01 2024 daemon.notice hostapd: phy1-ap0: DFS-CAC-START freq=5580 chan=116 sec_chan=1, width=1, seg0=122, seg1=0, cac_time=60s
Thu May  2 17:58:02 2024 daemon.warn bird: Kernel dropped some netlink messages, will resync on next scan.
Thu May  2 17:58:03 2024 daemon.info hostapd: phy0-ap0: STA 04:7b:cb:c7:41:10 IEEE 802.11: associated (aid 1)
Thu May  2 17:58:03 2024 daemon.notice hostapd: phy0-ap0: AP-STA-CONNECTED 04:7b:cb:c7:41:10 auth_alg=sae
Thu May  2 17:58:03 2024 daemon.info hostapd: phy0-ap0: STA 04:7b:cb:c7:41:10 WPA: pairwise key handshake completed (RSN)
Thu May  2 17:58:03 2024 daemon.notice hostapd: phy0-ap0: EAPOL-4WAY-HS-COMPLETED 04:7b:cb:c7:41:10
Thu May  2 17:58:04 2024 daemon.info hostapd: phy0-ap0: STA 18:a6:f7:94:af:13 IEEE 802.11: associated (aid 2)
Thu May  2 17:58:04 2024 daemon.notice hostapd: phy0-ap0: AP-STA-CONNECTED 18:a6:f7:94:af:13 auth_alg=sae
Thu May  2 17:58:04 2024 daemon.info hostapd: phy0-ap0: STA 18:a6:f7:94:af:13 WPA: pairwise key handshake completed (RSN)
Thu May  2 17:58:04 2024 daemon.notice hostapd: phy0-ap0: EAPOL-4WAY-HS-COMPLETED 18:a6:f7:94:af:13
Thu May  2 17:58:04 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.41.244 04:7b:cb:c7:41:10
Thu May  2 17:58:04 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.41.244 04:7b:cb:c7:41:10 ciel
Thu May  2 17:58:04 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.41.119 18:a6:f7:94:af:13
Thu May  2 17:58:04 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.41.119 18:a6:f7:94:af:13 finnian
Thu May  2 17:58:05 2024 daemon.info hostapd: phy0-ap0: STA 0c:54:15:a8:c9:5b IEEE 802.11: associated (aid 3)
Thu May  2 17:58:05 2024 daemon.notice hostapd: phy0-ap0: AP-STA-CONNECTED 0c:54:15:a8:c9:5b auth_alg=sae
Thu May  2 17:58:05 2024 daemon.info hostapd: phy0-ap0: STA 0c:54:15:a8:c9:5b WPA: pairwise key handshake completed (RSN)
Thu May  2 17:58:05 2024 daemon.notice hostapd: phy0-ap0: EAPOL-4WAY-HS-COMPLETED 0c:54:15:a8:c9:5b
Thu May  2 17:58:05 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.41.215 0c:54:15:a8:c9:5b
Thu May  2 17:58:05 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.41.215 0c:54:15:a8:c9:5b meyrin
Thu May  2 17:58:05 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:58:05 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 8 names
Thu May  2 17:58:05 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 12 names
Thu May  2 17:58:05 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu May  2 17:58:05 2024 daemon.info chronyd[1379]: Selected source 192.53.103.108 (ptbtime1.ptb.de)
Thu May  2 17:58:06 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:58:06 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 8 names
Thu May  2 17:58:06 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 16 names
Thu May  2 17:58:06 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu May  2 17:58:06 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:58:06 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 8 names
Thu May  2 17:58:06 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 20 names
Thu May  2 17:58:06 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu May  2 17:58:10 2024 authpriv.info dropbear[6117]: Child connection from 192.168.41.244:41572
Thu May  2 17:58:10 2024 authpriv.notice dropbear[6117]: Pubkey auth succeeded for 'root' with ssh-ed25519 key SHA256:XeSvtMI/4DxcEarcGZLTs5mVmBNG2tLDBZWEDmiyWDI from 192.168.41.244:41572
Thu May  2 17:58:11 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "64"
Thu May  2 17:58:11 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 17:58:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "64"
Thu May  2 17:58:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 17:58:14 2024 daemon.info hostapd: phy0-ap0: STA e8:78:29:c3:8a:77 IEEE 802.11: authenticated
Thu May  2 17:58:14 2024 daemon.info hostapd: phy0-ap0: STA e8:78:29:c3:8a:77 IEEE 802.11: associated (aid 4)
Thu May  2 17:58:14 2024 daemon.notice hostapd: phy0-ap0: AP-STA-CONNECTED e8:78:29:c3:8a:77 auth_alg=sae
Thu May  2 17:58:14 2024 daemon.info hostapd: phy0-ap0: STA e8:78:29:c3:8a:77 WPA: pairwise key handshake completed (RSN)
Thu May  2 17:58:14 2024 daemon.notice hostapd: phy0-ap0: EAPOL-4WAY-HS-COMPLETED e8:78:29:c3:8a:77
Thu May  2 17:58:15 2024 daemon.err uhttpd[2483]: [info] luci: accepted login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 17:58:18 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) e8:78:29:c3:8a:77
Thu May  2 17:58:18 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.41.173 e8:78:29:c3:8a:77
Thu May  2 17:58:18 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) e8:78:29:c3:8a:77
Thu May  2 17:58:18 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.41.173 e8:78:29:c3:8a:77
Thu May  2 17:58:18 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) e8:78:29:c3:8a:77
Thu May  2 17:58:18 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.41.173 e8:78:29:c3:8a:77
Thu May  2 17:58:18 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.41.173 e8:78:29:c3:8a:77
Thu May  2 17:58:18 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.41.173 e8:78:29:c3:8a:77
Thu May  2 17:58:20 2024 daemon.err uhttpd[2483]: [info] luci: failed login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 17:58:22 2024 daemon.err uhttpd[2483]: [info] luci: accepted login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info: service stopped (unbound 1.19.3).
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info: server stats for thread 0: 392 queries, 56 answers from cache, 336 recursions, 0 prefetch, 0 rejected by ip ratelimiting
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info: server stats for thread 0: requestlist max 8 avg 1.90179 exceeded 0 jostled 0
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info: average recursion processing time 0.049831 sec
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info: histogram of recursion processing times
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info: [25%]=0.00297623 median[50%]=0.00477867 [75%]=0.0465651
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info: lower(secs) upper(secs) recursions
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info:    0.001024    0.002048 21
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info:    0.002048    0.004096 139
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info:    0.004096    0.008192 48
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info:    0.008192    0.016384 14
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info:    0.016384    0.032768 14
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info:    0.032768    0.065536 38
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info:    0.065536    0.131072 22
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info:    0.131072    0.262144 22
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info:    0.262144    0.524288 12
Thu May  2 17:58:27 2024 daemon.info unbound: [4942:0] info:    0.524288    1.000000 6
Thu May  2 17:58:28 2024 daemon.notice unbound: [6650:0] notice: init module 0: validator
Thu May  2 17:58:28 2024 daemon.notice unbound: [6650:0] notice: init module 1: iterator
Thu May  2 17:58:28 2024 daemon.err unbound: [6650:0] error: duplicate forward zone . ignored.
Thu May  2 17:58:28 2024 daemon.info unbound: [6650:0] info: start of service (unbound 1.19.3).
Thu May  2 17:58:28 2024 daemon.info unbound: [6650:0] info: generate keytag query _ta-4f66. NULL IN
Thu May  2 17:58:37 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu May  2 17:58:37 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 8 names
Thu May  2 17:58:37 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 24 names
Thu May  2 17:58:37 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu May  2 17:58:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 17:58:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 17:59:05 2024 daemon.notice hostapd: phy1-ap0: DFS-CAC-COMPLETED success=1 freq=5580 ht_enabled=0 chan_offset=0 chan_width=3 cf1=5610 cf2=0
Thu May  2 17:59:06 2024 kern.info kernel: [  101.120474] IPv6: ADDRCONF(NETDEV_CHANGE): phy1-ap0: link becomes ready
Thu May  2 17:59:06 2024 kern.info kernel: [  101.127729] br-lan: port 5(phy1-ap0) entered blocking state
Thu May  2 17:59:06 2024 kern.info kernel: [  101.133324] br-lan: port 5(phy1-ap0) entered forwarding state
Thu May  2 17:59:06 2024 daemon.notice netifd: Network device 'phy1-ap0' link is up
Thu May  2 17:59:06 2024 daemon.notice hostapd: phy1-ap0: interface state DFS->ENABLED
Thu May  2 17:59:06 2024 daemon.notice hostapd: phy1-ap0: AP-ENABLED
Thu May  2 17:59:12 2024 daemon.info hostapd: phy1-ap0: STA 0c:54:15:a8:c9:5b IEEE 802.11: associated (aid 1)
Thu May  2 17:59:12 2024 daemon.notice hostapd: phy0-ap0: Prune association for 0c:54:15:a8:c9:5b
Thu May  2 17:59:12 2024 daemon.notice hostapd: phy0-ap0: AP-STA-DISCONNECTED 0c:54:15:a8:c9:5b
Thu May  2 17:59:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 17:59:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 17:59:14 2024 daemon.notice hostapd: phy1-ap0: AP-STA-CONNECTED 0c:54:15:a8:c9:5b auth_alg=sae
Thu May  2 17:59:14 2024 daemon.info hostapd: phy1-ap0: STA 0c:54:15:a8:c9:5b WPA: pairwise key handshake completed (RSN)
Thu May  2 17:59:14 2024 daemon.notice hostapd: phy1-ap0: EAPOL-4WAY-HS-COMPLETED 0c:54:15:a8:c9:5b
Thu May  2 17:59:14 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.41.215 0c:54:15:a8:c9:5b
Thu May  2 17:59:14 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.41.215 0c:54:15:a8:c9:5b meyrin
Thu May  2 17:59:34 2024 daemon.err uhttpd[2483]: [info] luci: accepted login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 17:59:42 2024 daemon.info hostapd: phy0-ap0: STA 0c:54:15:a8:c9:5b IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Thu May  2 17:59:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 17:59:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:00:00 2024 cron.err crond[1990]: USER root pid 6846 cmd curl https://sync.afraid.org/u/hzbdGMCTmqH4hPafofsZMBqb/
Thu May  2 18:00:00 2024 cron.err crond[1990]: USER root pid 6847 cmd curl https://v6.sync.afraid.org/u/gbEQxtVRvCJo4EP8TWGukZSC/
Thu May  2 18:00:05 2024 daemon.err uhttpd[2483]: [info] luci: accepted login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 18:00:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:00:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:00:18 2024 daemon.info chronyd[1379]: Selected source 192.53.103.103 (ptbtime3.ptb.de)
Thu May  2 18:00:25 2024 daemon.err uhttpd[2483]: [info] luci: accepted login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 18:00:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 18:00:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:00:54 2024 authpriv.info dropbear[6117]: Exit (root) from <192.168.41.244:41572>: Disconnect received
Thu May  2 18:01:00 2024 authpriv.info dropbear[6949]: Child connection from 192.168.41.244:38570
Thu May  2 18:01:01 2024 authpriv.notice dropbear[6949]: Pubkey auth succeeded for 'root' with ssh-ed25519 key SHA256:XeSvtMI/4DxcEarcGZLTs5mVmBNG2tLDBZWEDmiyWDI from 192.168.41.244:38570
Thu May  2 18:01:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 18:01:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:01:30 2024 daemon.err uhttpd[2483]: [info] luci: accepted login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 18:01:31 2024 daemon.info procd: Instance rpcd::instance1 s in a crash loop 6 crashes, 60 seconds since last crash
Thu May  2 18:01:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:01:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:01:48 2024 auth.err passwd: password for root changed by root
Thu May  2 18:01:56 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:02:04 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:02:06 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:02:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:02:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:02:13 2024 daemon.err collectd[3262]: rrdtool plugin: rrd_update_r failed: /tmp/rrd/OpenWrt/netlink-br-dmz/if_tx_errors-aborted.rrd: expected 1 data source readings (got 0) from /tmp/rrd/OpenWrt/netlink-br-dmz/if_tx_errors-aborted.rrd:...
Thu May  2 18:02:13 2024 daemon.err collectd[3262]: rrdtool plugin: rrd_update_r failed: /tmp/rrd/OpenWrt/netlink-pppoe-upstream/if_tx_dropped-class-cake-8009:158.rrd: opening '/tmp/rrd/OpenWrt/netlink-pppoe-upstream/if_tx_dropped-class-cake-8009:158.rrd': No such file or directory
Thu May  2 18:02:29 2024 auth.err passwd: password for root changed by root
Thu May  2 18:02:35 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:02:37 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:02:43 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:02:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:02:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:02:48 2024 auth.err passwd: password for root changed by root
Thu May  2 18:02:49 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:02:56 2024 auth.err passwd: password for root changed by root
Thu May  2 18:03:00 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:03:08 2024 daemon.info hostapd: phy1-ap0: STA 04:7b:cb:c7:41:10 IEEE 802.11: associated (aid 2)
Thu May  2 18:03:08 2024 daemon.notice hostapd: phy0-ap0: Prune association for 04:7b:cb:c7:41:10
Thu May  2 18:03:08 2024 daemon.notice hostapd: phy0-ap0: AP-STA-DISCONNECTED 04:7b:cb:c7:41:10
Thu May  2 18:03:10 2024 daemon.notice hostapd: phy1-ap0: AP-STA-CONNECTED 04:7b:cb:c7:41:10 auth_alg=sae
Thu May  2 18:03:10 2024 daemon.info hostapd: phy1-ap0: STA 04:7b:cb:c7:41:10 WPA: pairwise key handshake completed (RSN)
Thu May  2 18:03:10 2024 daemon.notice hostapd: phy1-ap0: EAPOL-4WAY-HS-COMPLETED 04:7b:cb:c7:41:10
Thu May  2 18:03:10 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.41.244 04:7b:cb:c7:41:10
Thu May  2 18:03:10 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.41.244 04:7b:cb:c7:41:10 ciel
Thu May  2 18:03:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:03:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:03:15 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:03:38 2024 daemon.info hostapd: phy0-ap0: STA 04:7b:cb:c7:41:10 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Thu May  2 18:03:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 18:03:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:03:43 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:03:53 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:04:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:04:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 18:04:13 2024 daemon.err collectd[3262]: rrdtool plugin: rrd_update_r failed: /tmp/rrd/OpenWrt/netlink-br-dmz/if_tx_errors-fifo.rrd: Not enough arguments
Thu May  2 18:04:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:04:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:05:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 18:05:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:05:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:05:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 18:06:02 2024 auth.err passwd: password for root changed by root
Thu May  2 18:06:11 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:06:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 18:06:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:06:24 2024 daemon.err uhttpd[2483]: [info] luci: failed login on / for root from 127.0.0.1
Thu May  2 18:06:42 2024 auth.err passwd: password for root changed by root
Thu May  2 18:06:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 18:06:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:07:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "62"
Thu May  2 18:07:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:07:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:07:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:08:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:08:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:08:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:08:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:09:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:09:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:09:35 2024 daemon.err uhttpd[2483]: [info] luci: accepted login on / for root from 127.0.0.1
Thu May  2 18:09:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:09:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:09:49 2024 daemon.err uhttpd[2483]: [info] luci: failed login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 18:10:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:10:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:10:22 2024 daemon.err uhttpd[2483]: [info] luci: accepted login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 18:10:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:10:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:11:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:11:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:11:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:11:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:12:05 2024 daemon.err uhttpd[2483]: [info] luci: accepted login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 18:12:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:12:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:12:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:12:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:13:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:13:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:13:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:13:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:14:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:14:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:14:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:14:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:15:00 2024 cron.err crond[1990]: USER root pid 7782 cmd curl https://sync.afraid.org/u/hzbdGMCTmqH4hPafofsZMBqb/
Thu May  2 18:15:00 2024 cron.err crond[1990]: USER root pid 7783 cmd curl https://v6.sync.afraid.org/u/gbEQxtVRvCJo4EP8TWGukZSC/
Thu May  2 18:15:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:15:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:15:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:15:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:15:51 2024 authpriv.info dropbear[6949]: Exit (root) from <192.168.41.244:38570>: Disconnect received
Thu May  2 18:15:54 2024 authpriv.info dropbear[7797]: Child connection from 192.168.41.244:34242
Thu May  2 18:15:54 2024 authpriv.notice dropbear[7797]: Pubkey auth succeeded for 'root' with ssh-ed25519 key SHA256:XeSvtMI/4DxcEarcGZLTs5mVmBNG2tLDBZWEDmiyWDI from 192.168.41.244:34242
Thu May  2 18:16:00 2024 daemon.err uhttpd[2483]: [info] luci: accepted login on /admin/statistics/graphs for root from 127.0.0.1
Thu May  2 18:16:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:16:13 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
Thu May  2 18:16:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "60"
Thu May  2 18:16:43 2024 daemon.err collectd[3262]: exec plugin: Unable to parse command, ignoring line: "58"
root@OpenWrt:~# ucode /usr/share/rpcd/ucode/luci
root@OpenWrt:~# ls -l /usr/share/rpcd/ucode/luci*
-rw-r--r--    1 root     root         14056 Apr 10 17:32 /usr/share/rpcd/ucode/luci
-rw-r--r--    1 root     root          2376 Feb 16 15:18 /usr/share/rpcd/ucode/luci.wireguard

@systemcrash
Copy link
Contributor

@marek22k OK but does the 'fix' resolve the problem for you? Or does it persist? It seems like something else is messing around with that file.

@marek22k
Copy link
Contributor

marek22k commented May 2, 2024

chmod 0644 /usr/share/rpcd/ucode/luci
service rpcd restart

Didn't fix the problem for me.

However, I have noticed that the problem only seems to occur when I open the graphs of collectd (/cgi-bin/luci/admin/statistics/graphs).

I have also restarted the router several times. That didn't help.

@systemcrash
Copy link
Contributor

run:

opkg list-installed | grep -i luci-app-statistics

@systemcrash
Copy link
Contributor

I noticed your logs are also peppered with collectd errors.... so this might be a problem from prior

@systemcrash
Copy link
Contributor

Tell you what, just run:

opkg install -force-reinstall --force-overwrite luci-app-statistics

if that doesn't fix it, uninstall luci-app-statistics and install anew.

opkg remove luci-app-statistics
opkg install luci-app-statistics

@marek22k
Copy link
Contributor

marek22k commented Jun 3, 2024

Sorry for the late reply. Even though I haven't thought about the problem for some time, it unfortunately still exists.

run:

opkg list-installed | grep -i luci-app-statistics
root@OpenWrt:~# opkg list-installed | grep -i luci-app-statistics
luci-app-statistics - git-24.034.36441-feee897

Tell you what, just run:

opkg install -force-reinstall --force-overwrite luci-app-statistics
root@OpenWrt:~# opkg install -force-reinstall --force-overwrite luci-app-statist
ics
Removing package luci-app-statistics from root...
Not deleting modified conffile /etc/config/luci_statistics.
Installing luci-app-statistics (git-24.034.36441-feee897) to root...
Downloading https://downloads.openwrt.org/releases/23.05.3/packages/aarch64_cortex-a53/luci/luci-app-statistics_git-24.034.36441-feee897_all.ipk
Configuring luci-app-statistics.
Collected errors:
 * resolve_conffiles: Existing conffile /etc/config/luci_statistics is different from the conffile in the new package. The new conffile will be placed at /etc/config/luci_statistics-opkg.

Doen't fix it.

if that doesn't fix it, uninstall luci-app-statistics and install anew.

opkg remove luci-app-statistics
opkg install luci-app-statistics
root@OpenWrt:~# opkg remove luci-app-statistics
Removing package luci-app-statistics from root...
Not deleting modified conffile /etc/config/luci_statistics.
root@OpenWrt:~# opkg install luci-app-statistics
Installing luci-app-statistics (git-24.034.36441-feee897) to root...
Downloading https://downloads.openwrt.org/releases/23.05.3/packages/aarch64_cortex-a53/luci/luci-app-statistics_git-24.034.36441-feee897_all.ipk
Configuring luci-app-statistics.
Collected errors:
 * resolve_conffiles: Existing conffile /etc/config/luci_statistics is different from the conffile in the new package. The new conffile will be placed at /etc/config/luci_statistics-opkg.

Also doesn't fix the bug.

root@OpenWrt:~# cat /etc/config/luci_statistics

config statistics 'collectd'
	option BaseDir '/var/run/collectd'
	option PIDFile '/var/run/collectd.pid'
	option PluginDir '/usr/lib/collectd'
	option TypesDB '/usr/share/collectd/types.db'
	option Interval '30'
	option ReadThreads '2'
	option Include '/etc/collectd/conf.d/*.conf'

config statistics 'rrdtool'
	option default_timespan '2hour'
	option image_width '600'
	option image_height '150'
	option image_path '/tmp/rrdimg'

config statistics 'collectd_rrdtool'
	option enable '1'
	option DataDir '/tmp/rrd'
	option RRARows '288'
	option RRASingle '1'
	option backup '1'
	list RRATimespans '2hour'
	list RRATimespans '1day'
	list RRATimespans '1week'
	list RRATimespans '1month'
	list RRATimespans '1year'

config statistics 'collectd_csv'
	option enable '0'
	option StoreRates '0'
	option DataDir '/tmp'

config statistics 'collectd_email'
	option enable '0'
	option SocketFile '/var/run/collectd/email.sock'
	option SocketGroup 'nogroup'

config statistics 'collectd_logfile'
	option enable '0'
	option LogLevel 'notice'
	option File '/var/log/collectd.log'
	option Timestamp '1'

config statistics 'collectd_network'

config statistics 'collectd_syslog'
	option enable '0'
	option LogLevel 'warning'
	option NotifyLevel 'WARNING'

config statistics 'collectd_unixsock'
	option enable '0'
	option SocketFile '/var/run/collectd/query.sock'
	option SocketGroup 'nogroup'

config statistics 'collectd_apcups'
	option enable '0'
	option Host 'localhost'
	option Port '3551'

config statistics 'collectd_chrony'
	option enable '0'
	option Host '127.0.0.1'
	option Port '323'
	option Timeout '2'

config statistics 'collectd_conntrack'
	option enable '1'

config statistics 'collectd_contextswitch'
	option enable '0'

config statistics 'collectd_cpu'
	option enable '1'
	option ReportByCpu '1'
	option ReportByState '1'
	option ShowIdle '0'
	option ValuesPercentage '1'

config statistics 'collectd_cpufreq'
	option enable '0'

config statistics 'collectd_curl'
	option enable '0'

config statistics 'collectd_df'
	option enable '0'
	option Devices '/dev/mtdblock/4'
	option MountPoints '/overlay'
	option FSTypes 'tmpfs'
	option IgnoreSelected '0'
	option ValuesPercentage '0'

config statistics 'collectd_dhcpleases'
	option enable '0'
	option Path '/tmp/dhcp.leases'

config statistics 'collectd_disk'
	option enable '0'
	option Disks 'hda1 hdb'
	option IgnoreSelected '0'

config statistics 'collectd_dns'
	option enable '1'
	list Interfaces 'br-dmz'
	list Interfaces 'br-lan'
	list IgnoreSources '127.0.0.1'
	list IgnoreSources '::1'

config statistics 'collectd_entropy'
	option enable '0'

config statistics 'collectd_exec'

config statistics 'collectd_interface'
	option enable '1'
	list Interfaces 'br-dmz'
	list Interfaces 'br-lan'
	list Interfaces 'laplace'
	list Interfaces 'pppoe-upstream'

config statistics 'collectd_ipstatistics'
	option enable '1'

config statistics 'collectd_iptables'
	option enable '0'

config collectd_iptables_match
	option table 'nat'
	option chain 'luci_fw_postrouting'
	option target 'MASQUERADE'
	option source '192.168.1.0/24'
	option outputif 'br-ff'
	option name 'LAN-Clients traffic'

config collectd_iptables_match
	option chain 'luci_fw_postrouting'
	option table 'nat'
	option target 'MASQUERADE'
	option source '10.61.230.0/24'
	option outputif 'br-ff'
	option name 'WLAN-Clients traffic'

config statistics 'collectd_irq'
	option enable '0'
	option Irqs '2 3 4 7'

config statistics 'collectd_iwinfo'
	option enable '1'

config statistics 'collectd_load'
	option enable '1'

config statistics 'collectd_memory'
	option enable '1'
	option HideFree '0'
	option ValuesAbsolute '1'
	option ValuesPercentage '0'

config statistics 'collectd_netlink'
	option enable '1'
	list VerboseInterfaces 'br-dmz'
	list VerboseInterfaces 'br-lan'
	list VerboseInterfaces 'laplace'
	list VerboseInterfaces 'pppoe-upstream'
	list QDiscs 'br-dmz'
	list QDiscs 'br-lan'
	list QDiscs 'laplace'
	list QDiscs 'pppoe-upstream'
	list Classes 'br-dmz'
	list Classes 'br-lan'
	list Classes 'laplace'
	list Classes 'pppoe-upstream'
	list Filters 'br-dmz'
	list Filters 'br-lan'
	list Filters 'laplace'
	list Filters 'pppoe-upstream'

config statistics 'collectd_nut'
	option enable '0'
	list UPS 'myupsname'

config statistics 'collectd_olsrd'
	option enable '0'
	option Port '2006'
	option Host '127.0.0.1'

config statistics 'collectd_openvpn'
	option enable '0'

config statistics 'collectd_ping'
	option enable '1'
	option TTL '127'
	option Interval '30'
	list Hosts '::1'
	list Hosts '2606:4700:4700::1111'
	list Hosts '1.1.1.1'
	list Hosts '2620:fe::fe'
	list Hosts '9.9.9.9'
	list Hosts 'fd92:58b6:2b2::1'
	list Hosts 'fd42:4242:2601:ac05::1'
	option AddressFamily 'any'

config statistics 'collectd_processes'
	option enable '0'
	option Processes 'uhttpd dnsmasq dropbear'

config statistics 'collectd_sensors'
	option enable '0'

config statistics 'collectd_snmp6'
	option enable '0'
	option Interfaces 'br-lan'
	option IgnoreSelected '0'

config statistics 'collectd_splash_leases'
	option enable '0'

config statistics 'collectd_tcpconns'
	option enable '0'
	option ListeningPorts '0'
	list LocalPorts '22'
	option AllPortsSummary '0'

config statistics 'collectd_thermal'
	option enable '1'

config statistics 'collectd_uptime'
	option enable '0'

config collectd_exec_input
	option cmdline '/root/5ghz_temp.sh'
	option cmduser 'nobody'
	option cmdgroup 'nogroup'

config collectd_exec_input
	option cmdline '/root/24ghz_temp.sh'
	option cmduser 'nobody'
	option cmdgroup 'nogroup'

@marek22k
Copy link
Contributor

Mhh, I have now replaced the luci_statistics with the file from opkg. Then I have set up collectd via LuCi again. Now it seems to work.

@Abicom-Dave
Copy link

On my proprietary 23.05 system, it appears to be a permissions problem.

However, when I try to manually run rpcd, I get the following:

root@OpenWrt:/# rpcd
Ignoring ucode script /usr/share/rpcd/ucode/luci because it is world writable
Ignoring ucode script /usr/share/rpcd/ucode/luci.upnp because it is world writable

Changing the permissions to a:rx fixed the issue and I no longer get the RPC error

root@OpenWrt:/# chmod a-w /usr/share/rpcd/ucode/luci.upnp
root@OpenWrt:/# chmod a-w /usr/share/rpcd/ucode/luci

root@OpenWrt:/# rpcd &
root@OpenWrt:/#

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests