Allen Bradley PLC Communication

allenz2123

Member
Join Date
Jan 2014
Location
Auckland
Posts
5
Hi

This may seem trivial to some but I need to know the answer to my problem.

We have two separate network systems A and B

In system A all the IP address will be in the range of 192.168.1.xxx

In system B all the IP address will be in the range of 192.168.2.xxx

Now I want to send some messages between PLC in system A to and from PLC in system B.

With the network address configured as above is this possible? I tried to set my PC IP to 192.168.1.XXX and ping a PLC that's set to 192.168.2.XXX and I could not do it.

Can anyone help
 
They are not on the same subnet, I suspect.

It would work if you change all the subnet mask from 255.255.255.0 to 255.255.252.0 which would give you a host address of 192.168.0.0 to 192.168.3.255
 
The default subnet mask of 255.255.255.0 is limiting your "sub-network" for network A to 254 usable address of 192.168.1.0 through 192.168.1.255 (0 and 255 are not usable).

The default subnet mask of 255.255.255.0 is limiting your "sub-network" for network B to 254 usable address of 192.168.2.0 through 192.168.2.255 (0 and 255 are not usable).

So the devices on the two different networks cannot "see" each other. Most obviously on your PC, you cannot ping the other network. This can be resolved either by adding a router to route messages from one network to another, or by modifying the subnet mask for your devices.

A router can be a great item to help keep traffic on the two networks from bogging the network down. It can help isolate broadcast and multicast traffic. It can also add security to determine who can access which networks. But routers cost money, require setup, and can actually slow down the transfer of data from network A to network B.

As harryting suggested, modifying the subnet mask to 255.255.252.0 will allow a larger subnet (more ip addresses). It's a quick and easy fix. But now you have more devices talking on the same network. This can cause performance issues as broadcast and multicast traffic on network A is no longer prevented from crossing over to network B. You have also lost some security capability.

Keep in mind, this subnet mask setting needs to be applied to each device, not just your PC.

OG
 

Similar Topics

Hello, I am new here. I am trying to find good places to sell some surplus items that I have that isnt through ebay. Does anyone have any sources...
Replies
6
Views
395
Hi good day Everyone, I have a cimplicity v10 project with 7 to 8k tags communicating with AB PLC through OPC and Rslinx classic. I have this...
Replies
3
Views
218
I am using Allen Bradley PLC 1756-L81E and EIP module 1756-EN2TR for Ethernet/IP communication. My communication works fine but in Get-Attribute...
Replies
2
Views
203
I have a network with 4 PLCs PLC1 is controllogix and PLCs 2-4 are compactlogix and they all need to communicate. The current way I have this...
Replies
8
Views
261
Hi Everyone, I am currently trying to communicate ControlLogix PLCs via EtherNet/IP with Delta V DCS. There is a VIM2 card configured for...
Replies
1
Views
278
Back
Top Bottom