-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathddns_config.yaml
35 lines (35 loc) · 1010 Bytes
/
ddns_config.yaml
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
# ABOUT
# - This is a Configuration file for the DDNS scripts
# - This file is loaded by the following python modules: ddns.py, gen_bind_files.py and gen_ddns_sh.py
#
# INSTRUCTIONS
# - Replace <value> in the text below with values for your DNS
# - All fields take only one value with the exception of "forwarders" and "ip_ranges"
# - Multiple "forwarders" and "ip_ranges" can be entered in a list
# - The IP address ranges represent both the fixed and floating IP ranges
# - The IP address ranges, e.g. "ip_ranges", must be on Octet boundaries, e.g. /24, /16, /8
#
# EXAMPLE
# domain_name: cloud.mycompany.com
# dns_shortname: mydns
# dns_fixed_ip: 10.130.52.121
# dns_floating_ip: 10.130.56.248
# forwarders:
# - 10.130.0.1
# - 8.8.8.8
# ip_ranges:
# - 10.130.52.0/24
# - 10.130.56.0/24
# - 10.130.57.0/24
#
# FILL IN VALUES BELOW
#
domain_name: <value>
dns_shortname: <value>
dns_fixed_ip: <value>
dns_floating_ip: <value>
forwarders:
- <value>
ip_ranges:
- <value>
- <value>