Skip to content

Commit

Permalink
feat: enable upnp for routers
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony Rabbito <[email protected]>
  • Loading branch information
anthr76 committed Oct 11, 2024
1 parent 963a00a commit a37b7e9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions nixos/personalities/server/router/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,18 @@
userServices = true;
};
};
services.miniupnpd = {
enable = true;
upnp = true;
natpmp = true;
externalInterface = "wan";
internalIPs = [
"vlan10"
"vlan100"
"vlan101"
"vlan8"
"vlan99"
"lan"
];
};
}

0 comments on commit a37b7e9

Please sign in to comment.