I’m currently running 4.5.6 release 1, if I were to flash 4.5.7 beta (2023-03-01), will I lose any settings or customisations that I’ve done?
Eg. I’ve set up Unbound for recursive DNS and had to get some custom config working for Dynamic DNS and I don’t want to lose any of that, but I’d like to test the beta version and give feedback.
If you turn on Keep Settings before upgrading, then it should retain your settings. Personally, I wouldn’t risk going from any current stable version to the beta. I was briefly tempted to try the latest beta and I’m glad I didn’t go through with it.
Hello, to everyone who is having a pppoe problem, I kindly ask you to follow the steps below, as it resolved the issue of fullconenat and also of dns in quic in adguard.
I found the problem related to pppoe, here’s how I fixed it.
I was getting this error “DHCP packet received on eth1 which has no address”
this is the fix
echo "except-interface=eth1" >> /etc/dnsmasq.conf
service dnsmasq restart
After that, update the fullconenat file to the data below.
#!/bin/sh /etc/rc.common
START=99
set_rules() {
iptables -t nat -I POSTROUTING -o $1 -j FULLCONENAT 2>/dev/null
iptables -t nat -I PREROUTING -i $1 -j FULLCONENAT 2>/dev/null
}
clear_rules() {
local ifaces=$(iptables -t nat -nvL POSTROUTING|grep FULLCONENAT|awk -F' ' '{print $7}')
for item in $ifaces; do
iptables -t nat -D POSTROUTING -o $item -j FULLCONENAT 2>/dev/null
iptables -t nat -D PREROUTING -i $item -j FULLCONENAT 2>/dev/null
done
}
find_wan_gw()
{
local wan_list=$(ubus list|grep interface.|grep -v -E 'lan|loopback|4|6')
for item in $wan_list; do
local ubus_data=$(ubus call $item status)
local up="$(echo $ubus_data|jsonfilter -e '@.up')"
[ "$up" = "true" ] || continue
local gw="$(echo $ubus_data|jsonfilter -e '@.l3_device')"
[ -n "$gw" ] && set_rules $gw
done
}
stop() {
clear_rules
}
start() {
if [ "$(uci get fullconenat.global.enable)" = "1" ]; then
local ifaces=$(iptables -t nat -nvL POSTROUTING|grep FULLCONENAT|awk -F' ' '{print $7}')
[ -z "$ifaces" ] && find_wan_gw
fi
}
located at /etc/init.d/fullconenat
After that everything works perfectly.
Follow the correction link.
another fix is regarding dns in quic in Adguard, to be able to use it you have to place the commands below in /etc/sysctl.d/10-default.conf and/or /etc/sysctl.conf
Below are the corrections.
Mon Mar 4 08:46:52 2024 user.notice AdGuardHome[21936]: 2024/03/04 11:46:52.756130 failed to sufficiently increase receive buffer size (was: 208 kiB, wanted: 2048 kiB, got: 416 kiB). See https://github.com/quic-go/quic-go/wiki/UDP-Receive-Buffer-Size for details.
I hope GL.iNet is taking on these fixes. It is also a big configuration management challenge for GL.iNet to try to maintain (and backport to) their old OpenWRT 21.02 software base. This is long-term bad for us as users, but also creates challenges for them in software maintenance.
That is a interesting setting , currently i got a different issue with my dumbap, but in my case goes wild in ACKing dhcp, maybe that exclude it, because dhcp should not be served on wan for me from out dnsmasq.
@admon it actually does matter. The air interface has a lot of overhead, plus most devices even those supporting WIFI 6 are only 1 or 2 streams. So yeah, the max speed was tested by GL.iNet over Ethernet not using WIFI.
Just let us know, the gl team removed the mt6000 firmware snapshot from the website.
Now there are only stable and beta versions… It was something good for me that I always tested and reported bugs for the devs to resolve… let’s see what will happen from now on.
Yes, I’m running AdGuard, OpenVPN server (also WireGuard sometimes) SMB, reserved IPs, some custom settings on AdGuard and a few more things. Working without issues
No, the Beta version I’m using is the one released on February 28th, I think I’ll upgrade but this one is working good for me.
I just saw that new one 3/1/24
Would it be possible for each beta release available to point out what was changed/improved so that we can focus on what to observe?
Currently the releases are simply released without any information!
Without a release note, it’s difficult to know what to look at and understand the improved points!
The newest release available, 4.5.7 - 2024-03-01 (openwrt-mt6000-4.5.7-0301-1709277553.bin), has a problem with the PPOE connection. I use two links, WAN1 PPOE and WAN2 DHCP, the link via PPOE simply does not stabilize in any way, it stays in a loop trying. I return to the previous view and it returns to normal.