This is a Beckhoff ADS proxy that could resolve multiple connections with same ip address issues.
Download binary from github release page or cargo install ads-proxy
, then run ads-proxy
.
```shell
Usage: ads-proxy [OPTIONS]
Arguments:
Options:
-d, --debug Debug mode
-b, --buffer-size
In pyads, connect to ads-proxy
. For example, client 1 and 2 on a host:
ams_net_id=192.168.0.10.1.1
ams_net_id=10.10.10.10.1.1
ams_net_id=10.10.10.10.1.2
(Might need to add route entry in shell command with -r
or in PLC configuration)
shell
ads-proxy -d 192.168.0.10:48898
```python import pyads
pyads.openport() pyads.setlocaladdress("10.10.10.10.1.x") # x=1 or 2 pyads.closeport()
plc = pyads.Connection(amsnetid="192.168.0.10.1.1", amsnetport=851, ip_address="127.0.0.1") with plc: ... ```
MIT