Make AirPlay 2 work for Shairport Sync on Audio host

- use nqptp
- use Shairport Sync and nqptp versions, which work
- disable IPv6, since Shairport Sync doesn't work with it for some
  reason
- configure firewall for AirPlay 2
- use correct subnet
This commit is contained in:
June 2023-10-15 21:44:25 +02:00
commit c72b30aa6a
3 changed files with 98 additions and 19 deletions

View file

@ -1,19 +1,21 @@
{ config, pkgs, ... }:
{
networking.interfaces.net0 = {
ipv4.addresses = [
{
address = "10.31.210.10";
prefixLength = 25;
}
];
ipv6.addresses = [
{
address = "2a07:c480:0:1d2:0000:0000:1000:000a";
prefixLength = 64;
}
networking = {
interfaces.net0 = {
ipv4.addresses = [
{
address = "10.31.210.10";
prefixLength = 23;
}
];
};
defaultGateway = "10.31.210.1";
nameservers = [
"10.31.210.1"
];
# Disable IPv6, since Shairport-Sync doesn't work with IPv6. Unclear why.
enableIPv6 = false;
};
systemd.network.links."10-net0" = {
matchConfig.MACAddress = "1E:EF:2D:92:81:DA";