Show us the output of

#cat /proc/sys/net/ipv4/ip_forward    


The output is 1.

Scott helped me offlist and I think the right command is something like
iptables -I FORWARD -s 10.0.9.0/24 -o $ETH1 -j ACCEPT
iptables -I POSTROUTING -s 10.0.9.0/24 -o $ETH1 -t nat -j MASQUERADE

But this still isn't doing what I'd like it to do.

The issue is there is a server on another network that has Outlook Web Access running on it. There is a router that routes the ip of 10.0.1.7 through to the OWA server.
At the moment only people on the 10.0.1.0 subnet can access OWA. But all the people that need to access it are on the 10.0.9.0 subnet.

Is there is way to manually assign fixed ip's on the 10.0.9.0 subnet to make them look like they are coming from fixed ip's on the 10.0.1.0 subnet so that they can get access to OWA?
It's only port 80 that needs to go through.
So if I'm 10.0.9.69 I want the router to see that the request is coming from 10.0.1.69 and then send the traffic back to that address which is then picked up by the other router and forwarded back to me?
I am I making things too complex? Is it easier just to configure the router that is providing the route to OWA? (I don't actually have access to this router, I have to ask somone to log in and change it).

I hope I'm making sense, I know I confuse even myself sometimes.

Cheers,
Michael.



-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to