From 535fe95f3c884b247d374685cc4408aeabc64437 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 2 Oct 2012 12:34:10 +1000 Subject: wintest: Add config file for a second host --- wintest/conf/abartlet-jesse.conf | 104 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 wintest/conf/abartlet-jesse.conf (limited to 'wintest') diff --git a/wintest/conf/abartlet-jesse.conf b/wintest/conf/abartlet-jesse.conf new file mode 100644 index 0000000000..64a5f43e7a --- /dev/null +++ b/wintest/conf/abartlet-jesse.conf @@ -0,0 +1,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 + + -- cgit