VXI-11 is a specification for addressing networked test and measurement equipment. The specification is available on the VxiBus website.
The specification builds on the ONC RPC protocol, of which this package contains a simplified implementation.
In this example, I'll be connecting to a Tektronix TDS2000 oscilloscope. However, you may prefer using a higher level package such as Instruments.jl instead of this package.
julia> using VXI11
julia> l = VXI11.Link(ip"192.168.1.199", 961)
julia> write(l, "*IDN?")
5
julia> String(read(l))
"TEKTRONIX,TBS2104,C020205,CF:91.1CT FV:v1.23; FPGA:v1.21; \n"