Re: several DMZ\'s
Maybe you mean to say "use the same network number"? The subnet mask merely dictates what portion of the network address is common on a LAN interface; DMZs can have the same subnet mask, but if they have different high order octets in their network number, they will not directly be talking to each other.
Since Astaro is a routing firewall, each interface is required to have a unique network number (actually, you can have duplicate network numbers on more than one interface, but the routing won't magically go across both interfaces since the firewall won't know which to take; well, at least in the current 4X version of Astaro...)
A common configuration is to have each DMZ on a different network number. So DMZ1=192.168.1.0/24, DMZ2=192.168.2.0/24, ..., with /24 being the same thing as subnet mask 255.255.255.0; 255 decimal=11111111 binary=8 one bits -How many high order one bits are in the subnet mask 255.255.255.0? 24)
Using DNAT rules on your external interface, you direct your scarce public Internet addresses to plentiful private ones on various DMZs. Example: blah.2 http will be redirected to 192.168.1.2, blah.3 smtp will be redirected to 192.168.2.2...
|