1
0
Fork 0

Add router config

This commit is contained in:
clerie 2020-12-15 18:15:50 +01:00
parent f39aa5037b
commit 594d842857
1 changed files with 12 additions and 1 deletions

View File

@ -5,5 +5,16 @@
wireguard-tools
];
# services.bird2.enable = true;
boot.kernel.sysctl = {
"net.ipv4.ip_forward" = true;
"net.ipv6.conf.all.forwarding" = true;
};
# 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
'';
}