diff options
author | Viacheslav <v.gletenko@vyos.io> | 2021-10-18 15:33:19 +0300 |
---|---|---|
committer | Viacheslav <v.gletenko@vyos.io> | 2021-10-18 15:33:19 +0300 |
commit | 4407326e42345fc59a1a32dc7dbc3ea97a72ddc8 (patch) | |
tree | 099ec7b3a4ab4acf1dc3d0a5c76e53d56ffcf353 /docs/configuration/service | |
parent | c07eef4c99217325149fc0c6faef2ba965bb0dd3 (diff) | |
download | vyos-documentation-4407326e42345fc59a1a32dc7dbc3ea97a72ddc8.tar.gz vyos-documentation-4407326e42345fc59a1a32dc7dbc3ea97a72ddc8.zip |
ddns: allow IPv6 explicit example
Diffstat (limited to 'docs/configuration/service')
-rw-r--r-- | docs/configuration/service/dns.rst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/configuration/service/dns.rst b/docs/configuration/service/dns.rst index 4391b453..7db0e6e2 100644 --- a/docs/configuration/service/dns.rst +++ b/docs/configuration/service/dns.rst @@ -307,6 +307,11 @@ hostnames, protocol and server. When a ``custom`` DynDNS provider is used the `<server>` where update requests are being sent to must be specified. +.. cfgcmd:: set service dns dynamic interface <interface> ipv6-enable + + Allow explicit IPv6 address for the interface. + + Example: ^^^^^^^^ @@ -322,6 +327,19 @@ Use DynDNS as your preferred provider: .. note:: Multiple services can be used per interface. Just specify as many services per interface as you like! +Example IPv6 only: +^^^^^^^^^^^^^^^^^^ + +.. code-block:: none + + set service dns dynamic interface eth0 ipv6-enable + set service dns dynamic interface eth0 service dyndns6 login my-login + set service dns dynamic interface eth0 service dyndns6 password my-password + set service dns dynamic interface eth0 service dyndns6 host-name my-dyndns-hostname + set service dns dynamic interface eth0 service dyndns6 protocol dyndns2 + set service dns dynamic interface eth0 service dyndns6 server dyndns-v6-server + + Running Behind NAT ------------------ |