2012-05-08 4 views
0

MDM 페이로드가 포함 된 내 구성 프로필이 IPCU를 사용하여 설치되지 않았습니다. P12 파일이 있습니다. P12 파일이 체크인 서버와 관계가 있습니까? 그리고 문제를 해결하기 위해 MDM 체크인 서버를 배포하는 방법은 무엇입니까?MDM 체크인 서버를 배포하는 방법

+0

제목이 잘못되었거나 요청한 내용과 관련이있는 용어입니까? –

답변

0

은 예, identity.p12은 서버 측에서 자체 서명 된 SSL 인증서를 생성하는 동안, 다음 자체 서명 된 SSL을 사용하는 경우 "HTTPS"

로 시작해야합니다 server.Your 서버 링크에 관련한다 identity.p12 인증서와 IPCU의 ID 섹션에서 사용해야하는이 인증서를 생성하고 동일한 암호도 사용하십시오.

서버 샘플 서버 세부 사항이있는 MDM_Protocol PDF를 통해 이동 배치 할 수있는 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 

을 생성하는 데 사용할 수있는이 몇 줄.

관련 문제