Result identity changing

断了今生、忘了曾经 提交于 2019-12-04 15:43:14

问题


I'm using TOR and I want to know, how to switch between result-nodes with need country. I can simply change it by telnet the 9051 port like:

telnet localhost 9051
"AUTHENTICATE\r"
"signal NEWNYM\r"
"quit\r"

This will chose randomly the exit(result) node. My goal is to change that node to the node from need country. I didn't find such information in the documentation, but in some GUI apps for the TOR there is a map with a list of all available nodes/servers and their country, so that I can choose need one.


回答1:


You can do:

> telnet localhost 9051
AUTHENTICATE     
SETCONF ExitNodes={us}
SETCONF StrictNodes=1
SIGNAL NEWNYM
QUIT     

Tor will only use exit nodes from the US in this case. The changes are not written to torrc. If you want to write them, use SAVECONF.



来源:https://stackoverflow.com/questions/3274462/result-identity-changing

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!