Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

CI Coverage PyPI License

dls_plc_tools

Tools for interrogating Omron NX PLCs over EtherNet/IP, to support EPICS commissioning of PLC-based vacuum systems at Diamond Light Source.

They let you browse the tags a PLC publishes, inspect the layout of its structures, and watch values update live — without a Sysmac Studio licence or physical access to the controller. Everything is read-only explicit messaging: the same mechanism the EPICS ether_ip driver uses, serviced in the controller's spare time, so it is safe to run against production PLCs.

There are two front-ends over the aphyt library: a command-line tool (dls-plc-tools read) and a PySide6 desktop GUI (dls-plc-tools gui) — both subcommands of the single dls-plc-tools command, so you can run either without installing, e.g. uvx dls-plc-tools gui 172.23.x.x.

What Where
Source https://github.com/DiamondLightSource/dls-plc-tools
PyPI pip install dls-plc-tools
Docker docker run ghcr.io/diamondlightsource/dls-plc-tools:latest
Releases https://github.com/DiamondLightSource/dls-plc-tools/releases

Command-line tool

With just an IP address, dls-plc-tools read discovers every published structure tag on the PLC and summarises each one — its member layout and how many instances are actually in use:

dls-plc-tools read 172.23.x.x

Other modes:

dls-plc-tools read 172.23.x.x -l              # list every published tag and its type
dls-plc-tools read 172.23.x.x -s Seq          # show one structure's members and array bounds
dls-plc-tools read 172.23.x.x -d Seq          # live-updating table of a structure's values
dls-plc-tools read 172.23.x.x -d Seq -m Desc,State,Status   # choose which members to watch

--detail/-d redraws a table every 2 seconds (floor 0.5 s, set with --interval), highlighting cells that have changed. Press Ctrl-C to stop. See dls-plc-tools read --help for the full option list.

GUI

dls-plc-tools gui 172.23.x.x

dls-plc-tools gui gives you a browsable list of the PLC's published tags, a live table of a selected structure's values (changed cells flash amber), and an export of the discovered structure layouts to an Excel spreadsheet. The IP address argument is optional — you can also enter it in the window.

Reaching a PLC on a private network (port forwarding)

Some PLCs sit on a private per-CIA network (192.168.<cell>.0/24) reachable only from the cluster's worker nodes, not from a normal workstation. Tick Port forward in the GUI to enable the extra fields and connect via a temporary socat forward on the (acastus) cluster:

  • Node — the worker node with access to that private network. Ticking Port forward fetches the cluster's live node list (kubectl get nodes) into the dropdown, so it always reflects the current nodes; if you're not logged in yet it falls back to a static sr01csr24c list and shows the error. The combo is editable, so you can type over it for any other node.
  • Service IP — a fixed-pool IP for the forward's LoadBalancer, or a DNS name that resolves to one (the dropdown offers sr01c-pfwdsr24c-pfwd, also editable). A name is resolved to its IP before use; that resolved IP is the address the GUI then connects to.
  • Port — the port forwarded on both sides, defaulting to the EtherIP port 44818.

On Connect the tool first checks nobody else already forwards service_ip:port (it won't clobber another user's forward), then stands up a throwaway socat pod + LoadBalancer service (service_ip:portplc_ip:port, pinned to the node) and connects to the Service IP; Disconnect (and closing the window) tears both down. The Pod indicator by the buttons shows the forward's state — red inactive, orange pending (standing up), green good (up and reachable) — alongside the pod name (pfwd-<user>-<port>) so you can trace it with kubectl get pod <name> -n accelerator. This path needs kubectl and the acastus klogin, so it only works on a DLS workstation. Leave Port forward unticked to connect directly to the IP, as before.

Every field can be prefilled from the command line, which also ticks the box — handy for a specific cell. This opens the GUI ready to connect to the sr19c PLC through its forward:

dls-plc-tools gui 192.168.19.10 --port-forward \
  --node sr19c-k8s-serv-01.pri.diamond.ac.uk --service-ip sr19c-pfwd

--service-ip takes an IP or a DNS name, --port overrides 44818, -f is short for --port-forward, and --cluster (default acastus) selects which cluster's klogin to source. See dls-plc-tools gui --help for all options.

The Service IP is normally already owned by a permanent per-node forward that exposes other services on the same fixed IP (e.g. the sr19c-pfwd Helm release under common-services/). Sharing one LoadBalancer IP between that service and this tool's needs MetalLB's metallb.universe.tf/allow-shared-ip annotation set to the same key on both — the chart and the tool both key it on the IP itself, so they match automatically, as long as the permanent service carries the annotation.

Log into acastus first. The tool has no login of its own — it reuses your shell's cluster credentials. Authenticate in a terminal before launching the GUI (source the acastus klogin and log in, e.g. kubectl get pods -n accelerator), then start the GUI from the same account. If your login is missing or expired, the forward step fails fast with a clear "not logged into acastus … log in in a terminal, then retry" message in the status bar (a preflight kubectl auth whoami check), rather than hanging. If you hit persistent auth errors, run klogout and log in again.

Installation

pip install dls-plc-tools

Or, for development, using uv:

git clone https://github.com/DiamondLightSource/dls-plc-tools.git
cd dls-plc-tools
uv sync
uv run dls-plc-tools read <ip>

Notes

  • These tools only ever read. They never write to the controller, never start a keep-alive poll, and keep at most one request in flight. Poll rates default to ~2 s and are floored at 0.5 s.
  • Tags are visible over EtherNet/IP only if they are globals with Network Publish set in Sysmac Studio, plus the controller's _-prefixed system variables. Enumeration uses Omron's Tag Name Server object (CIP class 0x6A).
  • DLS structures are structure-of-arrays: Seq.Interfc[1] is instance 1, with index 0 reserved as padding. A non-empty Desc entry marks an instance that is actually in use.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dls_plc_tools-1.0.0b4.tar.gz (108.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dls_plc_tools-1.0.0b4-py3-none-any.whl (33.6 kB view details)

Uploaded Python 3

File details

Details for the file dls_plc_tools-1.0.0b4.tar.gz.

File metadata

  • Download URL: dls_plc_tools-1.0.0b4.tar.gz
  • Upload date:
  • Size: 108.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for dls_plc_tools-1.0.0b4.tar.gz
Algorithm Hash digest
SHA256 158bd871a228ce299ec02a35a3a38c7f42287e9dc716c5df345497a3326c9db5
MD5 dde05c81f15f16db71bc2f390f8280e4
BLAKE2b-256 80a24bd6635222db2c4e9f61d7a3ffad6cd1af5d3577e26f33be9e9cb1abcdd9

See more details on using hashes here.

File details

Details for the file dls_plc_tools-1.0.0b4-py3-none-any.whl.

File metadata

  • Download URL: dls_plc_tools-1.0.0b4-py3-none-any.whl
  • Upload date:
  • Size: 33.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for dls_plc_tools-1.0.0b4-py3-none-any.whl
Algorithm Hash digest
SHA256 4bff3f90d93045186172adf0b10a5d8646637cd12e96fd43401e780ef24a50ef
MD5 6751a2382264553e20981615e3e3597a
BLAKE2b-256 40082bb6882848b6f59e44b78031a966f43d090e03bca90ec9d67bbd27356f44

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0.0b4 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page