shtools/proxy

16 lines
205 B
Plaintext
Raw Normal View History

2024-11-13 17:35:32 +08:00
###
# need change username and domain to your
# username
# domain
start_proxy()
{
while [ "1" = "1" ]
do
ssh -N -D 0.0.0.0:1086 username@domain
done
}
start_proxy &
socks start
echo "proxy started"