-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need a way to override hardcoded max UDP message size of 9012 #357
Comments
why don't you create a pull request? It should probably read |
Yep happy to put max MTU behind a env setting |
Plz raise PR |
PR #367
…On Fri, 17 Jun 2022 at 00:42, Jaime Pillora ***@***.***> wrote:
Plz raise PR
—
Reply to this email directly, view it on GitHub
<#357 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABARCCYBYCGESXF22656XQ3VPO3U3ANCNFSM5V5PICXQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
The max UDP message size is currently hardcoded to 9012. We would like to increase it, since our max workload message size is greater.
Quick fix:
export CHISEL_UDP_MAX_SIZE=12000
share\tunnel\tunnel_out_ssh_udp.go:80
share\tunnel\tunnel_in_proxy_udp.go:83
const maxMTU = settings.EnvInt("UDP_MAX_SIZE", 9012)
or command line param e.g. --udp-max-size 12000
The text was updated successfully, but these errors were encountered: