Move Pi-hole backup node from Serenity to NOMAD

This commit is contained in:
Fizzlepoof
2026-05-15 15:37:35 +00:00
parent 66c97ae6b5
commit 6278191614
13 changed files with 321 additions and 20 deletions

View File

@@ -0,0 +1,32 @@
global_defs {
router_id pihole_backup
}
vrrp_script chk_pihole_web {
script "grep -qi ':22FA' /proc/net/tcp /proc/net/tcp6"
interval 2
fall 2
rise 2
}
vrrp_instance VI_DNS {
state BACKUP
interface br0
virtual_router_id 53
priority 90
advert_int 1
nopreempt
authentication {
auth_type PASS
auth_pass CHANGE01
}
virtual_ipaddress {
10.5.1.53/24
}
track_script {
chk_pihole_web
}
}