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
|
# Nodes IP addresses
$nodes_ipaddr = {
neru => {
ipv4 => '163.172.148.228',
ipv6 => '2001:bc8:628:1f00::1',
},
ecosse => {
ipv4 => '212.85.158.148',
ipv6 => '2a02:2178:2:7::4',
},
fiona => {
ipv4 => '212.85.158.150',
ipv6 => '2a02:2178:2:7::6',
},
sucuk => {
ipv4 => '212.85.158.151',
ipv6 => '2a02:2178:2:7::7',
},
rabbit => {
ipv4 => '212.85.158.152',
ipv6 => '2a02:2178:2:7::8',
},
duvel => {
ipv4 => '212.85.158.153',
ipv6 => '2a02:2178:2:7::9',
},
armlet1 => {
ipv4 => '163.172.148.228',
},
armlet2 => {
ipv4 => '163.172.148.228',
},
friteuse => {
ipv4 => '192.168.122.131',
},
ec2aa1 => {
ipv6 => '2a05:d014:e9:2c02:98ca:ec83:c601:371a',
},
ec2aa2 => {
ipv6 => '2a05:d014:e9:2c03:b7e1:fda8:eab9:6692',
},
ec2aa3 => {
ipv6 => '2a05:d014:e9:2c03:17a8:1204:6df6:662c',
},
ec2aaauto => {
ipv6 => '2a05:d014:e9:2c03:c80d:e2d9:658d:4c28',
},
ec2x1 => {
ipv6 => '2a05:d014:e9:2c03:ce2e:f80a:bc2b:da0d',
},
ec2x2 => {
ipv6 => '2a05:d014:e9:2c02:42e4:6e93:ed55:7b2a',
},
pktaa1 => {
ipv4 => '147.75.69.246',
}
}
# vim: sw=2
|