Menu

DNP3 TCP

Reference page for DNP3 over TCP covering port usage, connection roles, and Ethernet telemetry design considerations.

Categories:

What DNP3 TCP Is

DNP3 over TCP carries the same role, object, and control model through an IP network, commonly on TCP port 20000. It matters when telemetry must cross routed infrastructure or integrate with newer SCADA and supervisory network designs.

The key point is that DNP3 TCP does not replace the application model with a generic IP model. DNP3 roles, addresses, data objects, event behavior, and control sequences still apply exactly as they would on serial. TCP only changes the transport path and the surrounding network assumptions.

Where DNP3 TCP Fits

Deployment PatternWhy It MattersCommon Risk
Routed SCADA backhaulLets telemetry cross larger IP infrastructureFirewall and route policy are ignored until commissioning
Newer Ethernet-capable RTUs and relaysAvoids serial-only transport constraintsTeams assume IP reachability guarantees protocol success
Gateway handoff into supervisory systemsSimplifies transport into modern networksDNP3 application-layer identity is forgotten because the link is IP-based

What Still Has To Be Designed

DNP3 TCP still needs disciplined startup data:

  • source and destination DNP3 addresses
  • TCP endpoint details including IP address and expected port, commonly 20000
  • role assignment, meaning which side is master and which is outstation
  • polling and unsolicited-response expectations
  • one known-good object or control test used to validate the path

That list matters because TCP solves transport reachability, not DNP3 semantics. A device can accept a socket connection while still failing the real telemetry workflow.

Common Failure Modes

Failure PatternWhat Usually HappenedPractical Result
IP route is healthy, DNP3 role is wrongNetwork team validates the path, but protocol ownership is wrongSessions connect while polls and controls still fail
TCP port assumed instead of verifiedSite policy or device configuration differs from expectationThe project tests the wrong path
Firewall policy blocks the real traffic pathBasic reachability was tested more loosely than production behaviorCommissioning works temporarily or from one subnet only
DNP3 addresses ignored because the link is TCPApplication identity was treated like a network detailThe session is reachable but the devices do not behave correctly

Commissioning Notes

Commissioning should prove both the IP path and the DNP3 path. That normally means validating the socket route and then immediately confirming one real DNP3 interaction, such as an integrity poll or a known-good read. If the project expects controls or unsolicited responses, those should also be tested explicitly instead of assuming that successful reads imply full protocol readiness.