Hello, Am Freitag, 4. Januar 2019 22:21:47 UTC+1 schrieb Michael Post: > > Hello, > > yesterday and today i set up a new Debian Stretch VM and want to install a > fresh environment with puppetserver 6. > > sometimes it is good to write and think and read more and more. I solved my problem. The exact steps are written in the documentation but you have to find it.
It is written under https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#option-2-puppet-server-functioning-as-an-intermediate-ca + expand all <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#> - close menu <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#> Puppet Platform reference manual - Introduction <https://puppet.com/docs/puppet/5.3/index.html> - *Puppet 5 Platform* - *Quick start guides* - *Deprecated features* - *Installing and upgrading* - *Configuration* - *Important directories and files* - *Environments* - *Modules* - *Puppet’s services and tools* - *Puppet Server* - *The Puppet language* - *Writing custom functions* - *Hiera* - Facter <https://puppet.com/docs/facter/3.9/index.html> - *Resource types* - *Reports: Tracking Puppet’s activity* - *Extensions for assigning classes to nodes* - *Misc. references (settings, functions, etc.)* - *Man pages* - *HTTP API* - *SSL and certificates* - Using an external CA <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html> - Using an external CA with Puppet Server <https://puppet.com/docs/puppetserver/5.1/external_ca_configuration.html> - External SSL termination with Puppet Server <https://puppet.com/docs/puppetserver/5.1/external_ssl_termination.html> - Configuring autosigning <https://puppet.com/docs/puppet/5.3/ssl_autosign.html> - CSR attributes and certificate extensions <https://puppet.com/docs/puppet/5.3/ssl_attributes_extensions.html> - Regenerating all certificates in a deployment <https://puppet.com/docs/puppet/5.3/ssl_regenerate_certificates.html> - Adding file server mount points <https://puppet.com/docs/puppet/5.3/file_serving.html> - *Details about Puppet’s internals* - *Experimental features* 1. Supported external CA configurations <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#supported-external-ca-configurations> 2. General notes and requirements <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#general-notes-and-requirements> 1. PEM encoding of credentials is mandatory <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#pem-encoding-of-credentials-is-mandatory> 2. Normal Puppet certificate requirements still apply <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#normal-puppet-certificate-requirements-still-apply> 3. Option 1: Single CA <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#option-1-single-ca> 1. Puppet server <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#puppet-server> 2. Puppet agent <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#puppet-agent> 4. Option 2: Puppet server functioning as an intermediate CA <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#option-2-puppet-server-functioning-as-an-intermediate-ca> 1. Puppet Server <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#puppet-server-1> 2. Puppet agent <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#puppet-agent-1> In lieu of its built-in certificate authority (CA) and public key infrastructure (PKI) tools, Puppet can use an existing external CA for all of its secure socket layer (SSL) communications. This page describes the supported and tested configurations for external CAs in this version of Puppet. If you have an external CA use case that isn’t covered here, please contact Puppet so we can learn more about it. <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#supported-external-ca-configurations>Supported external CA configurations This version of Puppet supports *some* external CA configurations, but not every possible arrangement. We fully support the following setups: 1. Single self-signed CA which directly issues SSL certificates. <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#option-1-single-ca> 2. Puppet Server functioning as an intermediate CA of a root self-signed CA. <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#option-2-puppet-server-functioning-as-an-intermediate-ca> These are fully supported by Puppet, which means: - Issues that arise in one of these three arrangements are considered *bugs,* and we’ll fix them ASAP. - Issues that arise in any *other* external CA setup are considered *feature requests,* and we’ll consider whether to expand our support. <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#general-notes-and-requirements>General notes and requirements <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#pem-encoding-of-credentials-is-mandatory>PEM encoding of credentials is mandatory Puppet always expects its SSL credentials to be in .pem format. <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#normal-puppet-certificate-requirements-still-apply>Normal Puppet certificate requirements still apply Any Puppet Server certificate must contain the DNS name at which agent nodes will attempt to contact that server, either as the subject common name (CN) or as a Subject Alternative Name (DNS). <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#option-1-single-ca>Option 1: Single CA When Puppet uses its internal CA, it defaults to a single CA configuration. A single externally issued CA can also be used in a similar manner. +------------------------+ | | | Root self-signed CA | | | +------+----------+------+ | | +----------+ +------------+ | | v v +-----------------+ +----------------+ | | | | | Server SSL Cert | | Agent SSL Cert | | | | | +-----------------+ +----------------+ This configuration is all-or-nothing rather than mix-and-match. When using an external CA, the built-in Puppet CA service *must* be disabled and cannot be used to issue SSL certificates. Additionally, Puppet cannot automatically distribute certificates in this configurations — you must have your own complete system for issuing and distributing certificates. <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#puppet-server>Puppet server Configure Puppet Server in three steps: - Disable the internal CA service - Ensure that the certname will never change - Put certificates/keys in place on disk 1. Edit Puppet Server’s /etc/puppetlabs/puppetserver/services.d/ca.cfg file to disable the internal CA. Comment out the line following “To enable the CA service…” and uncomment the line following “To disable the CA service…”, as follows: # To enable the CA service, leave the following line uncommented# puppetlabs.services.ca.certificate-authority-service/certificate-authority-service# To disable the CA service, comment out the above line and uncomment the line below puppetlabs.services.ca.certificate-authority-disabled-service/certificate-authority-disabled-service 2. Set a static value for the certname setting in puppet.conf <https://puppet.com/docs/puppet/5.3/config_file_main.html>: [master]certname = puppetserver.example.com Setting a static value keeps Puppet from getting confused if the machine’s hostname ever changes. The value must be whatever certname you’ll use to issue the server’s certificate. It must not be blank. 3. Put the credentials from your external CA on disk in the correct locations. These locations must match what’s configured in your webserver.conf file <https://puppet.com/docs/puppetserver/5.1/config_file_webserver.html>. If you haven’t changed those settings, you can run the following commands to find the default locations: Credential File location Server SSL certificate puppet config print hostcert --section master Server SSL certificate private key puppet config print hostprivkey --section master Root CA certificate puppet config print localcacert --section master Root certificate revocation list puppet config print hostcrl --section master If you’ve put the credentials in the correct locations, you shouldn’t need to change any additional settings. <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#puppet-agent>Puppet agent You don’t need to change any settings. Put the external credentials into the correct filesystem locations. You can run the following commands to find the appropriate locations: Credential File location Agent SSL certificate puppet config print hostcert --section agent Agent SSL certificate private key puppet config print hostprivkey --section agent Root CA certificate puppet config print localcacert --section agent Root certificate revocation list puppet config print hostcrl --section agent <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#option-2-puppet-server-functioning-as-an-intermediate-ca>Option 2: Puppet server functioning as an intermediate CA Puppet Server can operate as an intermediate CA to an external root CA. (The server cannot be an intermediate to an intermediate.) In this mode, the Puppet CA is left enabled; it can automatically accept CSRs and distribute certificates to agents, and can use the standard puppet cert command to sign certificates. However, there are some limitations: - Agent-side CRL checking is not possible, although Puppet Server still verifies the CRL. - The CA certificate bundle (the external root CA combined with the intermediate CA certificate) must be distributed to the agents manually, ideally before puppet runs <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#puppet-server-1>Puppet Server Before configuring Puppet Server, you must obtain the intermediate CA certificate from your external root CA. Generating the intermediate CA cert is outside the scope of this guide, since it depends on your external certificate authority solution. This guide assumes you are either starting with a fresh installation or have removed all SSL files from your existing server and are starting over. Also, you should stop all Puppet related services on the server before this process. To configure Puppet Server: 1. Put the following files in place: Credential File Location Intermediate CA Certificate /etc/puppetlabs/puppet/ssl/ca/ca_crt.pem Intermediate CA Key /etc/puppetlabs/puppet/ssl/ca/ca_key.pem Root CA Certificate /etc/puppetlabs/puppet/ssl/ca/root_crt.pem All of these files should be owned by puppet:puppet and have permissions of 0600. Note: Although root_crt.pem can be named anything (since Puppet Server doesn’t use it directly), the file needs to be stored in the location shown. Note: ca_key.pem must not have a passphrase, since the Puppet CA cannot provide one when using the key. 2. Generate the CA bundle, which you’ll place on the server and on every agent node. Combine the root CA and intermediate CA certificates into one PEM file: cd /etc/puppetlabs/puppet/ssl/ca cat ca_crt.pem root_crt.pem > ../certs/ca.pem Note: You also need to install a CRL file. If you don’t have one pre-generated from the root CA, you can easily create one by first running puppet cert generate fakehost and then revoking this certificate with puppet cert clean fakehost. If you do have a pre-generated CRL, install it into `/etc/puppetlabs/puppet/ssl/ca/ca_crl.pem. 3. Generate a new certificate for Puppet Server to use. Remember to include the dns_alt_names that this server will need to service. puppet cert generate puppetserver.my.domain.net --dns_alt_names=puppetserver,puppet You can now restart the puppetserver process and confirm that it successfully starts. If your deployment includes other non-agent Puppet services that need new certificates (for example, PuppetDB), please see Regenerating all Certificates for a Puppet deployment <https://puppet.com/docs/puppet/5.3/ssl_regenerate_certificates.html> for specific instructions. <https://puppet.com/docs/puppet/5.3/config_ssl_external_ca.html#puppet-agent-1>Puppet agent You need to do two things to prepare Puppet agent for this CA configuration: - Copy the CA bundle in place prior to a Puppet run. - Disable certificate revocation validation. 1. Copy the CA bundle you created to /etc/puppetlabs/puppet/ssl/certs/ca.pem on every agent node. If you copy this file into place before the first Puppet run, you will not recieve any errors. If you attempt a Puppet run prior to this file being present you will receive errors since the auto-distributed ca.pem file doesn’t include the root CA.. Example error: Error: Could not request certificate: SSL_connect returned=1 errno=0 state=error: certificate verify failed: [unable to get local issuer certificate for /CN=<server>] 2. Set certificate_revocation = false in the [main] section of puppet.conf on every agent node: [main]certificate_revocation = false Once you’ve completed both of these steps, the agent can run successfully. Have a nice weekend, Michael -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/b579f8de-847c-4517-acdf-9d44fdd902ed%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.