All of lore.kernel.org
 help / color / mirror / Atom feed
* [LARTC] How to use private IP on my DMZ network
@ 2002-10-04  6:17 Roselyn Calleja
  2002-10-04  8:14 ` Paul Zirnik
  0 siblings, 1 reply; 2+ messages in thread
From: Roselyn Calleja @ 2002-10-04  6:17 UTC (permalink / raw)
  To: lartc

[-- Attachment #1: Type: text/plain, Size: 2077 bytes --]

Hi everyone,

I have problems with my DMZ network. I'm using Linux with three interface (eth0, eth1,eth2). eth0 is connected to my dsl modem, eth1 is for my DMZ network where it contains all my websites, eth2 is my private network. I'm using iptables. Below is my diagram:

                                                          |-----------|       
      DSL (Internet) eth0 ------ |Firewall | -------  eth2 (Private Network)
                                                          |-----|-----|       
                                                                    | 
                                                                    |
                                                                eth1 (DMZ network)

my current set-up:

eth0 :         203.164.168.30
            gw:  203.164.168.29
            mask: 255.255.255.252

eth1:           203.164.168.161 (also the gateway of the network)
            mask:255.255.255.248 
website 1:  203.164.168.163
website 2: 203.164.168.164
website 3: 203.164.168.165             
             
I want to set-up my network like this:

eth0 : same IP
            same gateway
            same netmask

eth1 : 10.10.10.1
            gw: 10.10.10.1
website1: 10.10.10.5
website2:10.10.10.6
website3:10.10.10.7
website1 public address is 203.164.168.163
website2 public address is 203.164.168.164
website3 public address is 203.164.168.165

So my iptables looks like this:

iptables --table nat -A PREROUTING -p tcp -d 203.164.168.163 --dport 80 -j DNAT --to-destination 10.10.10.5
iptables --table nat -A PREROUTING -p tcp -d 203.164.168.164 --dport 80 -j DNAT --to-destination 10.10.10.6
iptables --table nat -A PREROUTING -p tcp -d 203.164.168.165 --dport 80 -j DNAT --to-destination 10.10.10.7

So what i mean is that any request for 203.164.168.163 to 165 would pass through my firewall then with my iptables set as such, it would be forwarded to my webserver.

Does anybody knows how to work this thing out? Is it possible? Please reply.

Thanks!

Rose




[-- Attachment #2: Type: text/html, Size: 6716 bytes --]

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

end of thread, other threads:[~2002-10-04  8:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-10-04  6:17 [LARTC] How to use private IP on my DMZ network Roselyn Calleja
2002-10-04  8:14 ` Paul Zirnik

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.