mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Add check that MPTCP is not blocked
This commit is contained in:
parent
dc9e238bb9
commit
5e7cf8bd7a
4 changed files with 34 additions and 3 deletions
|
@ -188,6 +188,7 @@
|
|||
var gateway = mArray.wans[i].gateway;
|
||||
var gw_ping = mArray.wans[i].gw_ping;
|
||||
var ipv6_discover = mArray.wans[i].ipv6_discover;
|
||||
var multipath_available = mArray.wans[i].multipath_available;
|
||||
// Generate template
|
||||
if(mArray.openmptcprouter.remote_from_lease == true && mArray.wans.length == 1)
|
||||
{
|
||||
|
@ -210,6 +211,9 @@
|
|||
} else if(gw_ping == 'DOWN')
|
||||
{
|
||||
statusMessage += 'Gateway DOWN<br />'
|
||||
} else if(multipath_available == 'ERROR')
|
||||
{
|
||||
statusMessage += 'Multipath blocked on the connection<br />'
|
||||
}
|
||||
if(ipv6_discover == 'DETECTED')
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue