如何部署MDM签入服务器?

时间:2012-05-08 02:30:35

标签: mdm checkin

我的配置文件MDM Payload未使用IPCU安装,我有一个P12文件,P12文件与签入服务器有任何关系吗?以及如何部署MDM签入服务器来解决问题?

1 个答案:

答案 0 :(得分:0)

是的,identity.p12应与您的服务器相关。您的服务器链接必须以“https”开头

如果您正在使用自签名ssl,那么,在服务器端生成自签名ssl证书时,生成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,其中包含样本服务器详细信息。