blob: 4f22e310fdc42e9401ca0b7ba08641f176c9fe28 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{ ... }:
let
wanInterface = "enp9s0";
lanInterfaces = [
"enp1s0f0"
"enp1s0f1"
];
prefix = 24;
subnet = "192.168.1.0";
host = "192.168.1.1";
leaseRangeStart = "192.168.1.100";
leaseRangeEnd = "192.168.1.254";
nameServer = [
"10.0.0.2"
"10.0.0.3"
];
in
{
networking = {
bridges."lan".interfaces = lanInterfaces;
nat = {
enable = true;
externalInterface = wanInterface;
internalInterfaces = [ "lan" ];
};
interfaces.lan = {
ipv4.addresses = [
{
address = host;
prefixLength = prefix;
}
];
};
firewall = {
allowedUDPPorts = [
53
67
];
allowedTCPPorts = [ 53 ];
extraCommands = "iptables -t nat -I POSTROUTING 1 -s ${subnet}/${toString prefix} -o ${wanInterface} -j MASQUERADE";
};
};
services.dnsmasq = {
enable = true;
settings = {
server = nameServer;
dhcp-range = [ "${leaseRangeStart},${leaseRangeEnd}" ];
interface = [ "lan" ];
};
};
}
|