July 2006 - Posts
This article will give you more information
on ports, protocals and services used on microsoft server OS.
REFERENCES
How to configure a firewall for domains and trusts -
179442 (http://support.microsoft.com/kb/179442/)
Information about TCP/IP port assignments -
174904 (http://support.microsoft.com/kb/174904/)
For more information about how to restrict Active Directory replication
traffic, see the "Restricting Active Directory replication traffic to a specific port"
-
224196 (http://support.microsoft.com/kb/224196/)
Port Reference for MS TCP/IP" in the Microsoft Windows NT 4.0 Resource
Kit -
http://www.microsoft.com/resources/documentation/windowsnt/4/server/reskit/en-us/net/port_nts.mspx
TCP and UDP Port Assignments -
http://www.microsoft.com/windows2000/techinfo/reskit/en-us/default.asp?url=/windows2000/techinfo/reskit/en-us/cnet/cnfc_por_GDQC.asp
Port Assignments and Protocol Numbers -
http://www.microsoft.com/resources/documentation/Windows/2000/server/reskit/en-us/Default.asp?url=/resources/documentation/windows/2000/server/reskit/en-us/cnet/cnfc_por_ZQYU.asp
The Internet Assigned Numbers Authority coordinates the use of well-known
ports -
http://www.iana.org/assignments/port-numbers
For more information about how to configure DTC to use a specific
range of ports, see the "Configuring Microsoft Distributed Transaction Coordinator
(DTC) to work through a firewall" -
250367 (http://support.microsoft.com/kb/250367/)
File Replication Service
For more information about how to configure FRS to work with a firewall,
see the "How to restrict FRS replication traffic to a specific static port" -
319553 (http://support.microsoft.com/kb/319553/)
Internet Information Services
For more information about the ports that are used by IIS 4.0, by
IIS 5.0, and by IIS 5.1, see the "Inetinfo services use additional ports beyond well-known
ports" -
327859 (http://support.microsoft.com/kb/327859/)
SQL Server
For more information about how SQL Server 2000 dynamically determines
ports for secondary instances, see the "Behavior of SQL Server 2000 Network Library
during dynamic port detection" -
286303 (http://support.microsoft.com/kb/286303/)
For more information about the ports that are used by SQL Server
7.0 and SQL Server 2000 for OLAP, see the "TCP ports used by OLAP services when connecting
through a firewall" -
301901 (http://support.microsoft.com/kb/301901/)
Terminal Services
For more information about how to configure the port that is used
by Terminal Services, see the "How to change Terminal Server's listening port" -
187623 (http://support.microsoft.com/kb/187623/)
|
Issues or Symptoms |
Article Title & Link |
Description or Resolution |
|
Server 2003 TS Overview |
Technical
Overview of Windows Server 2003 Terminal Services |
The TS component of Server 2003 builds on the solid foundation provided
by the Application Server mode in Windows 2000 TS, and includes the new client and
protocol capabilities in Windows XP. TS lets you deliver Windows-based applications,
or the Windows desktop itself, to virtually any computing device, including those
that cannot run Windows. |
|
Guidelines for deploying TS |
Guidelines
for Deploying Terminal Server |
how to installing Your Terminal Server
How to installing Your License Server
How to activating Terminal Server Licensing
How to deciding What Type of CAL to Purchase
Making Sure That Your Terminal Server Can Detect the License Server
Matching Terminal Server Mode with Types of CALs Purchased |
|
TS FAQs |
Frequently
Asked Questions About Terminal Services |
Deployment
Licensing
Connectivity
Client
Printing |
|
How to plan and deploy a load balanced TS farm using session directory,
and how the session directory operates in a load balanced environment. |
Session
Directory and Load Balancing Using Terminal Server |
TS Session Directory is a feature that allows users to easily and automatically
reconnect to a disconnected session in a load balanced TS farm. The session directory
keeps a list of sessions indexed by user name and server name. This enables a user,
after disconnecting a session, to reconnect to the correct terminal server where the
disconnected session resides to resume working in that session.
|
|
How to manage a server remotely |
Remote
Administration of Windows Servers Using Remote Desktop for Administration |
Remote Desktop is a feature in Server 2003. It provides the Windows graphical
user interface to remote devices over LAN, WAN, or Internet connections. This white
paper explores the design goals and implementation of Remote Desktop in Server 2003,
and explains how an enterprise can use this feature to remotely manage its Servers
from anywhere. |
|
How to restrict user sessions |
Locking
Down Windows Server 2003 Terminal Server Sessions |
T this white paper explains how you can use the features of Active Directory
to restrict user sessions on the Terminal Server to only the applications and desktop
functionality that the administrator deems necessary. |
|
Where to download Remote Desktop Web Connection |
Remote
Desktop Web Connection for Windows Server 2003 Software Download |
The Remote Desktop Web Connection ActiveX control allows you to access
your computer through Remote Desktop, via the Internet, from another computer using
Internet Explorer. You must be using Internet Information Services (IIS) to use this
feature.
|
|
Remote Desktop FAQs |
Frequently
Asked Questions about Remote Desktop
|
Get answers to common questions about using Remote Desktop. |
|
How to enable users to connect a server remotely |
Enabling
Users to Connect Remotely to the Server |
Using the Remote Desktop Users group to grant access to a terminal server
Assigning Permissions Manually |
|
TS Tools and settings |
Terminal
Services Tools and Settings |
|
How to Give permission to large number of Tables/SP/Views in
a Database . (Microsoft SQL 2000)
Permission script for Tables.
SELECT
'grant select, insert, update on ' + TABLE_NAME + ' TO [Machine name\user]' FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE='BASE TABLE'
Permission Script for Store procedures.
SELECT
'grant EXECUTE on ' + ROUTINE_NAME + ' TO [Machine name\user]' FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_TYPE='PROCEDURE' and Lower(SUBSTRING(ROUTINE_NAME,1,2))<>'dt'
AND PATINDEX('%sys%',ROUTINE_NAME)=0
Permission Script for Views
SELECT
'grant select on ' + TABLE_NAME + ' TO [Machine name\user]' FROM INFORMATION_SCHEMA.views
Run the above scripts to get the details of the Tables/SP/Views like this.
Example for Tables script.
grant
select, insert, update on Country TO [Machine name\user]
grant
select, insert, update on Customer TO [Machine name\user]
grant
select, insert, update on CustomerBrands TO [Machine name\user]
grant
select, insert, update on CustomerUserMapping TO [Machine name\user]
grant
select, insert, update on dtproperties TO [Machine name\user]
>
>>
Follow the same method for the SP and Views.
eravi
Enabling Remote Desktop using regedit, follow these steps:
-
Run REGEDIT from Start>Run
-
Click on File, then select Connect
Network Registry
-
Type the remote computer IP or host name
in the Enter the object name to select and the click OK.
4. If you don't have permission to access the remote computer, the logon screen will
show up. Type the username and password for the remote computer. Then click OK.
5. Now, the remote computer is listed in the Registry Editor.
6. Browse
to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal
Server, in the right panel,
seelct fDenyTSConnection (REG_DWORD). Change the
value data from 1 (Remote Desktop disabled) to 0 (Remote Desktop enabled).
7. Close the regeidt.
8. Try to connect now that machine using the RDP.