TapeTrack Documentation

Because there is more to tape management than you ever realized

User Tools

Site Tools


cookbook:test_netconnection

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
cookbook:test_netconnection [2025/10/01 01:21] – created Scott Cunliffecookbook:test_netconnection [2025/10/01 01:48] (current) – [See Also] Scott Cunliffe
Line 10: Line 10:
   * Display interface and source IP info   * Display interface and source IP info
  
-===== Example =====+===== Ping A Host =====
  
 Ping a remote host, replace your-server.com with your servers address. Ping a remote host, replace your-server.com with your servers address.
Line 18: Line 18:
 </code> </code>
  
 +Output:
 +
 +<code>
 +PS C:\Users\diffl> Test-NetConnection yourserver.com
 +
 +ComputerName           : Your Server
 +RemoteAddress          : XXX.XXX.XXX.XX
 +InterfaceAlias         : Loopback Pseudo-Interface 1
 +SourceAddress          : XXX.XXX.XXX.XX
 +PingSucceeded          : True
 +PingReplyDetails (RTT) : 220 ms
 +</code>
 +
 +===== Test TCP Port Connection =====
 +
 +Ping the remote host adding the port number, TapeTrack operates over port 5000 by default. or next most common on port 443
 +
 +<code>
 +Test-NetConnection your-server.com -Port 5000
 +</code>
 +
 +Output:
 +
 +<code>
 +PS C:\> Test-NetConnection yourserverk.com -P 5000
 +
 +ComputerName           : yourserver.com
 +RemoteAddress          : XXX.XXX.XXX.XXX                                                                                       RemotePort             : 5000 
 +InterfaceAlias         : Wi-Fi 
 +SourceAddress          : XXX.XXX.XXX.XXX                                                                                         PingSucceeded          : True
 +PingReplyDetails (RTT) : 221 ms
 +TcpTestSucceeded       : False  
 +</code>
 +
 +TcpTestSucceeded       : False  shows the port is blocked, or TapeTrack is not running on that port.
 +====== See Also ======
 +
 +  * [[troubleshooting:diagnosing_connection_problems|Diagnosing Connection Problems]]
 +  * [[cli:tmss10ping|TMSS10Ping]]
 +
 +
 +{{tag> connection ping server troubleshooting }} 
  
cookbook/test_netconnection.1759281696.txt.gz · Last modified: 2025/10/01 01:21 by Scott Cunliffe