Instrument Control (GPIB, Serial, VISA, IVI)

cancel
Showing results for 
Search instead for 
Did you mean: 

Need Help!Create VISA TCP/IP resource Error

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!

0 Kudos
Message 1 of 3
(904 Views)

Hi  Samlyc

This error can be caused by different ways, to understand how to solve this issue I found an article where the solution is well described and by going through that article step-by-step you can solve this issue. 

 

Regards)

0 Kudos
Message 2 of 3
(842 Views)

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))

"

 

 

0 Kudos
Message 3 of 3
(806 Views)