The two main areas to check are: Port Connectivity, and Ping/connection timeouts or dropped packets.
Port Connectivity: Is the port open?
telnet servername port#
e.g.
Telnet DetectionServerName 8100
Telnet EndpointServer 8100
If the port is open you should be taken to a blank screen, otherwise you may receive a "Connection Refused" error.
NOTE: Missing Telnet? Check for additional features via Add/Remove Programs; Telnet is typically not 'installed' on Windows 7 and Windows 2008
Is the Port Listening for connections?
You can also use the netstat command to see if a port is 'Listening' or established:
Example of seeing if a Detection server is listening on port 8100 for a connection request from Enforce=
On the Detection server via a Command window:
C:\>netstat -aon | find "8100"
TCP 0.0.0.0:8100 0.0.0.0:0 LISTENING 3740
TCP 192.168.2.52:8100 192.168.2.50:63843 ESTABLISHED 3740
If Enforce is sees the detection server you should see an ESTABLISHED connection.
Where 192.168.2.52 is a Detection server waiting for a request on Port 8100, and 192.168.2.50 is Enforce Established connectivity on a random port, in this example, Port 63843
Can you Ping the remote system, and does the response drop packets?
Ping request response time:
Basic command - ping servername
e.g.
C:\>ping v11-enforce-win
Pinging v11-enforce-win [192.168.2.50] with 32 bytes of data:
Reply from 192.168.2.50: bytes=32 time<1ms TTL=128
Reply from 192.168.2.50: bytes=32 time<1ms TTL=128
Reply from 192.168.2.50: bytes=32 time<1ms TTL=128
Reply from 192.168.2.50: bytes=32 time<1ms TTL=128
Ping statistics for 192.168.2.50:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
Advanced command - ping <number of packets> <buffer size/payload> <servername> > (output to file)
ping -n 50 -l 1500 ServerName > c:\testping.txt
The example ping above does the following: Sends 50 packets, with buffer size of 1500 (generally the default MTU packet size) and saves the output to c: as testping.txt