Skip to content

Commit ab2bcea

Browse files
author
Jon Ludlam
committed
CA-82314: networkd: introduce Linklocal6 IPv6 address mode
This commit redefines the IPv6 address mode "None6" to mean "no IPv6 address at all, not even a link local one", and introduces the new mode Linklocal6, which means "only IPv6 address, except a link local one". Signed-off-by: Rob Hoes <rob.hoes@citrix.com> Imported-by: Jon Ludlam <jonathan.ludlam@eu.citrix.com>
1 parent 480f8cb commit ab2bcea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

network/network_interface.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ type port = string
7272
type bridge = string
7373
type dhcp_options = [`set_gateway | `set_dns]
7474
type ipv4 = None4 | DHCP4 | Static4 of (Unix.inet_addr * int) list
75-
type ipv6 = None6 | DHCP6 | Autoconf6 | Static6 of (Unix.inet_addr * int) list
75+
type ipv6 = None6 | Linklocal6 | DHCP6 | Autoconf6 | Static6 of (Unix.inet_addr * int) list
7676

7777
type duplex = Duplex_unknown | Duplex_half | Duplex_full
7878

0 commit comments

Comments
 (0)