This is a Beckhoff ADS proxy that could resolve multiple tcp connections with same ip address issues.
Download binary from github release page or cargo install ads-proxy
, then run ads-proxy
.
```shell ADS proxy utility
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, see default user and password
shell
ads-proxy -r 10.10.10.10.1.1 192.168.0.10:48898
```python import pyads
pyads.setlocaladdress("10.10.10.10.1.x")
plc1 = pyads.Connection(amsnetid="192.168.0.10.1.1", amsnetport=851, ip_address="127.0.0.1") with plc1: ...
plc2 = pyads.Connection(amsnetid="192.168.0.10.1.1", amsnetport=851, ip_address="127.0.0.1") with plc2: ... ```
text
client 1 --|
10.10.10.10.1.1 |
| multi-connections one connection
client 2 ---------------------> ads-proxy --------------> PLC
10.10.10.10.1.2 | a.b.c.d route 10.10.10.10.1.1
| a.b.c.d
client n --|
10.10.10.10.x.y
MIT