-
Notifications
You must be signed in to change notification settings - Fork 89
/
test.yml
70 lines (66 loc) · 2.07 KB
/
test.yml
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
---
- hosts: testdhcp
become: true
#pre_tasks:
#- name: set IPv6 address of host system
#local_action: command 'ip address add fdad:d155:f869:55b4::1/64 dev enp0s8'
#- name: set IPv6 address of DHCP server
# command: 'ip address add fdad:d155:f869:55b4::2/64 dev enp0s8'
vars:
dhcp_global_default_lease_time: 28800 # 8hrs
dhcp_global_max_lease_time: 43200 # 12 hrs
dhcp_global_subnet_mask: 255.255.255.0
dhcp_global_broadcast_address: 192.168.222.255
#dhcp_global_routers: 10.0.2.2
dhcp_global_domain_name: example.com
dhcp_global_domain_name_servers:
- 8.8.8.8
- 8.8.4.4
dhcp_global_bootp: allow
dhcp_global_booting: allow
dhcp_global_next_server: 192.168.222.3
dhcp_global_filename: boot.img
dhcp_global_classes:
- name: vbox
match: 'match if binary-to-ascii(16,8,":",substring(hardware, 1, 3)) = "8:0:27"'
dhcp_subnets:
- ip: 192.168.222.0
netmask: 255.255.255.128
domain_name_servers:
- 10.0.2.3
- 10.0.2.4
range_begin: 192.168.222.50
range_end: 192.168.222.100
pools:
- default_lease_time: 1800
max_lease_time: 3600
range_begin: 192.168.222.101
range_end: 192.168.222.127
allow: 'members of "vbox"'
- ip: 192.168.222.128
default_lease_time: 3600
max_lease_time: 7200
netmask: 255.255.255.128
domain_name_servers: 10.0.2.3
routers: 192.168.222.129
hosts:
- name: cl1
mac: '00:11:22:33:44:55'
ip: 192.168.222.150
- name: cl2
mac: '00:de:ad:be:ef:00'
ip: 192.168.222.151
dhcp6_enable: true
dhcp6_subnets:
- ip: 'fdad:d155:f869:55b4::'
cidr: 64
range_begin: 'fdad:d155:f869:55b4::2:0000'
range_end: 'fdad:d155:f869:55b4::2:ffff'
default_lease_time: 1800
max_lease_time: 7200
hosts:
- name: testws
mac: '08:00:27:4c:e4:46'
ip: 'fdad:d155:f869:55b4::3:1'
roles:
- dhcp