All of lore.kernel.org
 help / color / mirror / Atom feed
* [LARTC] masqurading and source based routing
@ 2003-08-11 14:46 Agri
  2003-08-11 20:37 ` Martin A. Brown
  0 siblings, 1 reply; 2+ messages in thread
From: Agri @ 2003-08-11 14:46 UTC (permalink / raw)
  To: lartc

i have private network let it be 192.168.0.0/24
and and two external networks,
let it be 10.1.1.0/24 and 10.2.2.0/24
ip addresses of my linux box is
192.168.0.1
10.1.1.1
10.2.2.1

i want to masquarade all private network addresses through 10.1.1.1
but also if destination is not at 10.1.1.0/24 want to route masquaraded
packets through gateway 10.2.2.2

how to do that?

Agrui

_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [LARTC] masqurading and source based routing
  2003-08-11 14:46 [LARTC] masqurading and source based routing Agri
@ 2003-08-11 20:37 ` Martin A. Brown
  0 siblings, 0 replies; 2+ messages in thread
From: Martin A. Brown @ 2003-08-11 20:37 UTC (permalink / raw)
  To: lartc

Hello Agri,

This doesn't seem to difficult--are you telling us the whole story?  :)

 : i have private network let it be 192.168.0.0/24
 : and and two external networks,
 : let it be 10.1.1.0/24 and 10.2.2.0/24
 : ip addresses of my linux box is
 : 192.168.0.1
 : 10.1.1.1
 : 10.2.2.1
 :
 : i want to masquarade all private network addresses through 10.1.1.1 but
 : also if destination is not at 10.1.1.0/24 want to route masquaraded
 : packets through gateway 10.2.2.2

routing + masquerading:

  ip route change default via 10.2.2.2 src 10.1.1.1
  iptables -t nat -A POSTROUTING \
    -s 192.168.0.0/24 ! -d 10.1.1.0/24 -j MASQUERADE

or, better, just use SNAT --to-source:

  iptables -t nat -A POSTROUTING \
    -s 192.168.0.0/24 ! -d 10.1.1.0/24 -j SNAT --to-source 10.1.1.1

Let us know if this doesn't do it.

-Martin

-- 
Martin A. Brown --- SecurePipe, Inc. --- mabrown@securepipe.com

_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-08-11 20:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-11 14:46 [LARTC] masqurading and source based routing Agri
2003-08-11 20:37 ` Martin A. Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.