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

Opening a port 1

Status
Not open for further replies.

srenshaw

IS-IT--Management
Jan 19, 2005
75
CA
How can I open a port on a Win 2003 server with SP1 that does not involve the SCW ?

Thanks.
 
Do you have the SP1 firewall running? If not, no ports will be blocked by default. What port are you trying to use and how?
 
The firewall is disabled.

I need to open port 514.

I used Nmap to scan my machine and if I interpreted the scan result correctly, port 514 is closed.

I need 514 to be open so my 2003 server can receive the syslog messages from my Linux server.
 
You need to start up a syslog daemon on your Windows 2003 machine, and it will open port 514 and be listening on this port. Run the following command to confirm this:

netstat -ano|find "514
 
Serbtastic,

I installed the first syslog daemon that I found (the one from Kiwi at and then I ran that command... This is what I got:

Code:
UDP    0.0.0.0:514            *:*                                    1500

Does that mean that it is open ?

The thig is, I already have a listener that listen on port 514 but I don<t know how to open it.
 
That means that the process at PID 1500 (use task manager to find out what is running at that PID) is listening on UDP port 514.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top