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
# -*- mode: ruby -*- | |
# # vi: set ft=ruby : | |
# Specify minimum Vagrant version and Vagrant API version | |
Vagrant.require_version ">= 1.6.0" | |
VAGRANTFILE_API_VERSION = "2" | |
# Require YAML module | |
require 'yaml' |
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
--- | |
- name: coreos-01 | |
box: coreos-alpha | |
ram: 512 | |
ip: 172.17.8.101 | |
- name: coreos-02 | |
box: coreos-alpha | |
ram: 512 | |
ip: 172.17.8.102 | |
- name: coreos-03 |
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
workgroup = <NetBIOS name of AD domain> | |
security = ads | |
realm = <DNS name of AD domain> | |
use kerberos keytab = true | |
password server = <Space-delimited list of AD DCs> |
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
LoadModule auth_kerb_module modules/mod_auth_kerb.so | |
<Location /secured> | |
AuthType Kerberos | |
AuthName "Kerberos Login" | |
KrbMethodNegotiate On | |
KrbMethodK5Passwd On | |
KrbAuthRealms EXAMPLE.COM | |
Krb5KeyTab /etc/httpd/conf/httpd.keytab | |
require valid-user |
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
[logging] | |
default = FILE:/var/log/krb5libs.log | |
kdc = FILE:/var/log/krb5kdc.log | |
admin_server = FILE:/var/log/kadmind.log | |
[libdefaults] | |
default_realm = EXAMPLE.COM | |
dns_lookup_realm = true | |
dns_lookup_kdc = true |
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
host 10.10.10.10 | |
base dc=example,dc=com | |
uri ldap://server.example.com/ | |
binddn [email protected] | |
bindpw adldapbindpw | |
scope sub | |
ssl no | |
pam_filter objectClass=User | |
nss_base_passwd dc=example,dc=com?sub | |
nss_base_shadow dc=example,dc=com?sub |
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
#%PAM-1.0 | |
# This file is auto-generated. | |
# User changes will be destroyed the next time authconfig is run. | |
auth required /lib/security/$ISA/pam_env.so | |
auth sufficient /lib/security/$ISA/pam_unix.so likeauth nullok | |
auth sufficient /lib/security/$ISA/pam_krb5.so | |
auth required /lib/security/$ISA/pam_deny.so | |
account sufficient /lib/security/$ISA/pam_krb5.so | |
account required /lib/security/$ISA/pam_unix.so |
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
[logging] | |
default = FILE:/var/log/krb5libs.log | |
kdc = FILE:/var/log/krb5kdc.log | |
admin_server = FILE:/var/log/kadmind.log | |
[libdefaults] | |
default_realm = EXAMPLE.COM | |
dns_lookup_realm = true | |
dns_lookup_kdc = true |
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
host 10.10.10.10 | |
base dc=example,dc=com | |
binddn cn=ldap,cn=Users,dc=example,dc=com | |
bindpw adldapbindpw | |
scope sub | |
ssl no | |
nss_base_passwd dc=example,dc=com | |
nss_base_shadow dc=example,dc=com | |
nss_base_group dc=example,dc=com | |
nss_map_objectclass posixAccount user |
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
host 10.10.10.10 | |
base dc=example,dc=com | |
uri ldap://server.example.com/ | |
binddn [email protected] | |
bindpw adldapbindpw | |
scope sub | |
ssl no | |
nss_base_passwd dc=example,dc=com?sub | |
nss_base_shadow dc=example,dc=com?sub | |
nss_base_group dc=mydomain,dc=com?sub?&(objectCategory=group)(gidnumber=*) |