You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

HNZ Protocol stack configuration

The HNZ protocol stack configuration specifies communication parameters and is a collection of entries containing information about OSI Transport and OSI Application layers objects.

Each entry is comprised of attributes that describe the object. All the configuration data are structured using JSON.

Each entry shall be mapped with the corresponding configuration function in the chosen implementation protocol library.

Attributes definition

AttributeDescriptionExpected valuesMandatory
namethis identifies the protocol stackiec104client, iec104server, tase2client, tase2server, 61850client, 61850server, etc...Yes
versionversion number of the configuration file2 digits x.y => x = major change, y = minor changeYes
connectionsarray of connections
Yes
connections.srv_ipIP address to remote IEC 104 serverIP addressYes
connections.portport number to remote IEC 104 serverdefault = 6001No
remote_station_addrremote server station address6 bitsYes
local_station_addrlocal server station address6 bitsYes
remote_addr_in_local_stationremote address in local station0, 1 or 2Yes
Inacc_timeouttimeout before declaring the remote server unreachabledefault = 180 (seconds)No
max_sarmmax number of SARM messagesdefault = 30No
to_socket


repeat_path_Amax number of authorized repeats for path Adefault = 3No
repeat_path_Bmax number of authorized repeats for path Bdefault = 3No
repeat_timeoutTime allowed for the receiver to acknowledge a frame,
After this time, the sender repeats the frame.
default = 3000No
anticipation_rationumber of frames allowed to be transmitted while waiting for acknowledgement default = 3
default_msg_period


Test_msg_sendTest message in sending direction
Yes
Test_msg_receiveTest message in receiving direction
Yes

Configuration JSON structure

{
   "protocol_stack":{
      "name":"hnzclient",
      "version":"1.0",
      "transport_layer":{
         "connections":[
            {
               "srv_ip":"192.168.0.10",
               "port":6001
            },
            {
               "srv_ip":"192.168.0.11",
               "port":6002
            }
         ]
      },
      "application_layer":{
         "remote_station_addr":12,
         "local_station_addr":12,
         "remote_addr_in_local_station":0,
         "inacc_timeout":180,
         "max_sarm":30,
         "to_socket":1,
         "repeat_path_A":3,
         "repeat_path_B":3,
         "repeat_timeout":3000,
         "anticipation":3,
         "default_msg_period":0,
         "Test_msg_send":"1304",
         "Test_msg_receive":"1304"
      }
   }
}

HNZ datapoint representation

This is the Datapoint representation of an HNZ message.

AttributeDescriptionExpected valuesMandatory
do_typemessage typeTSCE, TSCG, TMA, TMN, ACK_TC, MOD10YES
do_addressmessage address
YES
do_valuevalue
YES
do_validvalidityvalid = 0 or invalid = 1YES
do_tstime code10 ms fraction in the 10 min moduloYES
do_ts_ivtimestamp invalidvalid = 0 or invalid = 1YES
do_ts_closs of chronologylost = 0 else = 1YES
do_ts_sts not synchronizedsynchronized = 0 else = 1YES

Example:

{
    "data_object":{
       "do_type":"TSCE",
       "do_address":325,
       "do_value":1,
       "do_valid":1,
       "do_ts":80,
       "do_ts_iv":0,
       "do_ts_c":0,
       "do_ts_s":0
    }
 }

Path exploration

In redundant network configuration or generally in cases where several communication paths exist between one client and one server, the path checking exploration mechanism allows the client to try all the paths one by one without making any difference between them. The client uses the first available path. On disconnection this procedure starts again from the beginning.

  • No labels