2012-05-08 11 views
0

MDMペイロードを使用した私の構成プロファイルがIPCUを使用してインストールされていない、P12ファイルがあります.P12ファイルはチェックインサーバーと関係していますか?そして、問題を解決するためにMDMチェックインサーバーを配備する方法は?MDMチェックインサーバーを展開する方法

+0

タイトルに間違いがありますか、またはあなたが求めているものに関連する用語ですか? –

答えて

0

ははい、identity.p12は、サーバ側での自己署名SSL証明書を生成しますが、あなたが、その後、自己署名SSLを使用している場合は、「https」の

で始める必要がありますserver.Yourサーバーのリンクに関連する必要がありますidentity.p12証明書とIPCUのIDセクションで使用する必要があるこの証明書を生成し、同じパスワードも使用します。サーバーを展開するにidendtity.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 

を生成するために使用することができます

これらの数行は、サンプルのサーバの詳細がが存在するMDM_Protocol PDFを通過します。

関連する問題