Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access from DMZ to Inside

Status
Not open for further replies.

sunyasee

ISP
Apr 8, 2002
94
GB
Hello!

I am setting up a PIX with an internal network of 10.0.0.x with a DMZ network of 192.168.1.x. What I need to do is allow communications between a server in the DMZ and a server on the inside network, communication needs to work in both directions and needs to be restricted to just one port. What is the easiest way of doing this? Does anyone have any examples of a similar config?

Thanks

----

Sunyasee
 
Two ways of doing it, you can do a static translation

or you can implement the nat 0 command..


 
I think nat 0 would be most common in your case, though static would also work.

access-list inside_nat0 permit ip 10.0.0.0 255.x.x.x 192.168.1.0 255.255.255.0
nat (inside) 0 access-list inside_nat0

Then, an appropriate acl for dmz->inside
access-list dmz_inside permit tcp host server1 host server2 eq port
... etc. And add an acl for inside->dmz if you need it.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top