Skip to content

Commit e030609

Browse files
shanemcdclaude
andcommitted
Add UDP buffer sysctl config for QUIC performance
Increases net.core.rmem_max and net.core.wmem_max to 7.5MB as recommended by quic-go for high-bandwidth QUIC transfers. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f1294f1 commit e030609

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

mybox/Containerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ EORUN
113113
# =============================================================================
114114
# Note: Cursor and 1Password GUI are installed via sysext, see docs/SYSEXTS.md
115115
COPY files/00-keyboard.conf /etc/X11/xorg.conf.d/00-keyboard.conf
116+
COPY files/99-udp-buffers.conf /etc/sysctl.d/99-udp-buffers.conf
116117
COPY files/apcupsd.conf /etc/apcupsd/apcupsd.conf
117118

118119
RUN <<EORUN

mybox/files/99-udp-buffers.conf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Increase UDP buffer sizes for QUIC performance
2+
# See: https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes
3+
net.core.rmem_max=7500000
4+
net.core.wmem_max=7500000

0 commit comments

Comments
 (0)