diff options
Diffstat (limited to 'global')
-rw-r--r-- | global/overlay/etc/puppet/manifests/cosmos-site.pp | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/global/overlay/etc/puppet/manifests/cosmos-site.pp b/global/overlay/etc/puppet/manifests/cosmos-site.pp index 8f44de5..7a1d351 100644 --- a/global/overlay/etc/puppet/manifests/cosmos-site.pp +++ b/global/overlay/etc/puppet/manifests/cosmos-site.pp @@ -94,6 +94,36 @@ node 'sto-tug-kvm1.swamid.se' { range => '' } + dhcp::pool {'eduid-fre-IdP': + network => '130.242.130.64', + mask => '255.255.255.248', + gateway => '130.242.130.65', + range => '' + } + + dhcp::pool {'eduid-fre-auth': + network => '130.242.130.72', + mask => '255.255.255.248', + gateway => '130.242.130.73', + range => '' + } + + dhcp::pool {'eduid-fre-other': + network => '130.242.130.80', + mask => '255.255.255.240', + gateway => '130.242.130.81', + range => '' + } + + dhcp::pool {'eduid-lla-other': + network => '130.242.130.144', + mask => '255.255.255.240', + gateway => '130.242.130.145', + range => '' + } + + # eduID TUG hosts + dhcp::host { 'kvmidp-tug-2': mac => "24:b6:fd:fe:fa:51", ip => "130.242.130.4"; } @@ -138,5 +168,40 @@ node 'sto-tug-kvm1.swamid.se' { 'dashboard-tug-2': mac => "f0:4d:a2:73:4f:0d", ip => "130.242.130.30"; } + + + # eduID FRE hosts + + dhcp::host { + 'kvmidp-fre-2': mac => "18:03:73:41:f3:e8", ip => "130.242.130.68"; + } + + dhcp::host { + 'idp-fre-2a': mac => "52:54:00:04:00:01", ip => "130.242.130.69"; + } + + dhcp::host { + 'idp-fre-2b': mac => "52:54:00:04:00:02", ip => "130.242.130.70"; + } + + dhcp::host { + 'auth-fre-2': mac => "18:03:73:0f:41:3c", ip => "130.242.130.76"; + } + + dhcp::host { + 'kvm-fre-2': mac => "f0:4d:a2:73:4b:e3", ip => "130.242.130.84"; + } + + dhcp::host { + 'db-fre-2': mac => "f0:4d:a2:73:4f:19", ip => "130.242.130.85"; + } + + + # eduID LLA hosts + + dhcp::host { + 'db-lla-2': mac => "f0:4d:a2:73:4e:08", ip => "130.242.130.148"; + } + } |