Last active
August 9, 2024 14:28
-
-
Save luginbash/d4ff93b20a0b34b4953c6dba180572db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo ipa-server-install -U \ | |
-n ${IPA_DOMAIN,,} \ | |
-r ${IPA_DOMAIN^^} \ | |
-a ${IPA_ADMIN_PASS} \ | |
-p ${IPA_DM_PASS} \ | |
--ca-subject="${IPA_COMMON_NAME}" \ | |
--setup-dns \ | |
--no-forwarders --auto-reverse --allow-zone-overlap \ | |
--pki-config-override=/etc/ipa/override.ini \ | |
--external-ca |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo ipa-server-install -U \ | |
-n ${IPA_DOMAIN,,} \ | |
-r ${IPA_DOMAIN^^} \ | |
-a ${IPA_ADMIN_PASS} \ | |
-p ${IPA_DM_PASS} \ | |
--ca-subject="${IPA_COMMON_NAME}" \ | |
--setup-dns \ | |
--no-forwarders --auto-reverse --allow-zone-overlap \ | |
--pki-config-override=/etc/ipa/override.ini \ | |
--external-cert-file=/root/ipa.pem |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/etc/ipa/override.ini | |
[DEFAULT] | |
ipa_key_algorithm=SHA256withEC | |
ipa_key_size=nistp384 | |
ipa_key_type=ecc | |
ipa_signing_algorithm=SHA256withEC | |
[CA] | |
pki_ca_signing_key_size=nistp384 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment