router0-dmz0: wifi tweaking
This commit is contained in:
parent
99f8c7a2f0
commit
c66a7c65c2
2 changed files with 27 additions and 14 deletions
|
@ -916,16 +916,6 @@ in {
|
|||
# This option can be used to exclude all DFS channels from the ACS channel list
|
||||
# in cases where the driver supports DFS channels.
|
||||
acs_exclude_dfs = 0;
|
||||
|
||||
# Disassociate stations based on excessive transmission failures or other
|
||||
# indications of connection loss. This depends on the driver capabilities and
|
||||
# may not be available with all drivers.
|
||||
disassoc_low_ack = 0;
|
||||
|
||||
skip_inactivity_poll = 1;
|
||||
|
||||
# TODO: check if this is required. multicast can be more efficient so it'd be nice to disable this.
|
||||
multicast_to_unicast = 1;
|
||||
};
|
||||
|
||||
# use 'iw phy#1 info' to determine your VHT capabilities
|
||||
|
@ -942,9 +932,11 @@ in {
|
|||
"RX-STBC1"
|
||||
"MAX-AMSDU-7935"
|
||||
|
||||
"40-INTOLERANT"
|
||||
|
||||
# not supported by BPI-R3 module
|
||||
# "DELAYED-BA"
|
||||
# "DSSS_CCK-40"
|
||||
"40-INTOLERANT"
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -1052,8 +1044,29 @@ in {
|
|||
# [ENABLE-TLSv1.3] = enable TLSv1.3 (experimental - disabled by default)
|
||||
tls_flags = "[ENABLE-TLSv1.3]";
|
||||
|
||||
# TODO: debugging for wifi drops happens below here
|
||||
# Require IEEE 802.1X authorization
|
||||
ieee8021x = 0;
|
||||
|
||||
# Optionally, hostapd can be configured to use an integrated EAP server
|
||||
# to process EAP authentication locally without need for an external RADIUS
|
||||
# server. This functionality can be used both as a local authentication server
|
||||
# for IEEE 802.1X/EAPOL and as a RADIUS server for other devices.
|
||||
|
||||
# Use integrated EAP server instead of external RADIUS authentication
|
||||
# server. This is also needed if hostapd is configured to act as a RADIUS
|
||||
# authentication server.
|
||||
eap_server = 0;
|
||||
|
||||
# Disassociate stations based on excessive transmission failures or other
|
||||
# indications of connection loss. This depends on the driver capabilities and
|
||||
# may not be available with all drivers.
|
||||
disassoc_low_ack = 0;
|
||||
|
||||
skip_inactivity_poll = 1;
|
||||
|
||||
# TODO: check if this is required. multicast can be more efficient so it'd be nice to disable this.
|
||||
multicast_to_unicast = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue