Add connection sharing capability
This commit is contained in:
parent
56094f345f
commit
db244e2927
1 changed files with 3 additions and 1 deletions
|
@ -209,7 +209,8 @@ in
|
|||
networking.firewall = {
|
||||
enable = true;
|
||||
allowedTCPPorts = [ 9003 ];
|
||||
allowedUDPPorts = [ 51820 ];
|
||||
# 53/67 temporarily allowed for connection sharing/dhcp
|
||||
allowedUDPPorts = [ 53 67 51820 ];
|
||||
# if packets are still dropped, they will show up in dmesg
|
||||
logReversePathDrops = true;
|
||||
checkReversePath = "loose";
|
||||
|
@ -235,6 +236,7 @@ in
|
|||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
dnsmasq # temporarily allowed for connection sharing
|
||||
ansible # automation/software-defined-configuration tool
|
||||
binutils # gnu bin utils
|
||||
# conda # python environment management
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue