This commit is contained in:
parent
1a75c93661
commit
3f465b2031
1 changed files with 5 additions and 6 deletions
11
README.md
11
README.md
|
@ -23,9 +23,8 @@ Example:
|
||||||
```toml
|
```toml
|
||||||
host_address = "::edcb:a098:7654:3210"
|
host_address = "::edcb:a098:7654:3210"
|
||||||
|
|
||||||
[[interface]]
|
[interfaces]
|
||||||
name = "example-interface-1" # this is what a user inputs in the zone.toml
|
example-interface = "::0123:4567:890a:bcde" # static part of the IP, the rest will be dynamically generated using the host
|
||||||
address = "::0123:4567:890a:bcde" # static part of the IP, the rest will be dynamically generated using the host
|
|
||||||
```
|
```
|
||||||
|
|
||||||
*zone.d/example.org.toml*
|
*zone.d/example.org.toml*
|
||||||
|
@ -35,9 +34,9 @@ zone = "example.org" # Zone Name
|
||||||
id = "01234567890abcdefghijklmnopqrstu" # Zone ID
|
id = "01234567890abcdefghijklmnopqrstu" # Zone ID
|
||||||
|
|
||||||
[[entry]]
|
[[entry]]
|
||||||
name = "example.org" # "@" Symbol is not currently supported
|
name = "example.org" # "@" Symbol is not currently supported
|
||||||
type = ["AAAA", "A"] # Options are: "A" (IPv4/A Record) and/or "AAAA" (IPv6/AAAA Record)
|
type = ["AAAA", "A"] # Options are: "A" (IPv4/A Record) and/or "AAAA" (IPv6/AAAA Record)
|
||||||
interface = "example-interface-1" # Only required on type values 6 and 10
|
interface = "example-interface" # Only required on type values 6 and 10
|
||||||
```
|
```
|
||||||
|
|
||||||
## Debian Repository
|
## Debian Repository
|
||||||
|
|
Loading…
Reference in a new issue