Standard: IEC 62351 Series (Multiple Parts) | Domain: Power System Management | Category: Cybersecurity for Operational Technology
💡 Key Insight: IEC 62351 is the global benchmark for cybersecurity in the energy sector, specifically designed to protect real-time operational technology (OT) networks that make up the smart grid. Unlike IT security standards, IEC 62351 addresses the unique constraints of power systems — real-time performance requirements, legacy protocol compatibility, and safety-critical operations where availability is paramount over confidentiality.
The IEC 62351 series specifies security requirements for power system operations. Its primary scope is to secure the communications protocols and data models used in electric power system control centers, substations, and field devices. The standard covers security for protocols including IEC 61850 (substation automation), IEC 60870-5 (telecontrol), IEC 60870-6/TASE.2 (inter-control center communications), and IEC 61970/61968 (energy management system application interfaces).
⚠️ Important: IEC 62351 addresses communications security for power systems — it does not cover physical security of facilities, IT/office network security, or general enterprise cybersecurity. These are covered by other frameworks such as NIST SP 800-82, ISO/IEC 27001, and IEEE 1686. However, IEC 62351-1 provides guidance on how these frameworks integrate with the power system communications security requirements.
The standard comprises multiple parts covering different aspects of power system cybersecurity:
Part 1: Introduction and objectives — provides a security architecture framework
Part 2: Glossary of terms — defines the terminology used throughout the series
Parts 3-6: Security for specific communication profiles — TCP/IP, MMS, IEC 60870-5, and IEC 61850
Part 7: Network and system management (NSM) security
Part 8: Role-based access control (RBAC)
Part 9: Key management for power system equipment
Part 10: Security architecture — overall architectural guidelines
Parts 11-13: Extensions for XML, resilience, and security guidelines
✅ Design Practice: One of the most challenging aspects of implementing IEC 62351 in substation networks is balancing security with real-time performance. Adding TLS encryption to GOOSE (Generic Object-Oriented Substation Event) messages, for example, can introduce latency that violates the 4 ms delivery requirement. IEC 62351 addresses this by allowing different security profiles for different message types — critical time-critical messages may use authentication-only (no encryption) while less time-critical messages use full encryption.
2. Security Mechanisms Across Protocol Layers
2.1 Security Profile Overview
IEC 62351 defines security profiles for each protocol it covers. Table 1 summarizes the security mechanisms applied to the major power system protocols.
Protocol
IEC 62351 Part
Authentication
Encryption
Integrity
Typical Application
IEC 61850 (MMS)
Part 4
TLS certificate-based
TLS (AES-128/256)
SHA-256 HMAC
Substation automation — control and monitoring
IEC 61850 (GOOSE/SMV)
Part 6
Digital signatures (group-based)
Not applied (performance)
Digital signatures (RSA/ECDSA)
Protection tripping, sampled values
IEC 60870-5
Part 5
Challenge-response or digital signatures
Optional (AES)
MAC with shared keys
Telecontrol, RTU communication
IEC 60870-6 (TASE.2)
Part 4
TLS certificate-based
TLS (AES)
SHA-256 HMAC
Inter-control center data exchange
Web services (IEC 61970/61968)
Part 11
SAML / X.509 certificates
TLS/WS-Security
XML signature (SHA-256)
Energy management system interfaces
Table 1: IEC 62351 security mechanisms by protocol and application.
2.2 GOOSE and Sampled Values Security
One of the most innovative aspects of IEC 62351 is its approach to securing time-critical multicast messages. GOOSE (Generic Object-Oriented Substation Event) and SMV (Sampled Measured Values) messages have stringent latency requirements — typically 3-4 ms for protection applications. Traditional encryption adds unacceptable delay. IEC 62351-6 addresses this by:
Using group-based digital signatures rather than per-message encryption
Recommending ECDSA (Elliptic Curve Digital Signature Algorithm) over RSA for faster signing
Specifying signature placement within the message to avoid delaying retransmission
Defining extended security (Option 2) where messages include an extended security block with a key version identifier
🚨 Critical Engineering Note: The biggest operational challenge with IEC 62351 GOOSE security is key management for group signatures. When an IED (Intelligent Electronic Device) needs to be replaced or its keys need rotation, all subscribing devices in the same GOOSE group must be updated with the new key. In a large substation with hundreds of IEDs, coordinating key rotations without protection outages requires meticulous planning. This operational complexity has led some utilities to delay full IEC 62351 GOOSE security deployment.
3. Architecture, Key Management, and RBAC
3.1 Role-Based Access Control (IEC 62351-8)
IEC 62351-8 defines a comprehensive RBAC model for power system equipment. The standard defines a set of standard roles with predefined access rights:
Viewer: Read-only access to operational data
Operator: Control and monitoring permissions within assigned areas
Engineer: Configuration and parameter modification rights
Supervisor: Administrative rights including user management and audit log review
Security Administrator: Security policy configuration and key/certificate management
Maintainer: Access for maintenance activities with temporary elevated privileges
3.2 Key Management (IEC 62351-9)
IEC 62351-9 specifies key management for power system equipment, addressing one of the most complex operational challenges in implementing power system security:
Certificate lifecycle management: Issuance, renewal, revocation, and archiving of X.509 certificates
Key establishment protocols: Using TLS 1.2/1.3 for session key establishment
Symmetric key distribution: For devices that cannot support PKI (legacy IEDs, limited-resource devices)
Key escrow and recovery: Procedures for recovering encrypted data when keys are lost
Certificate revocation: CRL and OCSP support adapted to power system constraints
3.3 Security Architecture (IEC 62351-10)
Part 10 provides architectural guidance for designing secure power system automation systems. The standard introduces the concept of security zones and conduits, drawing from the IEC 62443 (ISA-99) industrial security standard:
Zone 1: Process control network (substation LAN, control center LAN)
Zone 2: Process management network (engineering stations, historical data servers)
Zone 3: Corporate/business network — separated from OT by a security gateway
DMZ: Demilitarized zone for secure data exchange between OT and IT networks
💡 Engineering Insight: The most effective IEC 62351 implementations follow a “defense-in-depth” strategy. Rather than relying solely on protocol-level security, they combine multiple layers: network segmentation with firewalls between security zones, host-based security on workstations and servers, application-level authentication and authorization, and protocol-specific security per IEC 62351 Parts 3-6. This layered approach ensures that a failure in any single security control does not compromise the entire system.
4. Frequently Asked Questions
Q1: How does IEC 62351 relate to NERC CIP (North America)? A: NERC CIP (Critical Infrastructure Protection) standards are mandatory cybersecurity requirements for bulk electric systems in North America. IEC 62351 provides the technical implementation guidance for meeting many NERC CIP requirements, particularly CIP-005 (Electronic Security Perimeter), CIP-007 (Systems Security Management), and CIP-009 (Recovery Plans). A utility can use IEC 62351 as a technical reference when implementing NERC CIP compliance programs.
Q2: Can IEC 62351 be applied to distributed energy resources (DER) and renewable energy plants? A: Yes, and this is an increasingly important application. IEC 62351-1 explicitly includes DER systems in its scope. For DER aggregation (virtual power plants), the standard’s security mechanisms apply to the communication between DER controllers and the aggregation platform. The DER-specific security profile is further detailed in IEC 62351-100 (under development).
Q3: What are the main challenges in migrating legacy substations to IEC 62351-compliant security? A: The main challenges include: (1) Legacy IEDs with insufficient processing power for cryptographic operations, (2) Lack of key management infrastructure in existing installations, (3) Ensuring backward compatibility with legacy protocols during migration, (4) Managing certificate lifecycles across hundreds or thousands of devices, and (5) Training operations staff on security procedures without compromising operational efficiency.
Q4: Does IEC 62351 require the use of TLS 1.3? A: The latest revisions of IEC 62351 (particularly Parts 3, 4, and 11) recommend TLS 1.3 (RFC 8446) for new installations due to its improved security properties and reduced latency compared to TLS 1.2. TLS 1.3 eliminates weaker cipher suites, reduces handshake round trips from 2 to 1, and provides forward secrecy by default. TLS 1.2 with appropriate cipher suites is accepted for existing installations during migration periods.