1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-03-09 15:40:03 +00:00

Force disable multipath for VPN and LAN

This commit is contained in:
Ycarus (Yannick Chabanois) 2019-06-23 08:09:02 +02:00
parent 4403030d26
commit 23589485cf

View file

@ -248,6 +248,12 @@ function wizard_add()
ucic:set("qos",intf,"enabled","0") ucic:set("qos",intf,"enabled","0")
end end
end end
-- Disable multipath on LAN, VPN and loopback
ucic:set("network","loopback","multipath","off")
ucic:set("network","lan","multipath","off")
ucic:set("network","omr6in4","multipath","off")
ucic:set("network","omrvpn","multipath","off")
ucic:save("sqm") ucic:save("sqm")
ucic:commit("sqm") ucic:commit("sqm")
ucic:save("qos") ucic:save("qos")