1
0
Fork 0
nixfiles/configuration/dn42/default.nix

23 lines
478 B
Nix
Raw Permalink Normal View History

2020-12-07 18:27:38 +01:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
wireguard-tools
];
boot.kernel.sysctl = {
"net.ipv4.ip_forward" = true;
"net.ipv6.conf.all.forwarding" = true;
};
2021-01-23 13:24:16 +01:00
networking.firewall.checkReversePath = false;
# Open Firewall for BGP
networking.firewall.allowedTCPPorts = [ 179 ];
# Open Fireall for OSPF
networking.firewall.extraCommands = ''
ip6tables -A INPUT -p ospfigp -j ACCEPT
iptables -A INPUT -p ospfigp -j ACCEPT
'';
2020-12-07 18:27:38 +01:00
}