"Suresh Ramasubramanian" <[EMAIL PROTECTED]> thus wrote:
> Once you get these what do you expect to do?
>
> A lot of them just wont load without your having passed through the previous
> servers, each of which sets a few tons of cookies.
Yes. Well....
I'm trying to route a web site's browsing session through
some defined interface, and not via the default gateway.
As a simple setup I've been trying to route all hotmail web requests
through one interface and all google web requests through another
interface, through a transparent proxy setting.
This involves running 2 squid processes on the same machine
(yes, it can be done), each with their own config file
and cache directories, and using the tcp_outgoing_address option
extensively.
So, for hotmail via squid running on port 8080 and
for google via squid (part deux) running on port 10080
for all ips of hotmail web site; do
iptables -t nat -A PREROUTING -i eth1 \
-p tcp -d ${ip} --dport www \
-j REDIRECT --to-port 8080
done
for all ips of google web site; do
iptables -t nat -A PREROUTING -i eth1 \
-p tcp -d ${ip} --dport www \
-j REDIRECT --to-port 10080
done
So, any utility which gives me all possible IP addresses
of a web site (may be in domain or not), would be tres useful
to me
google.com would be quite simple to follow, as I would map
all ip addresses of google.com, www.google.com,
groups.google.com, etc...
Anyways... enuff showing off..
but right now hotmail has me stranded.
--
arc_of_descent
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/linux-india-help