Compare commits
No commits in common. "c7a6eb10de02f4ea27d27a28fa2b3792f499ea05" and "d1fffe1c994113c1cfa1acdf3599d8ebbdc48c90" have entirely different histories.
c7a6eb10de
...
d1fffe1c99
@ -10,10 +10,8 @@
|
|||||||
./net-dsl.nix
|
./net-dsl.nix
|
||||||
./net-gastnetz.nix
|
./net-gastnetz.nix
|
||||||
./net-heimnetz.nix
|
./net-heimnetz.nix
|
||||||
./net-iot.nix
|
|
||||||
./net-lte.nix
|
./net-lte.nix
|
||||||
./net-voip.nix
|
./net-voip.nix
|
||||||
./ntp.nix
|
|
||||||
./ppp.nix
|
./ppp.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,76 +0,0 @@
|
|||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
|
|
||||||
networking.vlans."enp1s0.205" = {
|
|
||||||
id = 205;
|
|
||||||
interface = "enp1s0";
|
|
||||||
};
|
|
||||||
networking.bridges."net-iot".interfaces = [
|
|
||||||
"enp1s0.205"
|
|
||||||
];
|
|
||||||
networking.interfaces."net-iot".ipv6.addresses = [
|
|
||||||
{ address = "fe80::1"; prefixLength = 64; }
|
|
||||||
{ address = "fd00:152:152:205::1"; prefixLength = 64; }
|
|
||||||
];
|
|
||||||
networking.interfaces."net-iot".ipv4.addresses = [
|
|
||||||
{ address = "10.152.205.1"; prefixLength = 24; }
|
|
||||||
];
|
|
||||||
|
|
||||||
# Enable NTP
|
|
||||||
networking.firewall.interfaces."net-iot".allowedUDPPorts = [ 123 ];
|
|
||||||
|
|
||||||
services.radvd.config = ''
|
|
||||||
interface net-iot {
|
|
||||||
AdvSendAdvert on;
|
|
||||||
prefix fd00:152:152:205::/64 {};
|
|
||||||
RDNSS fd00:152:152::1 {};
|
|
||||||
DNSSL iot.clerie.de {};
|
|
||||||
};
|
|
||||||
'';
|
|
||||||
|
|
||||||
services.kea.dhcp4 = {
|
|
||||||
settings = {
|
|
||||||
interfaces-config = {
|
|
||||||
interfaces = [ "net-iot" ];
|
|
||||||
};
|
|
||||||
subnet4 = [
|
|
||||||
{
|
|
||||||
id = 205;
|
|
||||||
subnet = "10.152.205.0/24";
|
|
||||||
pools = [
|
|
||||||
{
|
|
||||||
pool = "10.152.205.100 - 10.152.205.240";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
option-data = [
|
|
||||||
{
|
|
||||||
name = "routers";
|
|
||||||
data = "10.152.205.1";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "domain-name-servers";
|
|
||||||
data = "10.152.0.1";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "domain-name";
|
|
||||||
data = "iot.clerie.de";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "time-servers";
|
|
||||||
data = "10.152.0.1";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
clerie.firewall.extraForwardFilterCommands = ''
|
|
||||||
# Allow access from Heimnetz to IOT devices
|
|
||||||
ip46tables -A forward-filter -i net-heimnetz -o net-iot -j ACCEPT
|
|
||||||
ip46tables -A forward-filter -i net-iot -j DROP
|
|
||||||
ip46tables -A forward-filter -o net-iot -j DROP
|
|
||||||
'';
|
|
||||||
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
|
|
||||||
services.chrony = {
|
|
||||||
enable = true;
|
|
||||||
extraConfig = ''
|
|
||||||
# Enable NTP server mode
|
|
||||||
allow
|
|
||||||
bindaddress fd00:152:152::1
|
|
||||||
bindaddress 10.152.0.1
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user