ssosgar
1
We develop a router with openwrt and it is working but suddenly the following message appears
daemon.err uhttpd [811]: brctl: SIOCGIFBR: No error information
and the log seems infinite ...
I think that the memory is saturated and the equipment crashes and I have to turn it off and on but since the equipment is remote that is complicated
I am using socket.http and https.request to write to a url
any idea what might be happening
thanks
Post the output to pastebin.com redacting the private parts:
ubus call system board; uci show uhttpd; uci show network; \
netstat -l -n -p | grep -e uhttpd; pgrep -f -a uhttpd; \
ip address show; brctl show
ssosgar
3
root@DETEC_V2:~# uci show uhttpd
uhttpd.main=uhttpd
uhttpd.main.listen_http='0.0.0.0:80' '[::]:80'
uhttpd.main.listen_https='0.0.0.0:443' '[::]:443'
uhttpd.main.redirect_https='1'
uhttpd.main.home='/www'
uhttpd.main.rfc1918_filter='1'
uhttpd.main.max_requests='3'
uhttpd.main.max_connections='100'
uhttpd.main.cert='/etc/uhttpd.crt'
uhttpd.main.key='/etc/uhttpd.key'
uhttpd.main.cgi_prefix='/cgi-bin'
uhttpd.main.lua_prefix='/cgi-bin/luci=/usr/lib/lua/luci/sgi/uhttpd.lua'
uhttpd.main.script_timeout='60'
uhttpd.main.network_timeout='30'
uhttpd.main.http_keepalive='20'
uhttpd.main.tcp_keepalive='1'
uhttpd.defaults=cert
uhttpd.defaults.days='730'
uhttpd.defaults.bits='2048'
uhttpd.defaults.country='ZZ'
uhttpd.defaults.state='Somewhere'
uhttpd.defaults.location='Unknown'
uhttpd.defaults.commonname='OpenWrt'
1 Like
ssosgar
4
root@DETEC_V2:~# uci show network
network.loopback=interface
network.loopback.ifname='lo'
network.loopback.proto='static'
network.loopback.ipaddr='127.0.0.1'
network.loopback.netmask='255.0.0.0'
network.lan=interface
network.lan.ifname='eth0'
network.lan.proto='static'
network.lan.netmask='255.255.255.0'
network.lan.ipaddr='192.168.1.1'
network.lan.mtu='1500'
network.debug=interface
network.debug.ifname='usb0'
network.debug.type='none'
network.debug.proto='static'
network.debug.ipaddr='172.18.0.18'
network.debug.netmask='255.255.255.0'
network.wan=interface
network.wan.proto='qmi'
network.wan.service='lte'
network.wan.device='/dev/cdc-wdm0'
network.wan.apn='internet.itelcel.com'
network.wan.auth='none'
1 Like
ssosgar
5
root@DETEC_V2:~# netstat -l -n -p | grep -e uhttpd
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 817/uhttpd
tcp 0 0 :::80 :::* LISTEN 817/uhttpd
1 Like
ssosgar
6
root@DETEC_V2:~# brctl show
brctl: SIOCGIFBR: No error information
1 Like