torproxy icon indicating copy to clipboard operation
torproxy copied to clipboard

is there a way to tell it to generate new circuit (new IP)?

Open airdogvan opened this issue 4 years ago • 5 comments

I'm running with the simple docker run -it -p 8118:8118 -p 9050:9050 -d dperson/torproxy command and using it at port 9050 for browser proxy. But I noticed each time I start it it seems to run the same circuit resulting in the same IP (exit node).

Is there a way to tell it to generate new one?

Thanks

airdogvan avatar Jun 16 '20 22:06 airdogvan

I want to know too!

ProjectDarkTiger avatar Oct 14 '20 12:10 ProjectDarkTiger

I have the same question

XSPGMike avatar Apr 13 '21 15:04 XSPGMike

You can check the Dockerfile that the controlport is 9051. So just map it outside to use.

sudo docker run -it -p 8118:8118 -p 9050:9050 -p 9051:9051 -e PASSWORD=yourpass dperson/torproxy

from stem import Signal
from stem.control import Controller

with Controller.from_port(port=9051) as controller:
	controller.authenticate(password="yourpass")
	controller.signal(Signal.NEWNYM)

nguyenhn1299 avatar Jul 08 '21 00:07 nguyenhn1299

Yes. See comment in thread: https://github.com/dperson/torproxy/issues/80

des1redState avatar Dec 25 '22 21:12 des1redState

Hy guys My question is 9051 port is not open when I run nmap command image: dperson/torproxy ports: - 8181:8181 - 9050:9050 - 9051:9051 environment:

henriqueutsch avatar Aug 24 '23 12:08 henriqueutsch