Netty series: netty's support for SOCKS protocol

brief introductionSOCKS is an excellent network protocol, which is mainly used as an agent. Its two main versions are SOCKS4 and SOCKS5, in which SOCKS5 provides support for authentication. Generally speaking, we can use SSH tools to build a simple SOCKS protocol channel. How does netty support SOCKS? Let's have a look.SocksMessageThe first is ...

Posted by gojakie on Thu, 06 Jan 2022 03:08:56 +0100

netty series: building a SOCKS proxy server from zero to one

brief introductionIn the previous article, we mentioned that netty provides the encapsulation of SocksMessage object for SOCKS messages, distinguishes between SOCKS4 and SOCKS5, and provides various states of connection and response.With the encapsulation of socks messages, what else do we need to do to build a SOCKS server?Using SSH to build S ...

Posted by nrerup on Wed, 05 Jan 2022 02:34:05 +0100