Orchid 1.2.2-0.4

PlugIns to the I2P router suite
Post Reply
User avatar
zzz
Posts: 155
Joined: 31 Mar 2018 13:15

Orchid 1.2.2-0.4

Post by zzz »

This is a major update over 1.2.2-0.3, which was released in April 2018. For most people the plugin was not working at all. See ticket #2079 http://trac.i2p2.i2p/ticket/2079 for details.

Thanks to mhatta for figuring out the problem and posting a fix on github. The fix here in the plugin is somewhat different, as we're taking advantage of some existing I2P utilities.

Please report results here or on trac.

You may download the plugin for the first time at http://stats.i2p/i2p/plugins/ or if you already have it installed, just click the update button on /configplugins in your console.

Or, if you have the plugin installed already, it should auto-update when your router updates to 0.9.38 when it is released next week.
xaozai
Posts: 4
Joined: 11 Mar 2019 14:35

Re: Orchid 1.2.2-0.4

Post by xaozai »

Hello!

I'm trying to set up a transparent proxy to i2p and tor.
I know that I am becoming non-anonymous, but I do not need anonymity in this case.

There is one problem and I would be grateful if you help to solve it.

I have a router as default gateway: 192.168.1.1
Local network 192.168.1.0/24

On the router I installed and configured i2p, installed the orchid plugin, installed privoxy, configured dnsmasq and iptables.

Dnsmasq config:

Code: Select all

address=/.i2p/192.168.1.1
address=/.onion/192.168.1.1
Config /etc/resolv.conf

Code: Select all

nameserver 127.0.0.1
nameserver xxx.xx.xx.x #ISP
Privoxy config:

Code: Select all

listen-address 192.168.1.1:3128
enable-proxy-authentication-forwarding 1
permit-access  192.168.1.0/24
forward .i2p 192.168.1.1:4444
Iptables config:

Code: Select all

iptables-t nat -A OUTPUT -d 192.168.1.1 -p tcp --dport 80 -j REDIRECT --to-port 3128
iptables-t nat -A PREROUTING -d 192.168.1.1 -p tcp --dport 80 -j REDIRECT --to-port 3128
Now, I have access to i2p from any browser on the local network, without specifying a proxy server in the browser.

Next, to use the orchid and the tor network, this to the privoxy config:
forward .onion 192.168.1.10:4444

Restarted privoxy and... i2p access is still there, but not tor.

At the same time, if I configure the browser to use http proxy 192.168.1.1:3124, then everything works - both i2p and tor. But I would like to achieve the same without configuring the browser.
Please tell me how it is possible to do.
Post Reply