[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
Re: Excluding domains
- To: or-talk@xxxxxxxxxxxxx
- Subject: Re: Excluding domains
- From: "John Kimble" <det.j.kimble@xxxxxxxxx>
- Date: Sat, 15 Mar 2008 10:26:26 +0800
- Delivered-to: archiver@xxxxxxxx
- Delivered-to: or-talk-outgoing@xxxxxxxx
- Delivered-to: or-talk@xxxxxxxx
- Delivery-date: Fri, 14 Mar 2008 22:26:32 -0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=6upFMnvBvBKpPV3GeWAAf/rqECXIGlwvFVAE4rdRJJQ=; b=jHRX1LYXN/yhthwU+IaHRPI08Xs7+9CssjuNEFKMGjArVQ1JbleVTZhxsPAUlO/P4w02tjkj4Q2IZ7FYQm1gPp0Fnk2vH1i3Dh/NheqDWL2d0dwSLVS4+EborQtL0hnastvjKX/bhR80khlP1QIMsyDfxzPdWKhueYr+jWcf4ZA=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=K1+oHlIAPt83FZ20vMJrMNg32g+fraQfk7mLi727aZPcEi8/3F2yl61CuhErki4CQxpfTUXevm8LSA9n8EVyzU9yRj1YFbaDUTM5cr9NGEQXeR8EKU0OxTR8zslnwIO5KGqdv9d+hMHoMCoWr6l4RyITyDFRLT7BA/bCUCBmYO4=
- In-reply-to: <47DAC03E.5050702@xxxxxxxxx>
- References: <47D94EAC.9080304@xxxxxxxxx> <47DAB86E.3080902@xxxxxxxxxxxxx> <47DAC03E.5050702@xxxxxxxxx>
- Reply-to: or-talk@xxxxxxxxxxxxx
- Sender: owner-or-talk@xxxxxxxxxxxxx
On Sat, Mar 15, 2008 at 2:13 AM, Lanthanaël <lanthanael@xxxxxxxxx> wrote:
> Hi!
>
> I want to know more about that stuff to exclude domains from the TOR
> circuits, but I'm an ole SeaMonkey user and FoxyProxy is only for
> Firefox, are there other Plugins which work with SeaMonkey too? Because
> I wasn't able to finde stuff on the net how to exclude domains from the
> onion routing.
>
> Any help will be appreciated, Lanthanaël
The Tor bundle comes with Privoxy, which provides the fine-grained
control you need.
As a quick minimalist example (not recommended for real-life usage as
it makes no use of the privacy-related features that Privoxy offers),
the following configuration parameters lets you use Privoxy with Tor:
confdir .
logdir .
listen-address 127.0.0.1:8118
forward-socks4a / 127.0.0.1:9050 .
If you want to forward everything through Tor, except requests going
to any hostname under example.com, you would have this instead:
confdir .
logdir .
listen-address 127.0.0.1:8118
forward-socks4a / 127.0.0.1:9050 .
forward .example.com .
For details, refer to the Privoxy manual:
<http://www.privoxy.org/user-manual/index.html>
Cheers,
John