SOCKS5 支援用 hostname 連線,而且是透過 SOCKS server 查 IP address,然後查資料的時候翻到「Curl: Re: ��: Why resolve the dns locally when using a socks5 proxy」這篇,發現 Curl 的 --socks5
原來有雷,一般人會想要用的應該是 --socks5-hostname
才對 XDDD
這是 --socks5
:
Use the specified SOCKS5 proxy - but resolve the host name locally. If the port number is not specified, it is assumed at port 1080.
而這是 --socks5-hostname
:
Use the specified SOCKS5 proxy (and let the proxy resolve the host name). If the port number is not specified, it is assumed at port 1080.
另外也有 --socks4
與 --socks4a
,不過 SOCKS4a 的協定最主要就是加上 hostname 的連線:
SOCKS4a extends the SOCKS4 protocol to allow a client to specify a destination domain name rather than an IP address; this is useful when the client itself cannot resolve the destination host's domain name to an IP address.
然後隔壁棚的 socks5://
與 socks5h://
也有異曲同工之妙...