generate MDM certificate

不想你离开。 提交于 2019-11-27 11:09:30
User97693321

To MDM capabilities of iOS you need to get MDM certificate using your Enterprise developer account.The generated APNS certificate for MDM will be used as MDM certificate.You can get more details in third party MDM vendors site about how to generate MDM certificate. For example you can go through mcafee site or follow the below steps.

1)Follow MDM_Protocol pdf .

2)Follow this page: http://www.softhinker.com/in-the-news/iosmdmvendorcsrsigning

Then verify few things.

remove the passphrase from customerPrivateKey.pem using this command

openssl rsa -in customerPrivateKey.pem -out PlainKey.pem

Then merge your APNS certificate (for example CustomerCompanyName.pem) downloaded from the portal https://identity.apple.com/pushcert/ using this command

cat CustomerCompanyName.pem PlainKey.pem > PlainCert.pem

Now this PlainCert.pem file can be used in your server as APNS/MDM certificate.

3)For MDM config profile use IPCU and look in to this also.

There are 2 ways, both of which require an Enterprise developer account.

Method 1)

Log into the provisioning portal and create a new App ID in the format com.apple.mgmt.[your unique reference]. Then setup push notification for this new app. You don't need to actually create an app binary, but you can then use the push notification certificate to talk to APNS. The com.apple.mgmt.[your unique reference] value will be your push topic.

Method 2)

Follow the instructions here to create a vendor singing certificate.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!