|
I am wondering what ports can / should be closed down on a windows webserver 2008. Port 80 of course not, and 3389 not, too, because I need a remote desktop connection.
netstat told me the server is listening on following ports:
TCP 0.0.0.0:80 0.0.0.0...
Started by Max on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
If your only serving HTTP pages, then the only port intranet sites? Is it serving....
Have a clear idea) and then open only those you need to make things work .
port 80 and 443 need to be open, but if its just an email gateway, then they don't.
|
|
Is there a way to use Rundll32.exe tcpmonui.dll,LocalAddPortUI from a command line to add a standard TCP/IP port for a printer?
Or any other way to add a standard TCP/IP printer port from a command line.
Started by Adam L on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
: \\127.0.0.1:9100 This page suggests that it is not possible unless the TCP/IP port already existsyou mean like:
NET USE [local port to bind to ie LPT1] \\ComputerName\printer_share /PERSISTENT:YES:
Note The following sample syntax....
|
|
How to host wcf services,through TCP Ports,and how to listen to it?,and consume services through these TCP ports? i.e apart from net.tcp binding,is there someway to host and consume using TCP Ports.?
Answer Snippets (Read the full thread at stackoverflow):
If you just ....
Here's an walktrough on how to achieve is a WCF service that runs on TCP port 8000 for transport layer, using HTTP as the transport protocol with IIS.6.
To host an WCF service that runs on a specific TCP port.
|
Ask your Facebook Friends
|
When developing an app that will listen on a TCP/IP port, how should one go about selecting a default port? Assume that this app will be installed on many computers, and that avoiding port conflicts is desired.
Started by Kevin Wong on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
I would just ....
If by "open to the public at large" you from this list (Wikipedia) .
Go here and pick a port with the description Unassigned
First step: look at IANA listing commonly used port numbers here and try not to use anyone else's.
|
|
Is there a more elegant way of checking if a TCP port is available with Delphi other than catching a netstat call?
Started by Mattl on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I guess other indy components can tell if a port is open endpoint....
So basically you could create such component, bind it ) then the port is probably in use, else it is free.
An exception if a port is in use when it is being opened.
|
|
I am looking in SQL Server Configuration Manager, 'Protocols for SQLEXPRESS'
And IP1, IP2, IP3, IP4, and IPALL have the TCP Port blank.
Should that be 1433 or it will default to that?
Answer Snippets (Read the full thread at serverfault):
If you want to use a specific port like 1443 and the settings are....
The default instance will use port 1433 by default, if TCP is enabled a static port if you wish in SQL Configuration Manager.
You have to set it manually.
|
|
Hi,
I have a very simple question. I want to test whether a particular port is currently under use or not. For this, I want to bind a TCP socket to the port, if the connection is refused means the port is in use and if not that mean the port is free.
...
Started by krabhishek on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If so, you can use....
)); if(socket == -1) { printf("error opening socket"); return -1; } sin.sin_port = htons(port); sin.sin you just want to test if the particular port is currently in use? (and don't really need to make a program).
|
|
What I need to see is the TCP messages sent to a port for a given IP. So for example
127.0.0.1:11000
How can I see all the TCP messages being sent to that port?
This has to work with Windows, either Windows 2003 or XP
I have tried WireShark, but I don...
Started by David Basarab on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Wireshark traffic filters are explained in your case, you need
tcp port 11000 and host localhost.
The following expression: tcp port 11000 and dest host 127.0.0.1 .
|
|
I want to create a new net.tcp://localhost:x/Service endpoint for a WCF service call, with a dynamically assigned new open tcp port.
I know that TcpClient will assign a new client side port when I open a connection to a given server.
Is there a simple...
Started by TheSeeker on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Otherwise it is still possible that some other process opens the port....
First open the port, then give the correct port number to the other process.
The TCP stack will allocate the next free one.
Use a port number of 0.
|
|
Hi does anyone knows of any .net library or resources that will assist me to implement a tcp port scanner? thanks
Started by Karim on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://www.geekpedia.com/tutorial142_Creating-a-Port-Scanner.
I found some example codes.
For simple one, that will just try to connect to each port and report success / failure, without).
|