IEC GOOSE TRAFFIC MODELING AND GENERATION. Omar Hegazi, Eman Hammad, Abdallah Farraj, and Deepa Kundur

Size: px
Start display at page:

Download "IEC GOOSE TRAFFIC MODELING AND GENERATION. Omar Hegazi, Eman Hammad, Abdallah Farraj, and Deepa Kundur"

Transcription

1 IEC GOOSE TRAFFIC MODELING AND GENERATION Omar Hegazi, Eman Hammad, Abdallah Farraj, and Deepa Kundur Department of Electrical and Computer Engineering, University of Toronto, Canada {ehammad, abdallah, ABSTRACT The IEC standard for substation communication and automation presented a reliable alternative to legacy communication networks. IEC defined more than one type of messages, of which the Generic Object Oriented Substation Event (GOOSE) messaging was structured to handle control and commands with strict delay and reliability requirements. This paper details the modeling and implementation of a GOOSE traffic generator in the commercial communication network simulator Riverbed Modeler (formerly known as OPNET). Index Terms IEC-61850, GOOSE messaging, implementation 1. INTRODUCTION Integration and inter-operability in communication networks connecting devices from various vendors is essential for homogeneous operation and management of such networks. The Communications for Power System Automation standard, IEC-61850, is one of the protocols that was created with that purpose in mind [1]. The IEC standard and its extensions are designed to include defined standardized names, standardized meaning of data, and standardized device behaviour models. The standard employs a Substation Configuration Language (SCL), which is used to describe power substation systems and device configurations in a standardized way, eliminating ambiguity and reducing configuration costs [1]. IEC is currently widely used in power substation automation (SA) systems. Based on the standard s success in SA systems, it was extended to be used for communication between substations, and between control centers and substations [1]. The IEC standard relies on an ethernet-based multi-cast messaging architecture [1], where one device (publisher) would update several other devices (subscribers). This enables power substation equipment to define and arrange data in a standardized form across all vendors and then transfer it through a network of industrial switches [2]. IEC defines three types of data mappings/messages: 1) Sampled Value (SV): SV messages transmit instantaneous values of substation equipment (mainly currents and voltages) in a digitized manner [3]. 2) Generic Object Oriented Status Event (GOOSE): GOOSE messages offer a fast and reliable transmission of critical substation events including alarms and commands [4]. 3) Manufacturing Message Specification (MMS): MMS messages are used in control networks to transfer data between controllers as well as between substations and controllers [4]. GOOSE and SV messages offer fast and reliable messaging that uses IEEE 802.1Q ethernet frames to transmit control commands and raw sampled data. This data is generated by relays, controllers and sensors of equipment in the power system [5]. Of particular interest to this work is GOOSE messaging as it is the primary time-sensitive messaging that conveys control and protection commands. There exist Intelligent Electronic Device (IED) simulators that support generating IEC traffic such as OMI- CRON IEDScout [6]. Such simulators are generally commercial and are not open source, which limits the studies that utilize the tool. Nevertheless, it was used in [7, 8] where the generated GOOSE messages from the tool were verified against the standard. A generic IED model was implemented in OPNET [9], where the focus was on evaluating the performance of SA systems for different network topologies. Finally, in [10] an open source traffic generator (Scapy) was used to design and implement a GOOSE traffic generator. Its performance and reliability were evaluated in a simulated network using SMARTFlow (a substation communication network management tool). Modeling GOOSE messaging is challenging due to the fact that the frame length and the message rate are not constant. In this work we model and implement a detailed GOOSE messaging traffic generator in the widely used Riverbed Modeler [11], where the developed traffic generator is highly customizable. We evaluate the implemented traffic generator in terms of added processing delay due to encoding/decoding. The main contributions in this work are the detailed modeling of the GOOSE protocol and a flexible GOOSE traffic generator that can be extended to extract status and value data from IED configuration Extensible Markup Language (XML) files. 2. GOOSE MESSAGING GOOSE messaging enables fast and reliable exchange of data between two or more IEDs over IEEE 802.1Q networks. As /17/$ IEEE 1100 GlobalSIP 2017

2 6. Length: total number of bytes of the following fields: Ethertype, AppID, Reserved1, Reserved2, and goosepdu. Fig. 1. Packet format of a GOOSE frame with the number of bits allocated to each field. If the number of bits is not specified, then it varies based on the IED. For the alldata field, the number of bits is based on the data encoded by the publisher. described in IEC [12], the data exchange is implemented using a publish-subscribe model, where one IED acts as the publisher by creating a GOOSE message that is transmitted to a group of subscriber IEDs simultaneously. GOOSE messages are immediately created once an event, such as the triggering of a circuit breaker, occurs within the substation and they are sent periodically through the network. Source and destination addresses for GOOSE frames are layer 2 Medium Access Control (MAC) addresses. A MAC address is a six byte identifier of the network interface card, but can also be assigned to virtual interfaces or multicast domains GOOSE Ethernet Frame Format The format of a GOOSE frame (Fig. 1) includes the following fields [2]: 1. Destination Address (Dst.): an ethernet MAC multicast address. The ethernet MAC addresses of IEC begin with 01:0C:CD. The fourth octet is 01 for GOOSE while the remaining two octets are used as individual addresses for the GOOSE message. 2. Source Address (Src.): unicast MAC address of the publisher. 3. Virtual Local Area Network (VLAN) Priority Tagging: separates time critical and high priority bus traffic for protection relevant applications from low priority busload. It consists of the following [12]: TPID: the Tag Protocol Identifier indicates the Ethertype assigned for 802.1Q VLAN ethernet frames and is given by 0x8100. TCI: the Tag Control Information separates timecritical GOOSE messages from low-priority busload. 4. Ethertype: type of the Ethernet frame and is given by 0x88b8 for GOOSE messages. 5. AppID: the application identifier. It has a default value of 0x0000 but a unique value should be enforced by the configuration system [12]. 7. Reserved1 and Reserved2: reserved for future standardized applications. They have a default value of 0x GOOSE Protocol Data Unit (PDU) (goosepdu), which consists of the following fields [7]: GOOSE Control Block Reference (gocbref): the name of the GOOSE control block in the IED, Time Allowed to Live (TAL): the maximum time the GOOSE frame remains alive after transmission, Data set (datset): the name of the GOOSE data set in the IED, GOOSE ID (goid): identifier associated with the IED, Timestamp (t): the generation time of the GOOSE frame, State Number (stnum): an integer assigned when a GOOSE frame is created due to an event in the substation, Sequence Number (sqnum): an integer assigned in increasing order to retransmitted GOOSE frames, Test: indicates if the GOOSE message is a test or not, Configuration Revision (confrev): indicates the version of the IED and must be the same for both the publisher and the subscriber, Needs Commission (NdsCom): indicates if the GOOSE frame is valid or not, Number of dataset entries (numdata): indicates the number of data entries in the GOOSE frame, and Data (alldata): the payload of the GOOSE frame Implementation of GOOSE Traffic Generator To perform network tests concerning IEC-61850, several switches and IEDs may be used to simulate a substation network, where the number of IEDs on the network directly impacts the performance of packets. The use of a GOOSE traffic generator instead of physical devices to perform tests on GOOSE frames is a more feasible approach, since a large number of IEDs is not usually available to researchers. Further, the developed software-based GOOSE traffic generator offers the flexibility to: 1) modify the formatting or content of a GOOSE frame to study its security or to emulate cyber attacks, and to 2) modify the number of IEDs to evaluate the performance of GOOSE frames. We use the C programming language to design and implement the GOOSE traffic generator on a Ubuntu LTS (64-bit) Linux-based virtual machine with 2.0 GB RAM and 3.40 GHz Intel Core i CPU. The traffic generator was developed in the environment of Riverbed Modeler In our development, the traffic generator is implemented in two stages: 1) a standalone GOOSE traffic generator utilizing raw network sockets, 2) integrating the traffic generator with the Modeler. 3. STAND-ALONE GOOSE TRAFFIC GENERATOR The stand-alone generator utilizes the libiec61850 open source library [13] to encode and decode frames based on 1101

3 a template IED XML file from [14]. We defined the fields as illustrated in Fig. 1 to generate GOOSE frames. For the ethernet MAC addresses, we extracted the MAC address of the Linux machine and then set the destination address to the default IEC multicast MAC address: //extract source address struct ifreq buffer; memset(&buffer, 0x00, sizeof(buffer)); strncpy(buffer.ifr_name, interfaceid, IFNAMSIZ); ioctl(sock, SIOCGIFHWADDR, &buffer); Fig. 2. A snapshot of the network simulation, where GOOSE frame number 4 is making its way to the subscriber from the publisher. uint8_t srcaddr[6]; memcpy(srcaddr, buffer.ifr_hwaddr.sa_data, 6); uint8_t defaultdstaddr[] = {0x01,0x0c,0xcd, 0x01,0x00,0x01}; uint8_t* dstaddr = defaultdstaddr; Local variables are used to store the values of the TPID, TCI, and Ethertype fields as well as the AppID, Reserved1, and Reserved2. uint16_t TPID; uint16_t TCI; uint16_t Ethertype; uint16_t AppId; uint16_t Reserved1; uint16_t Reserved2; We used a global structure to represent the length field as well as the fields within the goosepdu: struct GoosePublisher { uint8_t* buffer; int lengthfield; int payloadstart; }; char* goid; char* gocbref; char* datasetref; uint32_t confrev; uint32_t stnum; uint32_t sqnum; uint32_t timeallowedtolive; bool needscommission; bool test; struct time* timestamp; The buffer is used to store the hexadecimal values of the fields within the GOOSE frame Networking: Publish-Subscribe In our implementation, the publisher used an XML parser to extract the configuration information for the gocb, dat- Set, goid, and confrev fields from the template IED XML file. This information along with the other fields of the GOOSE message were encoded using the Basic Encoding Rules (BER) into the buffer, which is then sent as a GOOSE frame through a raw socket. Receiving this packet from the socket is the GOOSE subscriber: Fig. 3. Approach for generating GOOSE traffic in OPNET. Fig. 4. The 64-bit timestamp field is divided into eight 8-bit entities. recvfrom(sock, receiver->buffer, ETH_BUFFER_LENGTH, 0, 0, 0); The GOOSE subscriber decodes the packet to verify that the destination address is a multicast MAC address, and that the VLAN priority tagging indicates that it is a time-critical message in an 802.1Q VLAN ethernet frame. Further, it checks that the Ethertype is of type GOOSE, and that the unique appid matches the value expected by the subscriber. If these conditions are satisfied, then the rest of the packet will be decoded and stored for further analysis. 4. SIMULATION OF GOOSE TRAFFIC IN RIVERBED MODELER At this stage, the Riverbed Modeler is used to simulate a simple IEC network where GOOSE traffic is generated between a publisher node and a subscriber node as in Fig. 2. Riverbed Modeler comprises a suite of technologies and protocols that facilitate detailed modeling, simulation and analysis of a variety of networks [11]. The main challenges faced were that Modeler does not support IEC nor its mutlicast publisher-subscriber traffic architecture. Thus, we developed a customized process for generating GOOSE traffic such that the platform recognizes GOOSE frames. Our approach is outlined in Fig Modeler GOOSE Packet A GOOSE packet format is created matching the packet structure in Fig. 1. Because the fields are filled in a sequence of 1102

4 4.3. Modeler Node Model Fig. 5. Process model of the processor in Fig. 6. Within the Modeler environment, it is not possible to create sockets to transmit and receive GOOSE messages. To account for this, we created a generalized node model as in Fig. 6 for publisher and subscriber nodes. Generated GOOSE packets are sent to the processor which encodes data onto packets. The publisher then transmits the GOOSE message through the transmitter port (pt 0) and the subscriber receives it through the receiver port (pr 0). The GOOSE message travels to the processor which decodes the data encapsulated within the packet Evaluation Fig. 6. Node Model of the publisher and subscriber nodes. Fig. 7. The generation of GOOSE frames where the peaks represent the transmission of a GOOSE message. octets, each field is divided into multiples of eight. For example, the timestamp field, which requires 64 bits, was divided into 8 entities (Fig. 4). Furthermore, the ethernet links that connect the nodes in Fig. 2 were modified to support the GOOSE packet format Modeler Process Model A generalized process model was created for the publisher and subscriber (Fig. 5). The process model s init state represents the starting point where global variables are defined and the idle state controls the sending and receiving of GOOSE messages. When a packet is generated, the send pkt function is executed to encode data onto the fields of the GOOSE message. send pkt encodes the data by passing a pointer to the GOOSE packet, a particular field, and the data to be encoded to the Riverbed Modeler function: op pk nfd set. Once all of the fields are encoded, the GOOSE message is sent across the packet stream. The switch in Fig. 2 gets the message from the packet stream and sends it to the destination address specified in the packet. When a packet is received, the rcv pkt function is executed to decode the GOOSE message. Similarly, rcv pkt makes use of the Riverbed Modeler function op pk nfd get to decode the data within the GOOSE message. Simulation tests were performed in Modeler to study the performance of GOOSE messages. We controlled the GOOSE traffic by introducing arbitrary sampling rates to send GOOSE messages. For example, we implemented the generator such that it will send GOOSE messages more frequently when a substation event occurs [15]. In our hypothetical scenario, a circuit breaker trips at the 22 ms mark and causes the publisher to send several GOOSE messages in a short period of time, as is observed in Fig. 7. The generator then gradually returns to normal operation, sending GOOSE messages every 10 ms. To test the performance of the GOOSE traffic generator, we ran various simulation tests with a GOOSE frame size of 128 bytes, ethernet link capacity of 100 Mbps and simulation time of ms. The frame size is based on the GOOSE packet format (Fig. 1) as well as the configuration information of the template IED XML file. The simulation ran the network presented in Fig. 2, where several performance metrics were collected such as: end-to-end (ETE) delay, delay caused by the processor, and queuing delay. The ETE delay was observed to be 2 ms which is below the IEC requirement of 3 ms [12]. Delay introduced by the processor was found to be ms, and queuing delay was 0.02 ms. As shown in the results, delays introduced by our customized processing overhead are negligible. Hence, the developed GOOSE traffic generator can be used to communicate time-sensitive GOOSE messages fast and reliably, and can be used for further cyber-security and resilience studies. 5. CONCLUSION AND FURTHER WORK In this paper, we presented our detailed IEC GOOSE messaging traffic generator. The developed generator was integrated in Riverbed Modeler, where a customised model has been developed to establish the support of IEC in Modeler. Simulation results were shown to illustrate the negligible overhead of the customised models. Future work will utilize the developed simulator for the simulation of digital substation events and for cyber security studies including: traffic analysis, attack detection and for the assessment of standardbased mitigation approaches. 1103

5 6. REFERENCES [1] Ralph Mackiewicz, IEC Technical Overview, [2] Juan Hoyos, Mark Dehus, and Timthy X Brown, Exploiting the goose protocol: A practical attack on cyberinfrastructure, in 2012 IEEE Globecom Workshops. IEEE, 2012, pp [14] stevenblair, Rapid-prototyping protection and control schemes with IEC 61850, [15] Farel Becker, Stefan Nohe, and Alex Echeverria, Designing non-deterministic pac systems to meet deterministic requirements, PAC World, [3] OMICRON, Sampled Values in IEC Environments, [4] Carl A. Gunter Jianqing Zhang, IEC Communication Networks and Systems in Substations,. [5] Hanno Georg, Nils Dorsch, Markus Putzke, and Christian Wietfeld, Performance evaluation of time-critical communication networks for smart grids based on iec 61850, in Computer Communications Workshops (IN- FOCOM WKSHPS), 2013 IEEE Conference on, 2013, pp [6] OMICRON, IEDScout - Versatile software tool for working with IEC devices, [7] Chilton Fernandes, Samarth Borkar, and Jignesh Gohil, Testing of goose protocol of iec61850 standard in protection ied, International Journal of Computer Applications, vol. 93, no. 16, [8] Carl Kriger, Shaheen Behardien, and John-Charly Retonda-Modiya, A detailed analysis of the goose message structure in an iec standard-based substation automation system, International Journal of Computers Communications & Control, vol. 8, no. 5, pp , [9] Tarlochan S Sidhu and Yujie Yin, Modelling and simulation for performance evaluation of iec61850-based substation communication systems, IEEE transactions on power delivery, vol. 22, no. 3, pp , [10] Yona Lopes, Débora C Muchaluat-Saade, Natalia C Fernandes, and Marcio Z Fortes, Geese: A traffic generator for performance and security evaluation of iec networks, in 2015 IEEE 24th International Symposium on Industrial Electronics (ISIE), 2015, pp [11] Riverbed, Riverbed Modeler, [12] International Electrotechnical Commission, IEC Communication networks and systems in substations Part 8-1: Specific Communication Service Mapping (SCSM) Mappings to MMS (ISO and ISO ) and to ISO/IEC , [13] Open source libraries for IEC and IEC ,

A Detailed Analysis of the Generic Object-Oriented Substation Event Message Structure in an IEC Standard-Based Substation Automation System

A Detailed Analysis of the Generic Object-Oriented Substation Event Message Structure in an IEC Standard-Based Substation Automation System A Detailed Analysis of the Generic Object-Oriented Substation Event Message Structure in an IEC 61850 Standard-Based Substation Automation System C. Kriger S. Behardien J. Retonda-Modiya Carl Kriger Centre

More information

SEEDS Industry Engagement Event

SEEDS Industry Engagement Event SEEDS Industry Engagement Event Professor Mohammed, FIU, Sequence Hopping Algorithm to Secure IEC GOOSE Messages Sequence Hopping Algorithm to Secure IEC GOOSE Messages Professor Osama Mohammed Energy

More information

Congested Corridors. Long lead time for building new transmission. Large number of renewable interconnect requests

Congested Corridors. Long lead time for building new transmission. Large number of renewable interconnect requests Design and Testing Congested Corridors Long lead time for building new transmission Large number of renewable interconnect requests Increasing transmission voltage support requirements Extensive use of

More information

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in MRM4. Version 2.0.h Date:

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in MRM4. Version 2.0.h Date: Protocol Implementation extra Information for Testing (PIXIT) for the IEC 61850 interface in MRM4 Version 2.0.h Date: 2013-03-28 Contents of this document This document is applicable for MRM4 Version 2.0.h

More information

IEC PIXIT. MRA4 Software-Version: 2.2.c

IEC PIXIT. MRA4 Software-Version: 2.2.c IEC 61850 PIXIT MRA4 Software-Version: 2.2.c IEC 61850 PIXIT Protocol Implementation Extra Information for Testing (PIXIT) UCA International Users Group Testing Sub Committee English Contents of this document

More information

MCDGV4 Software-Version: 2.4.a

MCDGV4 Software-Version: 2.4.a IEC 61850 PIXIT MCDGV4 Software-Version: 2.4.a Protocol Implementation Extra Information for Testing (PIXIT) UCA International Users Group Testing Sub Committee English Contents of this document Contents

More information

EDR Software-Version: 2.5.b. Protocol Implementation Extra Information for Testing (PIXIT) UCA International Users Group Testing Sub Committee

EDR Software-Version: 2.5.b. Protocol Implementation Extra Information for Testing (PIXIT) UCA International Users Group Testing Sub Committee EDR-5000 Software-Version: 2.5.b Protocol Implementation Extra Information for Testing (PIXIT) UCA International Users Group Testing Sub Committee Contents of this document This document is applicable

More information

Digitizing copper Defining key elements to ensure a successful integration from concept to maintenance

Digitizing copper Defining key elements to ensure a successful integration from concept to maintenance Alejandro Schnakofsky, ABB Inc. Digitizing copper Defining key elements to ensure a successful integration from concept to maintenance Abstract in this paper, IEC61850 GOOSE message is presented as a vehicle

More information

Architecture for automatically generating an efficient IEC based communications platform for the rapid prototyping of protection schemes

Architecture for automatically generating an efficient IEC based communications platform for the rapid prototyping of protection schemes Architecture for automatically generating an efficient IEC 61850-based communications platform for the rapid prototyping of protection schemes Steven Blair, Campbell Booth, Graeme Burt Institute for Energy

More information

REALISATION OF AN INTELLIGENT AND CONTINUOUS PROCESS CONNECTION IN SUBSTATIONS

REALISATION OF AN INTELLIGENT AND CONTINUOUS PROCESS CONNECTION IN SUBSTATIONS REALISATION OF AN INTELLIGENT AND CONTINUOUS PROCESS CONNECTION IN SUBSTATIONS Christina SÜFKE Carsten HAVERKAMP Christian WEHLING Westnetz GmbH - Germany Westnetz GmbH - Germany Westnetz GmbH - Germany

More information

IEC GOOSE Communication and Its Impact on Substation Performance

IEC GOOSE Communication and Its Impact on Substation Performance IEC 61850-8-1 GOOSE Communication and Its Impact on Substation Performance Sunil Gupta Department of Electrical & Electronics Engineering, Maharaja Surajmal Institute of Technology, Delhi, India sunil.gupta_eee@msit.in

More information

The Effects of Flooding Attacks on Time-Critical Communications in the Smart Grid

The Effects of Flooding Attacks on Time-Critical Communications in the Smart Grid The Effects of Flooding Attacks on Time-Critical Communications in the Smart Grid Qinghua Li, Chase Ross, Jing Yang, Jia Di, Juan Carlos Balda, and H. Alan Mantooth Department of Computer Science and Computer

More information

IEC OBJECT MODELS OF MULTIFUNCTIONAL PROTECTION RELAYS

IEC OBJECT MODELS OF MULTIFUNCTIONAL PROTECTION RELAYS IEC 61850 OBJECT MODELS OF MULTIFUNCTIONAL PROTECTION RELAYS Alexander Apostolov AREVA T&D Automation Los Angeles, USA alexander.apostolov@areva-td.com Abstract The paper analyzes the functional hierarchy

More information

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in SEL-787

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in SEL-787 Protocol Implementation extra Information for Testing (PIXIT) for the IEC 61850 interface in SEL-787 UCA International Users Group Testing Sub Committee PIXIT template extracted from server test procedures

More information

On the Implementation of the IEC Standard: Will Different Manufacturer Devices Behave Similarly under Identical Conditions?

On the Implementation of the IEC Standard: Will Different Manufacturer Devices Behave Similarly under Identical Conditions? Florida International University FIU Digital Commons Electrical and Computer Engineering Faculty Publications College of Engineering and Computing 12-5-2016 On the Implementation of the IEC 61850 Standard:

More information

Experimental Evaluation of an IEC Station Bus Communication Reliability

Experimental Evaluation of an IEC Station Bus Communication Reliability Experimental Evaluation of an IEC 61850-Station Bus Communication Reliability Ahmed Altaher, Stéphane Mocanu, Jean-Marc Thiriet To cite this version: Ahmed Altaher, Stéphane Mocanu, Jean-Marc Thiriet.

More information

Registered Trademarks

Registered Trademarks Preface SIPROTEC Merging Unit Contents Applications 1 IEC 61850 Conformance Statements 2 IEC 61850-8-1 9-2LE IEC 61869-9 PIXIT, PICS, TICS Manual C53000-G1140-C377-1 Disclaimer of Liability This document

More information

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in SEL-421. September 02, 2011

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in SEL-421. September 02, 2011 Protocol Implementation extra Information for Testing (PIXIT) for the IEC 61850 interface in SEL-421 September 02, 2011 UCA International Users Group Testing Sub Committee Template version 1.1 Date: March

More information

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in SEL-311C

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in SEL-311C Protocol Implementation extra Information for Testing (PIXIT) for the IEC 61850 interface in SEL-311C UCA International Users Group Testing Sub Committee Date: ovember 02, 2012 Rev. 2.3 Schweitzer Engineering

More information

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in SEL-849

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in SEL-849 Protocol Implementation extra Information for Testing (PIXIT) for the IEC 61850 interface in SEL-849 UCA International Users Group Testing Sub Committee Date: January 16, 2013 Rev. 2.3 Schweitzer Engineering

More information

Jim McGhee, Utility Market Manager, RuggedCom Inc.

Jim McGhee, Utility Market Manager, RuggedCom Inc. First Practical Experience with IEEE 1588 High Precision Time Synchronization in High Voltage Substation with IEC 61850 Process Bus Jim McGhee, Utility Market Manager, RuggedCom Inc. (JimMcGhee@RuggedCom.com)

More information

A Practical Guide of Troubleshooting IEC GOOSE Communication

A Practical Guide of Troubleshooting IEC GOOSE Communication A Practical Guide of Troubleshooting IEC 61850 GOOSE Communication Wei Huang ABB Inc. Lake Mary, USA Wei.huang@us.abb.com Abstract IEC 61850 GOOSE (Generic Object-Oriented Substation Event) communication

More information

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in the SEL-387E. May 11, 2011

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in the SEL-387E. May 11, 2011 Protocol Implementation extra Information for Testing (PIXIT) for the IEC 61850 interface in the SEL-387E May 11, 2011 UCA International Users Group Testing Sub Committee Template version 1.1 Date: March

More information

Corrupted GOOSE Detectors: Anomaly Detection in Power Utility Real-Time Ethernet Communications

Corrupted GOOSE Detectors: Anomaly Detection in Power Utility Real-Time Ethernet Communications Corrupted GOOSE Detectors: Anomaly Detection in Power Utility Real-Time Ethernet Communications Maëlle Kabir-Querrec, Stéphane Mocanu, Pascal Bellemain, Jean-Marc Thiriet, Eric Savary To cite this version:

More information

TR IEC Deterministic Networking

TR IEC Deterministic Networking INTERNATIONAL ELECTROTECHNICAL COMMISSION TR IEC 61850-90-13 Deterministic Networking Maik Seewald IEC TC57, WG10 maseewal@cisco.com IEC 61850 in a nutshell Title: Communication networks and systems for

More information

The development of IEC generic object oriented substation event monitoring application for Tenaga Nasional Berhad Smart Substation

The development of IEC generic object oriented substation event monitoring application for Tenaga Nasional Berhad Smart Substation International Journal of Smart Grid and Clean Energy The development of IEC 61850 generic object oriented substation event monitoring application for Tenaga Nasional Berhad Smart Substation M. S. Shokri

More information

Evaluation of Time-Critical Communications for IEC Substation Network Architecture

Evaluation of Time-Critical Communications for IEC Substation Network Architecture Evaluation of Time-Critical Communications for IEC 61850-Substation Network Architecture Ahmed Altaher, Stéphane Mocanu, Jean-Marc Thiriet To cite this version: Ahmed Altaher, Stéphane Mocanu, Jean-Marc

More information

INSTRUCTION BOOKLET. AQtivate 200 IEC61850 configuration

INSTRUCTION BOOKLET. AQtivate 200 IEC61850 configuration INSTRUCTION BOOKLET AQtivate 200 IEC61850 configuration Instruction booklet AQtivate 200 IEC61850 configuration 2 (17) TABLE OF CONTENTS 1 INTRODUCTION... 4 2 AQTIVATE... 5 2.1 Enabling IEC61850... 5 3

More information

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in SEL-2411

Protocol Implementation extra Information for Testing (PIXIT) for the IEC interface in SEL-2411 Protocol Implementation extra Information for Testing (PIXIT) for the IEC 61850 interface in SEL-2411 UCA International Users Group Testing Sub Committee Date: October 03, 2012 Rev. 2.3 Schweitzer Engineering

More information

COMMUNICATION NETWORKS. FOX615/612 TEGO1 IEC GOOSE Proxy Gateway interface module.

COMMUNICATION NETWORKS. FOX615/612 TEGO1 IEC GOOSE Proxy Gateway interface module. COMMUNICATION NETWORKS FOX615/612 TEGO1 IEC 61850 GOOSE Proxy Gateway interface module. 2 FOX615/612 TEGO1 IEC 61850 GOOSE GATEWAY INTERFACE MODULE INTRODUCTION 3 FOX615/612 multiplexing platform. Enabling

More information

Area Limitations on Smart Grid Computer Networks

Area Limitations on Smart Grid Computer Networks I.J. Wireless and Microwave Technologies, 2016, 3, 71-78 Published Online May 2016 in MECS(http://www.mecs-press.net) DOI: 10.5815/ijwmt.2016.03.08 Available online at http://www.mecs-press.net/ijwmt Area

More information

An Investigation into the Testing and. Commissioning Requirements of IEC Station Bus Substations. Robert Peter Accendere

An Investigation into the Testing and. Commissioning Requirements of IEC Station Bus Substations. Robert Peter Accendere University of Southern Queensland Faculty of Health, Engineering and Sciences An Investigation into the Testing and Commissioning Requirements of IEC 61850 Station Bus Substations A dissertation submitted

More information

Latency on a Switched Ethernet Network

Latency on a Switched Ethernet Network Page 1 of 6 1 Introduction This document serves to explain the sources of latency on a switched Ethernet network and describe how to calculate cumulative latency as well as provide some real world examples.

More information

MiCOM P40 Agile P341, P342, P343, P344, P345, P346

MiCOM P40 Agile P341, P342, P343, P344, P345, P346 MiCOM P40 Agile P341, P342, P343, P344, P345, P346 PIXIT Protocol Implementation extra Information for Testing for the IEC 61850 Interface Platform Hardware Version: P (P341/2) M (P343/4/5/6) Platform

More information

Deploying Digital Substations: Experience with a Digital Substation Pilot in North America. Harsh Vardhan, R Ramlachan GE Grid Solutions, USA

Deploying Digital Substations: Experience with a Digital Substation Pilot in North America. Harsh Vardhan, R Ramlachan GE Grid Solutions, USA Deploying Digital Substations: Experience with a Digital Substation Pilot in North America Harsh Vardhan, R Ramlachan GE Grid Solutions, USA Wojciech Szela, Edward Gdowik PECO, USA SUMMARY Though IEC 61850

More information

Protocol Implementation extra Information for Testing (PIXIT)

Protocol Implementation extra Information for Testing (PIXIT) Engineering Studio SimLab IEC 61850 Server Protocol Implementation extra Information for Testing (PIXIT) Date: August 8, 2016 Version: 001 Reference: 16-GS-001-ES-PIXIT-ED2-SERVER Grid Software Inc. Page

More information

Stacked-VLAN-Based Modeling of Hybrid ISP Traffic Control Schemes and Service Plans Exploiting Excess Bandwidth in Shared Access Networks

Stacked-VLAN-Based Modeling of Hybrid ISP Traffic Control Schemes and Service Plans Exploiting Excess Bandwidth in Shared Access Networks Stacked-VLAN-Based Modeling of Hybrid ISP Traffic Control Schemes and Service Plans Exploiting Excess Bandwidth in Shared Access Networks Dr Kyeong Soo (Joseph) Kim Department of Electrical and Electronic

More information

Designing Non-Deterministic PAC Systems to Meet Deterministic Requirements

Designing Non-Deterministic PAC Systems to Meet Deterministic Requirements Designing Non-Deterministic PAC Systems to Meet Deterministic Requirements 1 Abstract. This paper presents the results of the design and performance testing of a complete PAC system for a 230/115 kv generation

More information

Station Integration for Reduced Costs and Improved Operational Efficiency

Station Integration for Reduced Costs and Improved Operational Efficiency 1 Station Integration for Reduced Costs and Improved Operational Efficiency Ryan McMahon and Bill Winters Con Edison (ConEd) New York, NY Cesar Guerriero and Farel Becker Siemens Wendell, NC Abstract Multi-vender

More information

Test Universe 3.10 Module: IEC Client/Server. Efficient and reliable protection testing in IEC Substation Automation Systems

Test Universe 3.10 Module: IEC Client/Server. Efficient and reliable protection testing in IEC Substation Automation Systems Test Universe 3.10 Module: IEC 61850 Client/Server Efficient and reliable protection testing in IEC 61850 Substation Automation Systems Content 1. Introduction 3 2. Access and set IEDs automatically 4

More information

IEDScout. Versatile software tool for working with IEC devices

IEDScout. Versatile software tool for working with IEC devices IEDScout Versatile software tool for working with IEC 61850 devices One software tool for working with all IEC 61850 IEDs Examine IEC 61850 devices IEDScout is an ideal tool for protection and substation

More information

A solution for applying IEC function blocks in the development of substation automation systems

A solution for applying IEC function blocks in the development of substation automation systems A solution for applying IEC 61499 function blocks in the development of substation automation systems Valentin Vlad, Cezar D. Popa, Corneliu O. Turcu, Corneliu Buzduga Abstract This paper presents a solution

More information

Impact of IEC communication protocol on substation automation systems

Impact of IEC communication protocol on substation automation systems International Journal of Research in Advanced Engineering and Technology ISSN: 2455-0876; Impact Factor: RJIF 5.44 www.engineeringresearchjournal.com Volume 2; Issue 5; September 2016; Page No. 49-53 Impact

More information

Simulation of Power System Substation Communications Architecture Based on IEC Standard

Simulation of Power System Substation Communications Architecture Based on IEC Standard Simulation of Power System Substation Communications Architecture Based on IEC 61850 Standard Mohammad Golshani mohammad.golshani@brunel.ac.uk Gareth A. Taylor gareth.taylor@brunel.ac.uk Ioana Pisica ioana.pisica@brunel.ac.uk

More information

Latency on a Switched Ethernet Network

Latency on a Switched Ethernet Network FAQ 07/2014 Latency on a Switched Ethernet Network RUGGEDCOM Ethernet Switches & Routers http://support.automation.siemens.com/ww/view/en/94772587 This entry is from the Siemens Industry Online Support.

More information

Semantic Security Analysis of SCADA Networks to Detect Malicious Control Commands in Power Grids

Semantic Security Analysis of SCADA Networks to Detect Malicious Control Commands in Power Grids Semantic Security Analysis of SCADA Networks to Detect Malicious Control Commands in Power Grids Hui Lin, Adam Slagell, Zbigniew Kalbarczyk, Peter W. Sauer, and Ravishankar K. Iyer Department of Electrical

More information

Test procedures for GOOSE performance according to IEC and IEC Version 1.1. On request of UCA International Users Group

Test procedures for GOOSE performance according to IEC and IEC Version 1.1. On request of UCA International Users Group Test procedures for GOOSE performance according to IEC 61850-5 and IEC 61850-10 Version 1.1 On request of UCA International Users Group Baden, January 27, 2011 author : Richard Schimmel reviewed : UCAIUG

More information

Energy Infrastructure Demands Mission Critical Networking

Energy Infrastructure Demands Mission Critical Networking May 2017 Energy Infrastructure Demands Mission Critical Networking Standard networking methods are acceptable for most SCADA systems but mission-critical power transmission and distribution system messaging

More information

CCNA Exploration1 Chapter 7: OSI Data Link Layer

CCNA Exploration1 Chapter 7: OSI Data Link Layer CCNA Exploration1 Chapter 7: OSI Data Link Layer LOCAL CISCO ACADEMY ELSYS TU INSTRUCTOR: STELA STEFANOVA 1 Explain the role of Data Link layer protocols in data transmission; Objectives Describe how the

More information

Introduction and Overview of IEC Communications. Schweitzer Engineering Laboratories, Inc.

Introduction and Overview of IEC Communications. Schweitzer Engineering Laboratories, Inc. Introduction and Overview of IEC 61850 Communications Schweitzer Engineering Laboratories, Inc. Copyright SEL 2009 SEL Provides Integration Best Practice & Stand-Alone IED Protocols SEL Suite SMART - SEL

More information

Networking for Data Acquisition Systems. Fabrice Le Goff - 14/02/ ISOTDAQ

Networking for Data Acquisition Systems. Fabrice Le Goff - 14/02/ ISOTDAQ Networking for Data Acquisition Systems Fabrice Le Goff - 14/02/2018 - ISOTDAQ Outline Generalities The OSI Model Ethernet and Local Area Networks IP and Routing TCP, UDP and Transport Efficiency Networking

More information

Analysis of Virtual Local Area Networking Technology. Zheng Zhang

Analysis of Virtual Local Area Networking Technology. Zheng Zhang 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 2016) Analysis of Virtual Local Area Networking Technology Zheng Zhang Jiangxi Vocational and Technical

More information

Substation to substation (ss2ss) GOOSE exchange for critical relay operations

Substation to substation (ss2ss) GOOSE exchange for critical relay operations CIGRÉ Canada 21, rue d Artois, F-75008 PARIS (CIGRE-130) Conference on Power Systems http : //www.cigre.org Vancouver, October 17-19, 2010 Substation to substation (ss2ss) GOOSE exchange for critical relay

More information

Importance of Interoperability in High Speed Seamless Redundancy (HSR) Communication Networks

Importance of Interoperability in High Speed Seamless Redundancy (HSR) Communication Networks Importance of Interoperability in High Speed Seamless Redundancy (HSR) Communication Networks Richard Harada Product Manager RuggedCom Inc. Introduction Reliable and fault tolerant high speed communication

More information

Overview and Application

Overview and Application IEC 61850 Overview and Application Who am I? Rich Hunt Market Development Leader GE Grid Solutions Over 25 years in the power systems industry At GE for 10 years (almost) Member of IEEE PSRC, U.S. Representative

More information

Learn IEC Configuration In 30 Minutes

Learn IEC Configuration In 30 Minutes Learn IEC 61850 Configuration In 30 Minutes Wei Huang ABB Inc. Lake Mary, FL, USA Wei.huang@us.abb.com Abstract the myth says IEC 61850 is too complicated to use with a steep learning curve. The traditional

More information

Digital Substation Overview of Technology, Industry

Digital Substation Overview of Technology, Industry Digital Substation Overview of Technology, Industry Trends and Standardization Efforts 4th International Scientific & Technical Conference Actual Trends in Development of Power System Protection and Automation

More information

Ether Testing by FPGA Implementation of Genetic Algorithms

Ether Testing by FPGA Implementation of Genetic Algorithms Ether Testing by FPGA Implementation of Genetic Algorithms Hayder Mohammed Ali, Jarmo Alander, Mathias Björk, Mika Ruohonen, Olli Rauhala, and Staffan Järn University of Vaasa, Faculty of Technology, Vaasa,

More information

IED Configurator. User Manual

IED Configurator. User Manual SystemCORP Embedded Technology Pty Ltd This PDF Document contains internal hyperlinks for ease of navigation. For example, click on any item listed in the Table of Contents to go to that page. General

More information

Ahead of the challenge, ahead of the change. Beyond classical substation How seamless communication networks can be used in special applications

Ahead of the challenge, ahead of the change. Beyond classical substation How seamless communication networks can be used in special applications Ahead of the challenge, ahead of the change Beyond classical substation How seamless communication networks can be used in special applications siemens.com/energy-management Agenda Today s reliability

More information

Data Models and Protocol Mapping for Reduced Communication Load in Substation Automation with High Sampling Rate Protection Applications

Data Models and Protocol Mapping for Reduced Communication Load in Substation Automation with High Sampling Rate Protection Applications Data Models and Protocol Mapping for Reduced Communication Load in Substation Automation with High Sampling Rate Protection Applications 1 st Fabian Hohn Electric Power & Energy Systems KTH Royal Institute

More information

ET4254 Communications and Networking 1

ET4254 Communications and Networking 1 Topic 9 Internet Protocols Aims:- basic protocol functions internetworking principles connectionless internetworking IP IPv6 IPSec 1 Protocol Functions have a small set of functions that form basis of

More information

ISIO 200. Binary Input/Output (I/O) terminal with IEC interface

ISIO 200. Binary Input/Output (I/O) terminal with IEC interface ISIO 200 Binary Input/Output (I/O) terminal with IEC 61850 interface Compact and easy ISIO 200 Put your Binary I/Os where you need them ISIO 200 is a simple and versatile binary I/O terminal with IEC 61850

More information

Ethernet Network Redundancy in SCADA and real-time Automation Platforms.

Ethernet Network Redundancy in SCADA and real-time Automation Platforms. Ethernet Network Redundancy in SCADA and real-time Automation Platforms www.copadata.com sales@copadata.com Content 1. ABSTRACT... 2 2. INTRODUCTION... 2 IEC 61850 COMMUNICATION SERVICES... 2 APPLICATION

More information

Switched Multimegabit Data Service

Switched Multimegabit Data Service CHAPTER 14 Chapter Goals Tell how SMDS works, and describe its components. Describe the operational elements of the SMDS environment, and outline its underlying protocol. Discuss related technologies.

More information

Switched Multimegabit Data Service (SMDS)

Switched Multimegabit Data Service (SMDS) CHAPTER 14 Switched Multimegabit Data Service (SMDS) Background Switched Multimegabit Data Service (SMDS) is a high-speed, packet-switched, datagram-based WAN networking technology used for communication

More information

REAL TIME POWER SYSTEMS SIMULATION LABORATORY

REAL TIME POWER SYSTEMS SIMULATION LABORATORY REAL TIME POWER SYSTEMS SIMULATION LABORATORY SHORT DESCRIPTION TABLE OF CONTENTS 1. INTRODUCTION 05 2. REAL TIME POWER SYSTEMS SIMULATORS 05 2.1 OP5600 Simulator 05 2.2 ADPSS Advanced Digital Power

More information

Overview of the ML-Series Card

Overview of the ML-Series Card CHAPTER 1 This chapter provides an overview of the ML-100T-8 card for Cisco ONS 15310-CL and the Cisco ONS 15310-MA. It lists Ethernet and SONET capabilities and Cisco IOS and Cisco Transport Controller

More information

Lessons Learned: Benefits of Using Standardized Protocols to Replace Substation Copper Field Wiring With Digital Communications

Lessons Learned: Benefits of Using Standardized Protocols to Replace Substation Copper Field Wiring With Digital Communications Lessons Learned: Benefits of Using Standardized Protocols to Replace Substation Copper Field Wiring With Digital Communications D. Dolezilek and A. Kalra Schweitzer Engineering Laboratories, Inc. Presented

More information

Internet Protocols (chapter 18)

Internet Protocols (chapter 18) Internet Protocols (chapter 18) CSE 3213 Fall 2011 Internetworking Terms 1 TCP/IP Concepts Connectionless Operation Internetworking involves connectionless operation at the level of the Internet Protocol

More information

2. LAN Topologies Gilbert Ndjatou Page 1

2. LAN Topologies Gilbert Ndjatou Page 1 2. LAN Topologies Two basic categories of network topologies exist, physical topologies and logical topologies. The physical topology of a network is the cabling layout used to link devices. This refers

More information

Lessons Learned and Successful Root Cause Analysis of Elusive Ethernet Network Failures in Installed Systems

Lessons Learned and Successful Root Cause Analysis of Elusive Ethernet Network Failures in Installed Systems Lessons Learned and Successful Root Cause Analysis of Elusive Ethernet Network Failures in Installed Systems D. Dolezilek, J. Dearien, and M. van Rensburg Schweitzer Engineering Laboratories, Inc. Presented

More information

Analysis of End-to-End Delay Characteristics among Various Packet Sizes in Modern Substation Communication Systems based on IEC 61850

Analysis of End-to-End Delay Characteristics among Various Packet Sizes in Modern Substation Communication Systems based on IEC 61850 Analysis of End-to-End Delay Characteristics among Various Packet Sizes in Modern Substation Communication Systems based on IEC 6185 Narottam Das, Senior Member, IEEE, Tze Jia Wong, and Syed Islam, Senior

More information

TOPOLOGY CONTROL IN MOBILE AD HOC NETWORKS WITH COOPERATIVE COMMUNICATIONS

TOPOLOGY CONTROL IN MOBILE AD HOC NETWORKS WITH COOPERATIVE COMMUNICATIONS IEEE 2012 Transactions on Wireless Communications, Volume: 9, Issue: 2 TOPOLOGY CONTROL IN MOBILE AD HOC NETWORKS WITH COOPERATIVE COMMUNICATIONS Abstract Cooperative communication has received tremendous

More information

A Collation & Analysis Methodology for Substation Event Data via a Web Interface (supporting COMTRADE, GOOSE & MMS Data Sources from Multiple Vendors)

A Collation & Analysis Methodology for Substation Event Data via a Web Interface (supporting COMTRADE, GOOSE & MMS Data Sources from Multiple Vendors) 1 A Collation & Analysis Methodology for Substation Event Data via a Web Interface (supporting COMTRADE, GOOSE & MMS Data Sources from Multiple Vendors) Abstract Author: Bruce Mackay Email Address: bruce.mackay@concogrp.com

More information

Experimenting Security Algorithms for the IEC based Substation Communication

Experimenting Security Algorithms for the IEC based Substation Communication Experimenting Security Algorithms for the IEC 61850-based Substation Communication Sugwon Hong 1, Dae-Yong Shin 1, and Seung-Jae Lee 2 1 Department of Computer Software, 2 Electrical Engineering Myongji

More information

PMU Networking with IP Multicast

PMU Networking with IP Multicast White Paper PMU Networking with IP Multicast Overview This document proposes a network architecture which implements IP networking technologies, including IP multicast, to help enable efficient transmission

More information

Triangle MicroWorks IEC Library Evaluation Kit

Triangle MicroWorks IEC Library Evaluation Kit T Triangle MicroWorks IEC 61850 Library Evaluation Kit Introduction The IEC 61850 Library Evaluation Kit from Triangle MicroWorks provides a Demo Server application to demonstrate the functionality of

More information

GUIDELINES FOR USING DEVICE LEVEL RING (DLR) WITH ETHERNET/IP. PUB00316R ODVA, Inc. Page 1 of 18

GUIDELINES FOR USING DEVICE LEVEL RING (DLR) WITH ETHERNET/IP. PUB00316R ODVA, Inc. Page 1 of 18 GUIDELINES FOR USING DEVICE LEVEL RING (DLR) WITH ETHERNET/IP PUB00316R2 2017-2018 ODVA, Inc. Page 1 of 18 Guidelines for Using Device Level Ring (DLR) with EtherNet/IP Contents 1. Introduction... 3 2.

More information

Resource Sharing for QoS in Agile All Photonic Networks

Resource Sharing for QoS in Agile All Photonic Networks Resource Sharing for QoS in Agile All Photonic Networks Anton Vinokurov, Xiao Liu, Lorne G Mason Department of Electrical and Computer Engineering, McGill University, Montreal, Canada, H3A 2A7 E-mail:

More information

IEEE P1722 AVBTP. Version 0.01, Alan K. Bartky Bartky Networks Send comments to

IEEE P1722 AVBTP. Version 0.01, Alan K. Bartky Bartky Networks  Send comments to IEEE P1722 AVBTP assumptions Version 0.01, 2007-06-24 Alan K. Bartky alan@bartky.net Send comments to AVBTP@listserv.ieee.org 1 Notice of copyright release Notice: This document has been prepared to assist

More information

M242 COMPUTER NETWORS AND SECURITY

M242 COMPUTER NETWORS AND SECURITY M242 COMPUTER NETWORS AND SECURITY 2.1. Network Models: UNIT - II OSI MODEL AND LAN PROTOCOLS 1. Explain Network model A network is a combination of hardware and software that sends data from one location

More information

Lecture #7 Substation Automation with IEC 61850

Lecture #7 Substation Automation with IEC 61850 Lecture #7 Substation Automation with IEC 61850 Course map 1 Outline of the Lecture Recap of Substation Configurations Recap of Substation Automation Functions Recap of modern substation architectures

More information

Lecture 3. The Network Layer (cont d) Network Layer 1-1

Lecture 3. The Network Layer (cont d) Network Layer 1-1 Lecture 3 The Network Layer (cont d) Network Layer 1-1 Agenda The Network Layer (cont d) What is inside a router? Internet Protocol (IP) IPv4 fragmentation and addressing IP Address Classes and Subnets

More information

Implementation of Software-based EPON-OLT and Performance Evaluation

Implementation of Software-based EPON-OLT and Performance Evaluation This article has been accepted and published on J-STAGE in advance of copyediting. Content is final as presented. IEICE Communications Express, Vol.1, 1 6 Implementation of Software-based EPON-OLT and

More information

Chapter 2 Communication for Control in Heterogeneous Power Supply

Chapter 2 Communication for Control in Heterogeneous Power Supply Chapter 2 Communication for Control in Heterogeneous Power Supply The need to modernize the power grid infrastructure, and governments commitment for a cleaner environment, is driving the move towards

More information

University of New Hampshire InterOperability Laboratory Gigabit Ethernet Consortium

University of New Hampshire InterOperability Laboratory Gigabit Ethernet Consortium University of New Hampshire InterOperability Laboratory Gigabit Ethernet Consortium As of July, 1999 the Gigabit Ethernet Consortium Clause 31 1000BaseX Flow Control Conformance Test Suite version 1.0

More information

UNLOCK YOUR IEC TESTING EXCELLENCE

UNLOCK YOUR IEC TESTING EXCELLENCE IMPROVE EFFICIENCY TEST WITH CONFIDENCE OF KNOWING HOW LEARN AND EXPAND YOUR IEC 61850 SKILLS MASTER YOUR NETWORK KNOWLEDGE GENERATE TEST RESULTS UNLOCK YOUR IEC 61850 TESTING EXCELLENCE Connect To & Read

More information

P40 Agile PIXIT. Protocol Implementation extra Information for Testing for the IEC Interface in P40Agile

P40 Agile PIXIT. Protocol Implementation extra Information for Testing for the IEC Interface in P40Agile P40 Agile PIXIT Protocol Implementation extra Information for Testing for the IEC 61850 Interface in P40Agile Platform Hardware Version: A Platform Software Version: 57 Publication Reference: P40Agile-PX-E-7

More information

GFP Considerations for RPR

GFP Considerations for RPR GFP Considerations for RPR Angela T. Faber afaber@telcordia.com IEEE 802.17 RPRWG 1 Agenda GFP Background Why GFP? GFP Core Header GFP Payload Area GFP Options Signal Adaptation (Transparent GFP and Frame-mapped

More information

Internetworking Concepts Overview. 2000, Cisco Systems, Inc. 2-1

Internetworking Concepts Overview. 2000, Cisco Systems, Inc. 2-1 Internetworking Concepts Overview 2000, Cisco Systems, Inc. 2-1 2000, Cisco Systems, Inc. www.cisco.com ICND v1.0a 2-2 Objectives On completion of this chapter, you will be able to perform the following

More information

IEEE 1588v2 Time Synchronization in Energy Automation Applications Case Studies from China

IEEE 1588v2 Time Synchronization in Energy Automation Applications Case Studies from China IEEE 1588v2 Time Synchronization in Energy Automation Applications Case Studies from China Real Time Communications Symposium Munich, January 2012 Maciej Goraj maciejgoraj@ruggedcom.com 1 Who is RuggedCom?

More information

GUARANTEED END-TO-END LATENCY THROUGH ETHERNET

GUARANTEED END-TO-END LATENCY THROUGH ETHERNET GUARANTEED END-TO-END LATENCY THROUGH ETHERNET Øyvind Holmeide, OnTime Networks AS, Oslo, Norway oeyvind@ontimenet.com Markus Schmitz, OnTime Networks LLC, Texas, USA markus@ontimenet.com Abstract: Latency

More information

IEC Vaasa Seminar 21st October Contents

IEC Vaasa Seminar 21st October Contents Ethernet In The Substation IEC 61850 Vaasa Seminar 21st October 2008 Contents IEC 61850 Environmental Conditions Communication Requirements Communication Protocols Security Summary Contents IEC 61850 Environmental

More information

Analysis of an IEC based Electric Substation Communication Architecture: A Simulation and Experimentation based Hybrid Approach

Analysis of an IEC based Electric Substation Communication Architecture: A Simulation and Experimentation based Hybrid Approach Analysis of an IEC 61850 based Electric Substation Communication Architecture: A Simulation and Experimentation based Hybrid Approach Rahul Gore*, Hariram Satheesh*, Mahesh Varier^ and Simi Valsan* * ABB

More information

Anca Cioraca, Ilia Voloh, Mark Adamiak GE Grid Automation

Anca Cioraca, Ilia Voloh, Mark Adamiak GE Grid Automation Anca Cioraca, Ilia Voloh, Mark Adamiak GE Grid Automation In the beginning.rs-232 Migration to Ethernet in IEDs.circa 1997 Only invented in 1972.fast adoption for our industry Desire for Interoperability

More information

Introduction to Open System Interconnection Reference Model

Introduction to Open System Interconnection Reference Model Chapter 5 Introduction to OSI Reference Model 1 Chapter 5 Introduction to Open System Interconnection Reference Model Introduction The Open Systems Interconnection (OSI) model is a reference tool for understanding

More information

CHAPTER 18 INTERNET PROTOCOLS ANSWERS TO QUESTIONS

CHAPTER 18 INTERNET PROTOCOLS ANSWERS TO QUESTIONS CHAPTER 18 INTERNET PROTOCOLS ANSWERS TO QUESTIONS 18.1 (1) The communications network may only accept blocks of data up to a certain size. (2) Error control may be more efficient with a smaller PDU size.

More information

Lecture (04 & 05) Packet switching & Frame Relay techniques Dr. Ahmed ElShafee

Lecture (04 & 05) Packet switching & Frame Relay techniques Dr. Ahmed ElShafee Agenda Lecture (04 & 05) Packet switching & Frame Relay techniques Dr. Ahmed ElShafee Packet switching technique Packet switching protocol layers (X.25) Frame Relay ١ Dr. Ahmed ElShafee, ACU Fall 2011,

More information

Lecture (04 & 05) Packet switching & Frame Relay techniques

Lecture (04 & 05) Packet switching & Frame Relay techniques Lecture (04 & 05) Packet switching & Frame Relay techniques Dr. Ahmed ElShafee ١ Dr. Ahmed ElShafee, ACU Fall 2011, Networks I Agenda Packet switching technique Packet switching protocol layers (X.25)

More information