Adjusted Readme language
This commit is contained in:
parent
74b4202e9e
commit
478dc4dd3a
1 changed files with 9 additions and 7 deletions
16
README.md
16
README.md
|
@ -21,21 +21,23 @@ Example:
|
|||
|
||||
*interfaces.toml*
|
||||
```toml
|
||||
host_address = ":edcb:a098:7654:3210"
|
||||
|
||||
[[interface]]
|
||||
alias = "example-interface-1" # this is what a user inputs in the zone.toml
|
||||
address = ":da5e:d3ff:feeb:4346" # static part of the IP, the rest will be dynamically generated using the host
|
||||
name = "example-interface-1" # this is what a user inputs in the zone.toml
|
||||
address = ":0123:4567:890a:bcde" # static part of the IP, the rest will be dynamically generated using the host
|
||||
```
|
||||
|
||||
*zone.d/example.org.toml*
|
||||
```toml
|
||||
email = "owner@example.org" # Email of User owning the Zone
|
||||
name = "example.org" # Zone Name
|
||||
id = "0183f167a051f1e432c0d931478638b5" # Zone ID
|
||||
zone = "example.org" # Zone Name
|
||||
id = "01234567890abcdefghijklmnopqrstu" # Zone ID
|
||||
|
||||
[[entry]]
|
||||
name="example.org" # "@" Symbol is not currently supported
|
||||
type="10" # Options are: "4" (only IPv4/A Record), "6" (only IPv6/AAAA Record) and "10" (both)
|
||||
interface="example-interface-1" # Only required on type values 6 and 10
|
||||
name = "example.org" # "@" Symbol is not currently supported
|
||||
rtype = 10 # Options are: "4" (only IPv4/A Record), "6" (only IPv6/AAAA Record) and "10" (both)
|
||||
interface = "example-interface-1" # Only required on type values 6 and 10
|
||||
```
|
||||
|
||||
## Debian Repository
|
||||
|
|
Loading…
Reference in a new issue