firewall for SDE ArcGIS 10 -SQL SERVER 2008

501
2
06-14-2011 11:55 AM
Arturo_FranciscoAcosta_Bazán
Occasional Contributor
I'm wanting to solve the problem of a Windows Server 2008 Standard, which has a v10 SDE for SQL Server 2008 firewall which blocks
output connections from a client bone Desktop I can not access the firewall unless physically disabled public (even the local)
Then I found this solution from Microsoft (*)
A line which would have somewhere to put this line

esri_sde 5151/tcp # ArcSDE for SqlServer

Be correct or missing something else?

(*)
@echo =========  SQL Server Ports  ===================
@echo Enabling SQLServer default instance port 1433
netsh firewall set portopening TCP 1433 "SQLServer"
@echo Enabling Dedicated Admin Connection port 1434
netsh firewall set portopening TCP 1434 "SQL Admin Connection"
@echo Enabling conventional SQL Server Service Broker port 4022
netsh firewall set portopening TCP 4022 "SQL Service Broker"
@echo Enabling Transact-SQL Debugger/RPC port 135
netsh firewall set portopening TCP 135 "SQL Debugger/RPC"
@echo =========  Analysis Services Ports  ==============
@echo Enabling SSAS Default Instance port 2383
netsh firewall set portopening TCP 2383 "Analysis Services"
@echo Enabling SQL Server Browser Service port 2382
netsh firewall set portopening TCP 2382 "SQL Browser"
@echo =========  Misc Applications  ==============
@echo Enabling HTTP port 80
netsh firewall set portopening TCP 80 "HTTP"
@echo Enabling SSL port 443
netsh firewall set portopening TCP 443 "SSL"
@echo Enabling port for SQL Server Browser Service's 'Browse' Button
netsh firewall set portopening UDP 1434 "SQL Browser"
@echo Allowing multicast broadcast response on UDP (Browser Service Enumerations OK)
netsh firewall set multicastbroadcastresponse ENABLE
0 Kudos
2 Replies
Arturo_FranciscoAcosta_Bazán
Occasional Contributor
all good but the old command is something I should change it "netsh firewall" by  "netsh advfirewall firewall"
0 Kudos
VinceAngelo
Esri Esteemed Contributor
A hole poked for an ArcSDE application server service would be on the ArcSDE port (which
defaults to 5151).  It seems you're using Direct Connect (which is RDBMS-dependent).

- V
0 Kudos