Hello! I have a sinara 9805 Power amplifier "Booster". I set an ip through VCP, and it pings, but when I try to connect, it gives WinError 10061 "No connection could be made because the target machine actively refused it".
That's the code I use:
import socket
ip = '192.168.1.3'
port = 5000
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((ip, port))
Thank you