We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我想实现根据用户来源IP不同,转发到不同的sock5服务器
I want to realize the different SOCK5 server depending on the user source IP
The text was updated successfully, but these errors were encountered:
You have to modify this line:
python-proxy/pproxy/server.py
Line 82 in 09d4752
roption = choose(remote_ip)
And add this function:
def choose(remote_ip): if(remote_ip.startswith('192.168.')): return proxies_by_uri('socks5://192.168.0.1:8080') else: return proxies_by_uri('socks5://192.168.0.2:8080')
Sorry, something went wrong.
No branches or pull requests
我想实现根据用户来源IP不同,转发到不同的sock5服务器
I want to realize the different SOCK5 server depending on the user source IP
The text was updated successfully, but these errors were encountered: