On 29 Apr 2020, at 07:40, Eli Vakrat <eli@vakrat.com> wrote:
So thanks to teor's insightful response yesterday I decided to try to run a second tor relay (my middle node) on my private network.Unfortunately, I can't do it with Chutney because my python client is running on a windows machine. But I do have 3 machines at my disposal:1. A windows machine (the python client)2. A mac (the guard node)3. Another mac (the middle node)
When my guard node tries to connect to my middle node after receiving from the client a RELAY_EXTEND cell, the guard node logs the following error:Apr 28 17:00:31.000 [info] circuit_extend: Client asked me to extend to a private addressSo regarding this, I have two questions:1. Is there a way for me to change something in my torrc file to override this error and allow my relay to extend to private IP addresses?My torrc is currently configured as such (Notice I put some place holders for the drectories and for the ip address tha aren't actually whats written there):ContactInfo email@example.com
ControlPort 9051
DataDirectory </path/to/data/dir>
ExitPolicy reject *:*
ExitRelay 0
GeoIPFile </path/to/geo/ip/file>
GeoIPv6File </path/to/geo/ipv6/file>
Log notice file <path/to/log/dirs/>/notice.log
Log debug file <path/to/log/dirs/>/debug.log
Log warn file <path/to/log/dirs/>/warn.log
Nickname vtoria
ORPort 443 NoAdvertise
ORPort Relay.Public.IP.Example:443 NoListen
SafeLogging 0
ExtendAllowPrivateAddresses 1
2. Would there maybe be a better way to run this private tor network (without chutney)?