Make IPv6 NA multicast-to-unicast conversion configurable
This can be used with Proxy ARP to allow multicast NAs to be forwarded to associated STAs using link layer unicast delivery. This used to be hardcoded to be enabled, but it is now disabled by default and can be enabled with na_mcast_to_ucast=1. This functionality may not be desired in all networks and most cases work without it, so the new default-to-disabled is more appropriate. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
9f390f431c
commit
4a7ce98469
4 changed files with 27 additions and 9 deletions
|
@ -3138,6 +3138,8 @@ static int hostapd_config_fill(struct hostapd_config *conf,
|
|||
bss->disable_dgaf = atoi(pos);
|
||||
} else if (os_strcmp(buf, "proxy_arp") == 0) {
|
||||
bss->proxy_arp = atoi(pos);
|
||||
} else if (os_strcmp(buf, "na_mcast_to_ucast") == 0) {
|
||||
bss->na_mcast_to_ucast = atoi(pos);
|
||||
} else if (os_strcmp(buf, "osen") == 0) {
|
||||
bss->osen = atoi(pos);
|
||||
} else if (os_strcmp(buf, "anqp_domain_id") == 0) {
|
||||
|
|
|
@ -1493,6 +1493,13 @@ own_ip_addr=127.0.0.1
|
|||
# 1 = enabled
|
||||
#proxy_arp=1
|
||||
|
||||
# IPv6 Neighbor Advertisement multicast-to-unicast conversion
|
||||
# This can be used with Proxy ARP to allow multicast NAs to be forwarded to
|
||||
# associated STAs using link layer unicast delivery.
|
||||
# 0 = disabled (default)
|
||||
# 1 = enabled
|
||||
#na_mcast_to_ucast=0
|
||||
|
||||
##### IEEE 802.11u-2011 #######################################################
|
||||
|
||||
# Enable Interworking service
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue