1. Run genrsa command to generate a private key - References - SIMATIC AX - AX Hardware Engineering documentation - Hardware Engineering,

Hardware Engineering reference

Portfolio
SIMATIC AX
Product
SIMATIC AX
Software version
2.0.0-alpha1.56
Edition
08/2025
Language
English (original)
Package Name
@ax/hw-docs
openssl genrsa -out privateKey.pem 2048
  • Explanation of the parameters provided in the command line:
    • openssl genrsa: the command for executing OpenSSL to generate a new "RSA" encrypted key.
    • -out privateKey.pem : the private key file "privateKey.pem" is generated to store the private key.
    • 2048 : the length "2048" bits is used to generate the new RSA encrypted key.