networking: add wireguard hosts to /etc/hosts
Also re-enable DNSSEC, it's reported fixed in systemd-resolved
This commit is contained in:
parent
afca75441c
commit
5f6564ef5b
|
@ -78,6 +78,7 @@
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
"--network=drone-net"
|
"--network=drone-net"
|
||||||
"--pull=always"
|
"--pull=always"
|
||||||
|
"--add-host=nachtigall.pub.solar:10.7.6.1"
|
||||||
];
|
];
|
||||||
environment = {
|
environment = {
|
||||||
DRONE_GITEA_SERVER = "https://git.pub.solar";
|
DRONE_GITEA_SERVER = "https://git.pub.solar";
|
||||||
|
@ -101,6 +102,7 @@
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
"--network=drone-net"
|
"--network=drone-net"
|
||||||
"--pull=always"
|
"--pull=always"
|
||||||
|
"--add-host=nachtigall.pub.solar:10.7.6.1"
|
||||||
];
|
];
|
||||||
environment = {
|
environment = {
|
||||||
DRONE_RPC_HOST = "ci.pub.solar";
|
DRONE_RPC_HOST = "ci.pub.solar";
|
||||||
|
|
|
@ -2,6 +2,11 @@
|
||||||
# Don't expose SSH via public interfaces
|
# Don't expose SSH via public interfaces
|
||||||
networking.firewall.interfaces.wg-ssh.allowedTCPPorts = [ 22 ];
|
networking.firewall.interfaces.wg-ssh.allowedTCPPorts = [ 22 ];
|
||||||
|
|
||||||
|
networking.hosts = {
|
||||||
|
"10.7.6.1" = ["nachtigall.pub.solar"];
|
||||||
|
"10.7.6.2" = ["flora-6.pub.solar"];
|
||||||
|
};
|
||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = lib.mkDefault false;
|
openFirewall = lib.mkDefault false;
|
||||||
|
@ -31,14 +36,11 @@
|
||||||
|
|
||||||
services.resolved = {
|
services.resolved = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# DNSSEC=false because of random SERVFAIL responses with Greenbaum DNS
|
|
||||||
# when using allow-downgrade, see https://github.com/systemd/systemd/issues/10579
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
DNS=193.110.81.0#dns0.eu 185.253.5.0#dns0.eu 2a0f:fc80::#dns0.eu 2a0f:fc81::#dns0.eu 9.9.9.9#dns.quad9.net 149.112.112.112#dns.quad9.net 2620:fe::fe#dns.quad9.net 2620:fe::9#dns.quad9.net
|
DNS=193.110.81.0#dns0.eu 185.253.5.0#dns0.eu 2a0f:fc80::#dns0.eu 2a0f:fc81::#dns0.eu 9.9.9.9#dns.quad9.net 149.112.112.112#dns.quad9.net 2620:fe::fe#dns.quad9.net 2620:fe::9#dns.quad9.net
|
||||||
FallbackDNS=5.1.66.255#dot.ffmuc.net 185.150.99.255#dot.ffmuc.net 2001:678:e68:f000::#dot.ffmuc.net 2001:678:ed0:f000::#dot.ffmuc.net
|
FallbackDNS=5.1.66.255#dot.ffmuc.net 185.150.99.255#dot.ffmuc.net 2001:678:e68:f000::#dot.ffmuc.net 2001:678:ed0:f000::#dot.ffmuc.net
|
||||||
Domains=~.
|
Domains=~.
|
||||||
DNSOverTLS=yes
|
DNSOverTLS=yes
|
||||||
DNSSEC=false
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue