From fbf31a4115878e7e6a1a0d538a5fa28e5efb25c0 Mon Sep 17 00:00:00 2001 From: Neshura Date: Tue, 26 Dec 2023 04:09:18 +0100 Subject: [PATCH] Adjusted Readme to reflect code changes --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 853e93c..74b14b2 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ Example: *interfaces.toml* ```toml -host_address = ":edcb:a098:7654:3210" +host_address = "::edcb:a098:7654:3210" [[interface]] 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 +address = "::0123:4567:890a:bcde" # static part of the IP, the rest will be dynamically generated using the host ``` *zone.d/example.org.toml* @@ -36,7 +36,7 @@ id = "01234567890abcdefghijklmnopqrstu" # Zone ID [[entry]] 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) +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 ```