根据身份字段的iPhone Configuration Utility documentation:
Select the certificate that the device uses to IDentify itself to the MDM server. Add the certificate to the device using the Credentials Settings,or use scep Settings to provIDe instructions for the device to obtain the certificate using scep.
我没有scep服务器,所以我正在尝试使用证书.但是,我无法弄清楚如何生成有效的证书.无论我在Credentials设置中添加什么证书,它都不会在IDentity字段中进行选择.
当我尝试安装没有任何身份z书设置的配置文件时,我收到错误“配置文件无法安装”,并且控制台显示错误“找不到com.test.test.mdm1的身份z书”.
是否有人使用此系统成功为MDM配置了设备?
解决方法 如果您正在使用自签名ssl,则在服务器端生成自签名ssl证书时,生成IDentity.p12证书和此证书,您需要在IPCU的身份部分中使用.您可以使用这几行来生成IDendtity.p12
//Creating the device IDentity key and certificate requestopenssl genrsa 2048 > IDentity.keyopenssl 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.crtopenssl pkcs12 -export -out IDentity.p12 -inkey IDentity.key -in IDentity.crt -certfile cacert.crt
并通过this.
总结以上是内存溢出为你收集整理的如何创建在iOS设备上设置移动设备管理所需的身份z书?全部内容,希望文章能够帮你解决如何创建在iOS设备上设置移动设备管理所需的身份z书?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)