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

replicating to DMZ

Status
Not open for further replies.

ilpadrino

MIS
Feb 14, 2001
416
US
Does anyone have suggestions for replicating/synchronizing data between a domain server's file share and a non-domain server in a DMZ? We want to put a webserver in the dmz and off the domain, but we need to copy files there every hour.

Thanks.
 
i would just schedule a .bat on the source server to copy the files to the dmz server. or i also used the following sync program, works good, its free if you only need moderate use, its cheap to license if its used to move large amounts of data. very configurable.



RoadKi11
 
Hi,

Would this not compromise the functionality of the DMZ?

You would have to have some number of ports to allow network shares etc..?

Code:
The following ports are associated with file sharing and server message block (SMB) communications:
• Microsoft file sharing SMB: User Datagram Protocol (UDP) ports from 135 through 139 and Transmission Control Protocol (TCP) ports from 135 through 139.
• Direct-hosted SMB traffic without a network basic input/output system (NetBIOS): port 445 (TCP and UPD).


Just a thought..
 
Would this not compromise the functionality of the DMZ?"
Well in this instance, with a decent firewall, the ports could be opened only from the LAN to DMZ, the reverse could be blocked.

........................................
Chernobyl disaster..a must see pictorial
 
i believe robocopy is obsolete, i am using xcopy currently for domain member servers, and xcopy i think took the place of robocopy. for my implementation of xcopy, i needed a mapped drive, which requires adequate permissions. this wasn't an issue for domain members.

the other option i've played with is taking hourly snapshots and scripting volume attachments to those snapshots on our san from the web/dmz server. the san is OS/domain independent. but i can only view the files if i follow that function with resetting ownership and permissions.

for the DMZ comments, if not setting up this type of replication, how would you recommend getting the files onto that DMZ server - ftp?
 
robocopy is part of the Windows Server 2003 Resource Kit. It runs fine. Even on 64bit machines.

It's far from obsolete.

Pat Richard, MCSE MCSA:Messaging CNA
Microsoft Exchange MVP
Want to know how email works? Read for yourself -
 
The following ports are associated with file sharing and server message block (SMB) communications:
• Microsoft file sharing SMB: User Datagram Protocol (UDP) ports from 135 through 139 and Transmission Control Protocol (TCP) ports from 135 through 139.
• Direct-hosted SMB traffic without a network basic input/output system (NetBIOS): port 445 (TCP and UPD).
Suggestion, I don't agree with opening netbios ports or running netbios on a web server in the DMZ. What I would do is set up and ACL that allows FTP communiction only between the web server and the internal subnet or ip of a server that will be running the .bat job. Set up FTP on the webserver and run an ftp batch job from the internal server.
To secure the username and password there are third party utilites that can be used to setup secure FTP.
I'm not 100% sure, but you might be able to set up IPSec between the web server and internal network and ecrypt FTP traffic. This is just a guess, I have not researched it... maybe someone out there has implemented this and will chim in...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top