Powershell DSC를 사용한 SSL 인증서 관리


12

지정된 도메인의 모든 대상에서 타사에서 발급 한 인증서가 실행되고 있는지 확인해야합니다. 이 인증서가 DSC를 통해 설치되도록하는 방법이 있습니까?

답변:


10

현재 DSC에는이 작업을 수행하는 기본 제공 방법이 없습니다. PFX에서 인증서를 설치하는 조직을위한 사용자 지정 리소스를 작성했습니다. 내가 사용 Cert:PSDrive를, Import-PfxCertificatecmdlet에와 DSC의 보안 자격 증명 합니다 (PFX 암호를 들어).

최신 정보

이것은 현재 Microsoft의 리소스에 있습니다! xPfxImport자원이되어 xCertificate모듈 V1.1 (아마도 나중에).

또한 내 블로그에 그것에 대해 썼습니다 .

격려에 다시 한번 감사드립니다 (특히 jscott ).


1
당신은 애타게 해요! 코드를 공개적으로 공유 할 수있을 정도로 정리 한 경우 답변을 업데이트하십시오. :) +1
jscott 2014 년

@jscott은 거의 1 년 후, xCertificateMicrosoft의 DSC 리소스에서 모듈에 코드를 추가하려고 하므로 DSC Resource Kit (이전에는 DSC Resource Kit)의 일부로 곧 제공 될 예정입니다. PowerShell 갤러리). 내 풀 요청이 여기에서 기다리고 있지만 원하는 경우 지금 코드를 살펴볼 수 있습니다.
briantist

@jscott는 마침내에 합류 dev했습니다. 마스터가되기까지 얼마나 걸릴지 모릅니다. 현상금과 지원에 감사드립니다.
briantist

2

그룹 정책을 사용하여 인증서를 도메인에 배포하는 것은 어떻습니까? http://technet.microsoft.com/en-us/library/cc770315%28v=ws.10%29.aspx

그룹 정책을 사용하여 인증서를 배포하려면

Open Group Policy Management Console.

Find an existing or create a new GPO to contain the certificate settings. Ensure that the GPO is associated with the domain, site, or organizational unit whose users you want affected by the policy.

Right-click the GPO, and then select Edit.

Group Policy Management Editor opens, and displays the current contents of the policy object.

In the navigation pane, open Computer Configuration\Windows Settings\Security Settings\Public Key Policies\Trusted Publishers.

Click the Action menu, and then click Import.

Follow the instructions in the Certificate Import Wizard to find and import the certificate.

If the certificate is self-signed, and cannot be traced back to a certificate that is in the Trusted Root Certification Authorities certificate store, then you must also copy the certificate to that store. In the navigation pane, click Trusted Root Certification Authorities, and then repeat steps 5 and 6 to install a copy of the certificate to that store.

4
이것이 당신이 설명하는 솔루션이 될 그의 시스템이 신뢰할 필요가있는 CA 인증서 인 것처럼 들리지 않습니다. 대상 서버가 SSL 기반 서비스를 호스팅하는 데 사용할 실제 인증서와 개인 키가있는 것처럼 보입니다. 공개 키 정책 GPO 설정을 사용하여 이와 같은 것을 배포 할 수 있다고 생각하지 않습니다.
Ryan Bolger
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.