@semigodking , thanks for your wonderful development works on redsocks after darkk stopped supporting redsocks in the past several years. It's cool and thanks a lot.
/etc/redsocks.conf
base {
log_debug = on;
log_info = on;
log = "stderr";
daemon = off;
redirector = iptables;
}
redsocks {
bind = "127.0.0.1:12345";
relay = "gate.visitxiangtan.com:7000";
type = socks5;
timeout = 300;
}
I checked and tried many times for these 2 situations
curl -4 -x socks5://gate.visitxiangtan.com:7000 -v https://example.com/
If set as socks5, the access is not stable. seems 50% failed.
curl -4 -x socks5h://gate.visitxiangtan.com:7000 -v https://example.com/
If set as socks5h, the access is very stable. 100% succeeded.
So, Can you add socks5h support in type field?
@semigodking , thanks for your wonderful development works on redsocks after darkk stopped supporting redsocks in the past several years. It's cool and thanks a lot.
/etc/redsocks.conf
I checked and tried many times for these 2 situations
curl -4 -x socks5://gate.visitxiangtan.com:7000 -v https://example.com/If set as
socks5, the access is not stable. seems 50% failed.curl -4 -x socks5h://gate.visitxiangtan.com:7000 -v https://example.com/If set as
socks5h, the access is very stable. 100% succeeded.So, Can you add socks5h support in
typefield?