I’ve always had to do that to get our Obihai SIP ATA to work. I can see that that conntrack helper is loaded in the route10. Can I disable it? I’ve also just ordered a Grandstream ATA since the Obihai hasn’t been supported in a while. Should be able to disable those helpers though.
uci set firewall.@defaults[0].conntrack_sip='0'
uci commit firewall
/etc/init.d/firewall restart
May I strongly recommend that you make notes about any changes you make with /cfg/post-cfg.sh
such as the above script, as well? These changes can create complications when diagnosing other issues, even if unrelated.
Also we may disable this by default in the future, as it seems to be more trouble than it’s worth in current year.
I second the disable by default. It seems to cause way more problems than it solves.
Thanks. Either that or some firewall change I made fixed it. For post_cfg.sh I just have
#!/bin/sh
cd $(dirname $0)
for f in post-cfg.d/*.sh; do
. $f
done
and then stick patches in separate files under post-cfg.d.