如何部署 MDM 簽到服務器? (How to deploy a MDM check-in sever?)


問題描述

如何部署 MDM 簽到服務器? (How to deploy a MDM check-in sever?)

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?


參考解法

方法 1:

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

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.

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

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

(by zorroUser97693321)

參考文件

  1. How to deploy a MDM check-in sever? (CC BY-SA 3.0/4.0)

#mdm #checkin






相關問題

如何部署 MDM 簽到服務器? (How to deploy a MDM check-in sever?)

如何使用tomcat接收和響應HTTP PUT? (How to use tomcat to receive and response the HTTP PUT?)

更新託管應用程序和 App Lock Payload (Updating managed application and App Lock Payload)

Chính sách MDM của iOS (iOS MDM policies)

ipa 文件包含非法字符? (ipa file contains illegal characters?)

MacOSX 服務器 - 註冊 (MacOSX Server - Enrollment)

使用 MDM 解決方案發布 iOS 應用 (Publish iOS app using MDM solution)

遠程安裝應用程序(使用 MDM) (Installing an app remotely (using MDM))

如何配置 Apache 以接受具有 TLS v1.2 的過期客戶端證書? (How configure Apache to accept expired client certificate with TLS v1.2?)

如何使用 MDM 訪問 Apple Push Notification 的內容? (How to access content of Apple Push Notification by using MDM?)

如何使用設備的自定義屬性來獲取產品的版本號 (How can I use Custom Attributes for devices in order to get Version number of Products)

Xamarin IOS 需要重定向到 BB Access 以進行 OpenID 連接 (Xamarin IOS needs to redirect to BB Access for OpenID connection)







留言討論