mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 02:51:50 +00:00
10 lines
393 B
Bash
Executable file
10 lines
393 B
Bash
Executable file
#!/bin/sh
|
|
INTERFACE="$1"
|
|
multipathip=$(dig +short A multipath-tcp.org | tr -d "\n")
|
|
ipset add ss_rules_dst_bypass_all $multipathip > /dev/null 2>&1
|
|
if [ -z "$INTERFACE" ]; then
|
|
tracebox -v -n -p IP/TCP/MSS/MPCAPABLE/WSCALE multipath-tcp.org
|
|
else
|
|
tracebox -v -i $INTERFACE -n -p IP/TCP/MSS/MPCAPABLE/WSCALE multipath-tcp.org
|
|
fi
|
|
ipset del ss_rules_dst_bypass_all $multipathip > /dev/null 2>&1
|