A Virtual Service has been deployed from a Windows Workstation to a Linux server.
The Virtual Service is shown correctly in the Portal but there are no transactions.
When sending an HTTP(S) request to the VS using Postman, the request times out.
How can the TCP connectivity from a client to the VS be checked.
Release : All supported versions of DevTest
Component : Service Virtualization
Confirm on the Linux server that the VS is listening on the listen port of the VS with the netstat command:
netstat -anp
Use telnet to confirm the connectivity:
telnet <remote server name or ip> <remote port number>
Or on Windows from a powershell run:
Test-NetConnection -Port <remote port number> -ComputerName <remote server name or ip>