From 44ff4334bdc9595de134b44c60e4c8d94aa5b29b Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Mon, 19 Sep 2022 19:33:48 +0200 Subject: [PATCH 1/2] Fix typo and add help --- .../luasrc/view/openmptcprouter/wizard.htm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm b/luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm index 8961bfa4e..d3cb34a89 100644 --- a/luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm +++ b/luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm @@ -944,7 +944,7 @@ checked<% end %> />
- <%:SQM control bufferloat: the undesirable latency that arises when the router buffers too much data.%> + <%:SQM control bufferbloat: the undesirable latency that arises when the router buffers too much data.%>
@@ -955,6 +955,7 @@
<%:SQM autorate is for LTE and connection without a stable speed.%> + <%:Download and upload speed MUST be set to make this work.%> <% if cake ~= "cake" then %> From 25cdf439ca373d14b09163ce78a40ba01abd195b Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Mon, 19 Sep 2022 19:34:15 +0200 Subject: [PATCH 2/2] Interface with multiples IPs are working now --- mptcp/files/usr/bin/multipath | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/mptcp/files/usr/bin/multipath b/mptcp/files/usr/bin/multipath index 294c3aaab..a7953878c 100755 --- a/mptcp/files/usr/bin/multipath +++ b/mptcp/files/usr/bin/multipath @@ -143,16 +143,22 @@ else exit 0;; "on") [ -n "$ID" ] && ip mptcp endpoint delete id $ID 2>&1 >/dev/null - ip mptcp endpoint add $IP dev $DEVICE subflow fullmesh + for i in $IP; do + ip mptcp endpoint add $i dev $DEVICE subflow fullmesh + done exit 0;; "signal") [ -n "$ID" ] && ip mptcp endpoint delete id $ID 2>&1 >/dev/null - #ip mptcp endpoint add $IP dev $DEVICE signal subflow fullmesh - ip mptcp endpoint add $IP dev $DEVICE signal + for i in $IP; do + #ip mptcp endpoint add $i dev $DEVICE signal subflow fullmesh + ip mptcp endpoint add $i dev $DEVICE signal + done exit 0;; "backup") [ -n "$ID" ] && ip mptcp endpoint delete id $ID 2>&1 >/dev/null - ip mptcp endpoint add $IP dev $DEVICE backup fullmesh + for i in $IP; do + ip mptcp endpoint add $i dev $DEVICE backup fullmesh + done exit 0;; "") case "$IFF" in