11-28-2022 01:05 AM
Hi Family
Recently I met an issue on NI Max Network Devices-Measurememt&Automation Explorer,it was on two equipment connection by ethernet cable(Windows10 Computer and GSS7000),setting the IPs on computer and GSS7000,and also could ping each other successfully. But then create the VISA TCP/IP resource,(Manual Entey of Raw Socket),tried to enter the GSS7000 IP on the computer side,and the port number, after that, clip the Validate,pops up error window,showed VISA error code:0xBFFF0011,as the attach screenshot show, need your guys help with guiding me to fix the issue,thank you!
12-01-2022 05:45 AM
12-06-2022 11:13 PM
I do not find user manual of GSS7000.
But, I found GSS7725.
Base on this User Manual, may try the port 13100.
"
6.3 Connecting to the controller
The GSS7725 controller will open a TCP/IP port at the given port address that is defined within the
“remote.conf” file (see 6.1). Shown below is a Python example connecting to the GSS7725
controller from another PC that is connected to the same (5 network) as the GSS7725 controller.
Note that the script assumes the default port and IP address are being used.
import socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect(('192.168.5.30', 13100))
"