-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-resource-pools.xml
39 lines (39 loc) · 1.22 KB
/
config-resource-pools.xml
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
<config xmlns="http://tail-f.com/ns/config/1.0">
<resource-pools xmlns="http://tail-f.com/pkg/resource-allocator">
<id-pool xmlns="http://tail-f.com/pkg/id-allocator">
<name>router-id</name>
<range>
<start>1</start>
<end>1000</end>
</range>
</id-pool>
<ip-address-pool xmlns="http://tail-f.com/pkg/ipaddress-allocator">
<name>ipv4-loopback</name>
<subnet>
<address>10.0.0.0</address>
<cidrmask>24</cidrmask>
</subnet>
</ip-address-pool>
<ip-address-pool xmlns="http://tail-f.com/pkg/ipaddress-allocator">
<name>ipv6-loopback</name>
<subnet>
<address>2001:db8::</address>
<cidrmask>64</cidrmask>
</subnet>
</ip-address-pool>
<ip-address-pool xmlns="http://tail-f.com/pkg/ipaddress-allocator">
<name>ipv4-backbone-link</name>
<subnet>
<address>10.0.1.0</address>
<cidrmask>24</cidrmask>
</subnet>
</ip-address-pool>
<ip-address-pool xmlns="http://tail-f.com/pkg/ipaddress-allocator">
<name>ipv6-backbone-link</name>
<subnet>
<address>2001:db8:1::</address>
<cidrmask>64</cidrmask>
</subnet>
</ip-address-pool>
</resource-pools>
</config>