标签为“proxy”的页面如下
十一月 11, 2017
Port forwarding (or proxying) on OpenWRT with socat
在校园网环境中可能会有这种需求:我可以获取到公网IPv6而不能获取到公网IPv4,但是我的应用程序只支持IPv4(比如某些游戏),能否把到达我的公网IPv6的数据转发到内网IPv4(forward IPv6 to IPv4)?
十一月 5, 2017
用Lighttpd转发V2Ray的WebSocket连接
在开始阅读之前,你可能会对“用Nginx转发V2Ray的WebSocket连接”感兴趣,所以我先把这个链接附在这里:
https://oing9179.github.io/blog/2017/03/v2ray-as-WebSocket-Proxy-behind-Nginx/
八月 18, 2017
ssh connect through sock5 proxy
This post provides a straightforward method to connect your ssh client through a local socks5 proxy. It’s quite simple, if you have a socks5 server listening on your local port, say, 8888: ssh -l login -p ssh_server_port -o ProxyCommand='nc --proxy-type socks5 --proxy 127.0.0.1:8888 %h %p' ssh_server_host_name If you are not using nmap’s netcat utility, you may try: ssh -l login -p ssh_server_port