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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I set up users in a dmz to be able to login to an NT Server? 1

Status
Not open for further replies.

NEEDHLP

IS-IT--Management
Feb 18, 2009
2
0
0
US
I'm trying to allow users from a less secure dmz to login to an NT server on the inside. I've tried allowing the 137, 138, 139 and 135 ports udp, tcp but have not been successful. Is this possible to do? Thanks
 
It is possible but it can be tricky to get working with NT. About a year ago I had two domains one in the inside and one in the dmz but I wanted a trust relationship between the two. It took a couple of weeks to crack but it was worth the trouble in the end. Hope this info helps solve your troubles.


PDC on INSIDE = 192.168.100.1
PDC NAME = SERVER
NT DOMAIN = EXAMPLE

Firstly you must be able to ping the PDC from a computer on the DMZ. If you cannot ping it you must have missed the static route i.e.



static (inside,dmz) 192.168.100.1 192.168.100.1 netmask 255.255.255.255 0 0

this static should allow you to ping 192.168.100.1 from a DMZ client to your PDC. Next you must open the following ports which are:

conduit permit tcp host 192.168.100.1 eq 139 any
conduit permit udp host 192.168.100.1 eq netbios-ns any
conduit permit udp host 192.168.100.1 eq netbios-dgm any

If you still have trouble you may need to add these lines to a client lmhosts file {its been a while so I hope I got the correct info. It might be worth checking on microsoft website}

192.168.100.1 SERVER #PRE #DOM:EXAMPLE
192.168.100.1 "EXAMPLE \0x1B" #PRE
192.168.100.1 "EXAMPLE \0x00" #PRE
192.168.100.1 "EXAMPLE \0x1C" #PRE
192.168.100.1 "EXAMPLE \0x1E" #PRE


Good luck.
 
Hi,

You said "this static should allow you to ping 192.168.100.1 from a DMZ client to your PDC"

Shouldn't we need to add CONDUIT command to PING from DMZ workstation (e.g. 192.168.100.2) to Server?
#conduit permit icmp 192.168.100.1 192.168.100.2

Or will does it work just by defining STATIC as you have mention
Thanks

John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top