mirror of
https://github.com/breeze303/nss-packages.git
synced 2025-12-16 08:44:52 +00:00
New option added to ecm config: `disable_gro_list` This config option defaults to '1' (AKA disable rx-gro-list) `rx-gro-list` is enabled by default in mainline OpenWrt, however it is very bug prone, and causes various issues related to UDP traffic (i.e DHCP, WireGuard, DNS, etc.) This option is not explicitly required. If a user sets this to '0', a warning will be shown in the logs everytime ECM is started. Signed-off-by: Sean Khan <datapronix@protonmail.com>
11 lines
269 B
Plaintext
11 lines
269 B
Plaintext
config ecm 'global'
|
|
option acceleration_engine 'auto'
|
|
|
|
config ecm 'general'
|
|
option enable_bridge_filtering '0'
|
|
option disable_offloads '0'
|
|
option disable_flow_control '0'
|
|
option disable_interrupt_moderation '0'
|
|
option disable_gro '0'
|
|
option disable_gro_list '1'
|