mediaserver: disable IPv6 to fix Jellyfin TMDb metadata fetches

No IPv6 upstream exists, but glibc still tried AAAA records first,
causing Jellyfin's TMDb client to get garbled responses.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
rope 2026-05-20 13:44:17 +01:00
parent 066fd11449
commit 53c3fedf52

View file

@ -69,6 +69,7 @@ in
"net.ipv4.ip_forward" = 1;
"net.ipv4.conf.all.rp_filter" = 1;
"net.ipv6.conf.all.forwarding" = 0; # no IPv6 upstream yet
"net.ipv6.conf.all.disable_ipv6" = 1;
};
# --- Interface configuration ---