dns: still some kinks with the dns but its easing out
This commit is contained in:
parent
80f0a6eda7
commit
f63aa7f245
2 changed files with 18 additions and 5 deletions
|
@ -88,6 +88,13 @@ in {
|
||||||
"9.9.9.9"
|
"9.9.9.9"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
cacheNetworks = [
|
||||||
|
# this server itself
|
||||||
|
"127.0.0.0/24"
|
||||||
|
# all of skynet can use this as a resolver
|
||||||
|
"193.1.99.64/26"
|
||||||
|
];
|
||||||
|
|
||||||
zones = {
|
zones = {
|
||||||
/*
|
/*
|
||||||
put any other zones above skynet and link to their files like so:
|
put any other zones above skynet and link to their files like so:
|
||||||
|
|
|
@ -31,11 +31,17 @@
|
||||||
|
|
||||||
# cannot use our own it seems?
|
# cannot use our own it seems?
|
||||||
nameservers = [
|
nameservers = [
|
||||||
# pulled these from eduroam to get up and running
|
# ns2
|
||||||
"10.220.1.10"
|
#"193.1.99.109"
|
||||||
"10.220.1.11"
|
# ns1
|
||||||
"10.150.100.10"
|
#"193.1.99.120"
|
||||||
"10.150.100.11"
|
|
||||||
|
# Cloudflare
|
||||||
|
"1.1.1.1"
|
||||||
|
# Google
|
||||||
|
"8.8.8.8"
|
||||||
|
# Quad9
|
||||||
|
"9.9.9.9"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue