Riorganizzazione struttura repository: separazione servizi e script

This commit is contained in:
2025-11-29 23:37:41 +01:00
parent c669ef03b6
commit 5a4ad1f6ce
8 changed files with 370 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
vrrp_instance VI_1 {
state MASTER
interface eth0
virtual_router_id 51
priority 101 # 101 = Priorità più alta (Master)
advert_int 1
authentication {
auth_type PASS
auth_pass @Dedelove1
}
virtual_ipaddress {
192.168.128.85 # Il nostro VIP
}
}

View File

@@ -0,0 +1,14 @@
vrrp_instance VI_1 {
state BACKUP
interface eth0
virtual_router_id 51
priority 100 # 100 = Priorità più bassa (Backup)
advert_int 1
authentication {
auth_type PASS
auth_pass @Dedelove1
}
virtual_ipaddress {
192.168.128.85
}
}