All of lore.kernel.org
 help / color / mirror / Atom feed
* RE: Multiple Source IP Addresses
@ 2005-03-11  8:21 Baake, Matthias
  2005-03-11 19:40 ` Dennis O. Aliev
  0 siblings, 1 reply; 6+ messages in thread
From: Baake, Matthias @ 2005-03-11  8:21 UTC (permalink / raw)
  To: Dennis O. Aliev; +Cc: netfilter

If i understood it the right way you want to map an internal machine (e.g. Webserver) to an external address.
Then you have to make a Rule into NAT Prerouting to redirect specific Traffic to the internal machine.

IPTABLES -t nat -A PREROUTING -i $EXT_IF -d $Your_ext_ip -j DNAT --to-destination $IP_OF_YOUR_INTERNAL_WEBSERVER

The filtering for this map you can still do in the filter table. Like your rule you already posted.
This way your Internal Webserver should be reachable from the Internet.

/matthias baake



-----Original Message-----
From: netfilter-bounces@lists.netfilter.org
[mailto:netfilter-bounces@lists.netfilter.org]On Behalf Of Dennis O.
Aliev
Sent: Friday, March 11, 2005 4:50 AM
To: netfilter@lists.netfilter.org
Cc: sergey@etecom.com; daliev@etecom.com
Subject: Multiple Source IP Addresses


Good evening,

Is there a way to send traffic from host behind IPTables firewall using different external source IP addresses that are assigned to firewall on the external interface?

Host behind firewall has single IP address (192.168.1.94)  and making  http based requests to internet.

Firewall has following rules to make it work:
iptables -t filter -A forward -o eth0 -p tcp -s 192.168.1.94 --dport 80 -j ACCEPT
iptables -t nat -A POSTROUTING -o eth0 -s 192.168.1.94 -j SNAT --to-source some_external_ip

I was thinking of making http request from host to a different port and then based on that change source address to another external address and change the destination port to 80, but can't figure out how to do that.

Does anyone have any ideas? Perhaps there is a different approach?
-- 

Dennis O. Aliev 



^ permalink raw reply	[flat|nested] 6+ messages in thread
* Multiple Source IP Addresses
@ 2005-03-11  3:50 Dennis O. Aliev
  0 siblings, 0 replies; 6+ messages in thread
From: Dennis O. Aliev @ 2005-03-11  3:50 UTC (permalink / raw)
  To: netfilter; +Cc: sergey, daliev

Good evening,

Is there a way to send traffic from host behind IPTables firewall using different external source IP addresses that are assigned to firewall on the external interface?

Host behind firewall has single IP address (192.168.1.94)  and making  http based requests to internet.

Firewall has following rules to make it work:
iptables -t filter -A forward -o eth0 -p tcp -s 192.168.1.94 --dport 80 -j ACCEPT
iptables -t nat -A POSTROUTING -o eth0 -s 192.168.1.94 -j SNAT --to-source some_external_ip

I was thinking of making http request from host to a different port and then based on that change source address to another external address and change the destination port to 80, but can't figure out how to do that.

Does anyone have any ideas? Perhaps there is a different approach?
-- 

Dennis O. Aliev 


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

end of thread, other threads:[~2005-03-11 20:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-11  8:21 Multiple Source IP Addresses Baake, Matthias
2005-03-11 19:40 ` Dennis O. Aliev
2005-03-11 19:49   ` Jason Opperisano
2005-03-11 20:37     ` Dennis O. Aliev
2005-03-11 20:48     ` Dennis O. Aliev
  -- strict thread matches above, loose matches on Subject: below --
2005-03-11  3:50 Dennis O. Aliev

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.