Skip to content
Snippets Groups Projects
Unverified Commit d87a798a authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-core: disable VXLAN checksums

Our VXLAN setup was changed to accept VXLAN packets without checksum almost
2 months ago, so we can disable sending the checksums now as well. Slightly
improves performance.
parent 22cdd1d7
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,7 @@ proto_gluon_wired_setup() { ...@@ -46,6 +46,7 @@ proto_gluon_wired_setup() {
json_add_string peer6addr 'ff02::15c' json_add_string peer6addr 'ff02::15c'
json_add_int vid "$(lua -lgluon.util -e 'print(tonumber(gluon.util.domain_seed_bytes("gluon-mesh-vxlan", 3), 16))')" json_add_int vid "$(lua -lgluon.util -e 'print(tonumber(gluon.util.domain_seed_bytes("gluon-mesh-vxlan", 3), 16))')"
json_add_boolean rxcsum '0' json_add_boolean rxcsum '0'
json_add_boolean txcsum '0'
json_close_object json_close_object
ubus call network add_dynamic "$(json_dump)" ubus call network add_dynamic "$(json_dump)"
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment