2012-05-08 72 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在样本服务器的详细信息是有几行。