如何部署MDM检入服务器? [英] How to deploy a MDM check-in sever?

查看:124
本文介绍了如何部署MDM检入服务器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

My Configuration Profile with MDM Payload not getting installed using IPCU,I have a P12 file, Did the P12 file have any relationship with the check-in server? And how to deploy a MDM check-in server to solve the problem?

推荐答案

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

Yes, the identity.p12 should related to your server.Your server link must start with "https"

如果您使用的是自签名ssl,则在服务器端生成自签名ssl证书时,会生成identity.p12证书和此证书,您需要在IPCU的身份"部分中使用该证书,并且还使用相同的密码.

If you are using self-signed ssl then,While generating self-signed ssl certificate in server side,generate identity.p12 certificate and this certificate you need to use in identity section of IPCU and use the same password also.

这几行可用于生成idendtity.p12

These few lines you can use to generate the 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有哪些示例服务器详细信息.

To deploy the server go through MDM_Protocol pdf in which sample server details is there.

这篇关于如何部署MDM检入服务器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆