自己署名 ssl を使用している場合は、サーバー側で自己署名 ssl 証明書を生成するときに、identity.p12 証明書と、IPCU の ID セクションで使用する必要があるこの証明書を生成します。
identity.p12 を生成するために使用できるこれらの数行
//Creating the device Identity key and certificate request
openssl genrsa 2048 > identity.key
openssl req -new -key identity.key -out identity.csr
//Signing the identity key with the CA.
//Give it a passphrase. You'll need to include that in the IPCU profile.
openssl x509 -req -days 365 -in identity.csr -CA cacert.crt -CAkey cakey.key -CAcreateserial -out identity.crt
openssl pkcs12 -export -out identity.p12 -inkey identity.key -in identity.crt -certfile cacert.crt