Hi i'm trying to communicate with a contrologix plc in a remote rack.
Pc is connected to a local rack through an 1756-EN2T (network_scheme in attachment),
I've seen some examples on how a RoutePath woul look like an i come up with this :
192.168.1.44 - to the IP address of Ethernet card
1 - Ethernet card onto the backplane of the expansion rack
0 - To slot 0 which is the ControlNet card
2 - Out the front door of the ControlNet card onto the ControlNET
7- Into Node 7 which is the ControlNET card in the remote rack
1 - Out the back door onto the main rack backplane
0 - To slot 0 which is the processor
Making full path something like this:
192.168.1.44,1,0,2,7,1,0
I've tried it using Kepserver and it works but when i try in in C# i cannot connect to the Plc
I've tried setting
_client.IPAddress = 192.168.1.44;
_client.RoutePath ="1,0,2,7,1,0";
and
_client.RoutePath ="192.168.1.44,1,0,2,7,1,0";
In the end i confirmed the path using method indicated at the bottom of :
https://www.advancedhmi.com/documentation/index.php?title=Routing_PathsWhich you can find in attachment(io_scheme)
At this point i think i've read all the posts regarding routing through rack and i can't find anything else i could try.
Is there something obvious i'm missing?