diff options
author | rebortg <github@ghlr.de> | 2023-08-27 21:04:56 +0200 |
---|---|---|
committer | rebortg <github@ghlr.de> | 2023-08-27 21:04:56 +0200 |
commit | 355b459f22544c97bd0332ff06dee1d39a05ac07 (patch) | |
tree | 54b261d0577c48a53695d6cf8392cb130ed2ae0a /docs/_include/interface-ipv6.txt | |
parent | abd23045bc3bc06fcd6475e3e616056c1870ab0c (diff) | |
parent | 02aafc3df3abebb58832c62ded26c495363ebb3a (diff) | |
download | vyos-documentation-355b459f22544c97bd0332ff06dee1d39a05ac07.tar.gz vyos-documentation-355b459f22544c97bd0332ff06dee1d39a05ac07.zip |
Merge branch 'master' of github.com:vyos/vyos-documentation into localazy-3
Diffstat (limited to 'docs/_include/interface-ipv6.txt')
-rw-r--r-- | docs/_include/interface-ipv6.txt | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/docs/_include/interface-ipv6.txt b/docs/_include/interface-ipv6.txt index eb60b4e8..0c222d80 100644 --- a/docs/_include/interface-ipv6.txt +++ b/docs/_include/interface-ipv6.txt @@ -67,6 +67,34 @@ .. hint:: MSS value = MTU - 40 (IPv6 header) - 20 (TCP header), resulting in 1432 bytes on a 1492 byte MTU. - - Instead of a numerical MSS value `clamp-mss-to-pmtu` can be used to + + Instead of a numerical MSS value `clamp-mss-to-pmtu` can be used to automatically set the proper value. + +.. cfgcmd:: set interfaces {{ var0 }} <interface> {{ var2 }} {{ var3 }} + {{ var5 }} {{ var6 }} ipv6 accept-dad <1-3> + + Whether to accept DAD (Duplicate Address Detection). + + - 0: Disable DAD + - 1: Enable DAD (default) + - 2: Enable DAD, and disable IPv6 operation if MAC-based duplicate link-local address has been found. + + Example: + + .. code-block:: none + + set interfaces {{ var0 }} {{ var1 }} {{ var2 }} {{ var4 }} {{ var5 }} {{ var7 }} ipv6 accept-dad 2 + +.. cfgcmd:: set interfaces {{ var0 }} <interface> {{ var2 }} {{ var3 }} + {{ var5 }} {{ var6 }} ipv6 dup-addr-detect-transmits <n> + + The amount of Duplicate Address Detection probes to send. + + Default: 1 + + Example: + + .. code-block:: none + + set interfaces {{ var0 }} {{ var1 }} {{ var2 }} {{ var4 }} {{ var5 }} {{ var7 }} ipv6 dup-addr-detect-transmits 5 |