IIS doesn't know or care WHERE the SQL box is. To put SQL behind the FW do
the following:
1) turn off NAMED PIPES (these are bad anyway)
2) Put the SQL behind the FW
3) open up port 1433 (default port, user definable) for in/out bound traffic
(TCP)
4) specify that ONLY the IIS IP address has access to the port
5) specify that the outbound will ONLY go to the IIS box
6) to test, launch TELNET on the IIS box and attempt to attach to the SQL
server.
Pat Filoteo, MCSE
> I'm running IIS with SQL Server on a box outside of a firewall. I want to
> move the SQL Server behind the firewall. Can IIS connect through the
> firewall to SQL Server? I know that I can setup SQL Servers on either
side
> of the fw and replicate the data, but there are a lot of drawback to going
> this route. Would using SiteServer help?
> -Steve Trendel