mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
10 lines
316 B
Bash
Executable file
10 lines
316 B
Bash
Executable file
#!/bin/sh
|
|
uci -q batch <<-EOF >/dev/null
|
|
add_list dhcp.@dnsmasq[-1].ipset='/multipath-tcp.org/ss_rules_dst_bypass'
|
|
commit dhcp
|
|
EOF
|
|
curl -s -4 -m 3 --interface $1 http://www.multipath-tcp.org
|
|
uci -q batch <<-EOF >/dev/null
|
|
del_list dhcp.@dnsmasq[-1].ipset='/multipath-tcp.org/ss_rules_dst_bypass'
|
|
commit dhcp
|
|
EOF
|