blob: 64a5f43e7a84483ceb0826c7e99e1f535e915c2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# config file for test-howto.py for abartlet's KVM based setup (using libvirt)
# where the git checkout is
SOURCETREE : /data/samba/howto/git
# where to install Samba to
PREFIX : /data/samba/howto/prefix
# debug level which will be put in smb.conf
DEBUGLEVEL : 1
# commands to control VMs
VM_POWEROFF : virsh destroy ${VMNAME}
VM_RESTORE : virsh snapshot-revert ${VMNAME} ${SNAPSHOT}
VM_RESET : virsh reboot ${VMNAME}
# interfaces to create
INTERFACE : virbr0:0
NAMED_INTERFACE : virbr0:1
# this is an additional IP that will be used for named to listen
# on. It should not be the primary IP of the interface. We need one
# for BIND (which redirects to the other hosts) and one for Samba,
# which might be running our own DNS
INTERFACE_IP : 192.168.122.3
INTERFACE_NET : 192.168.122.3/24
NAMED_INTERFACE_IP : 192.168.122.2
NAMED_INTERFACE_NET : 192.168.122.2/24
# how to run bind9
BIND9 : /usr/sbin/named
NAMED_CHECKCONF : /usr/sbin/named-checkconf
RNDC : /usr/sbin/rndc
BIND_USER : named
# provision information
REALM : S4.HOWTO.ABARTLET.NET
LCREALM : s4.howto.abartlet.net
DOMAIN : s4-howto
BASEDN : DC=s4,DC=howto,DC=abartlet,DC=net
PASSWORD1 : p@ssw0rd
PASSWORD2 : p@ssw0rd2
PASSWORD3 : p@ssw0rd3
# a Windows7 VM
WINDOWS7_HOSTNAME : Windows7-3
WINDOWS7_VM : Windows7-3
WINDOWS7_SNAPSHOT : 1346650132
WINDOWS7_USER : administrator
WINDOWS7_PASS : penguin
# a winxp VM - needs Windows XP Service Pack 2 Support Tools
#WINXP_HOSTNAME : WinXP-1
#WINXP_VM : WinXP-1
#WINXP_SNAPSHOT : 1329361864
#WINXP_USER : administrator
#WINXP_PASS : penguin
# Samba will join this w2k8r2 VM as a DC and then as a RODC
W2K8R2A_HOSTNAME : Win2008R2-3
W2K8R2A_VM : Win2008R2-3
W2K8R2A_REALM : 2008R2.HOWTO.ABARTLET.NET
W2K8R2A_DOMAIN : 2008R2HOWTO
W2K8R2A_PASS : penguin12#
W2K8R2A_SNAPSHOT : 1349167901
W2K8R2A_IP : 192.168.122.24
# this w2k8r2 VM will become a DC in the samba domain
W2K8R2B_HOSTNAME : Win2008R2-7
W2K8R2B_VM : Win2008R2-7
W2K8R2B_PASS : penguin12#
W2K8R2B_SNAPSHOT : 1347439285
# this w2k8r2 VM will become a RODC in the samba domain
W2K8R2C_HOSTNAME : Win2008R2-6
W2K8R2C_VM : Win2008R2-6
W2K8R2C_PASS : penguin12#
W2K8R2C_SNAPSHOT : 1347437454
# Samba will join this w2k3 VM as a DC
#W2K3A_HOSTNAME : Win2003R2-2
#W2K3A_VM : Win2003R2-2
#W2K3A_REALM : 2003.HOWTO.ABARTLET.NET
#W2K3A_DOMAIN : 2003HOWTO
#W2K3A_PASS : penguin
#W2K3A_SNAPSHOT : 1314652035
#W2K3A_IP : 192.168.122.91
# this w2k3 VM will become a DC in the samba domain
W2K3B_HOSTNAME : Win2003R2-4
W2K3B_VM : Win2003R2-4
W2K3B_PASS : penguin
W2K3B_SNAPSHOT : 1347424723
W2K3B_IP : 192.168.122.164
# this w2k3 VM will become a member in the samba domain
W2K3C_HOSTNAME : Win2003R2-3
W2K3C_VM : Win2003R2-3
W2K3C_PASS : penguin
W2K3C_SNAPSHOT : 1347423953
W2K3C_IP : 192.168.122.162
|