1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-15 03:51:51 +00:00
openmptcprouter-feeds/openmptcprouter/files/bin/otb-test-download-shadowsocks
2018-01-23 15:39:24 +01:00

24 lines
574 B
Bash
Executable file

#!/bin/sh
# vim: set noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 :
HOST="proof.ovh.net"
_ipt() {
iptables -w -t nat "$1" socks_emitted_by_myself \
-d "$HOST" -j socks_redir -m comment --comment "Test download proof"
}
_chain_exists() {
iptables -w -t nat -nL "$1" 1>/dev/null 2>/dev/null
}
if ! _chain_exists "socks_emitted_by_myself" || ! _chain_exists "socks_redir"; then
echo "Couldn't find the iptables chain to plug myself into. Is ss-redir running?"
return 1
fi
trap : HUP INT TERM
_ipt -A
curl http://$HOST/files/10Gio.dat >/dev/null || echo
_ipt -D