2012-05-08 69 views
0

我的配置文件MDM Payload沒有使用IPCU安裝,我有一個P12文件,P12文件與簽到服務器有任何關係嗎?以及如何部署MDM簽入服務器來解決問題?如何部署MDM簽入服務器

+0

標題是否拼寫錯誤,或者它與您詢問的任何內容有關? –

回答

0

是的,identity.p12應該與您server.Your服務器的鏈接如果您正在使用自簽名的SSL然後,在產生在服務器端的自簽名SSL證書以「https」

必須啓動,生成identity.p12證書,並且您需要在IPCU的身份部分使用此證書並使用相同的密碼。

這些你可以用它來生成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在樣本服務器的詳細信息是有幾行。