arober11: in windows 2008 ??
Main Topics
Browse All TopicsHi Experts,
All my external requests will coming to the DMZ from the firewall. And some of servers in the DMZ should access by the LAN users.
So I need some kind of open source, very simple access control tool to install in between DMZ and LAN and controll the access levels. (Windows or LINUX is ok)
Basically I need to restrict all inbound traffic from DMZ to LAN. (???) Only access from LAN to DMZ should be configured.
Please advise... and Thanks for your time !
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
My suggestion goes to using Linux. With it you can use the iptables firewall and do simple tasks as this one and as the need grows you can add more features to it. You will have finer control of what you allow and deny to go out / in of each zone.
I'm assuming you want something like this:
+----------+ +-------+ +------+
| Internet | ----> | DMZ | <------ | LAN |
+----------+ +-------+ +------+
You can add a linux server with two network interfaces to do this:
+----------+ +-----------+
| Internet | | DMZ / LAN |
+----------+ +-----------+
\ /
eth0\ /eth1
+----------+
| Firewall |
+----------+
Then you would have to define an IP range for your LAN and an IP range for your DMZ.
For instance you could have:
DMZ=200.200.200.0/24 -> one subnet of 255 IP's
LAN=200.200.201.0/20 -> plus 16 subnets of 4096 IP's
The server must have the network interfaces already configured with the correct IP for the networks they are in.
Then you could use the following commands (this is just a simple example):
You could use one of the linux-based setup-on-old-PC firewalls like Smoothwall, or you could go for a low cost appliance, like a Zyxel Zywall 2.
The latter will cost a bit more (not much!) but has the advantage taht you just get it out of the box and plug it in - nothing to "install".
OR
You could get a single firewall which supports WAN, LAN and DMZ zones (and more) as standard - such as a Zywall USG100 or Sonicwall TZ210.
Business Accounts
Answer for Membership
by: arober11Posted on 2009-08-03 at 03:04:27ID: 25002993
Simplest solution would be to add a few entries to your /etc/ hosts.allow & hosts.deny files.
Quick search here will give you the syntax.