- VRRP protocol implementation (RFC 3768/5798) - Virtual IP management (add/remove VIPs) - State machine (INIT/BACKUP/MASTER/FAULT) - Priority-based master election - Gratuitous ARP for network updates - Health checking (TCP, HTTP, ICMP, Script) - Configuration hot-reload (SIGHUP) 🤖 Generated with [Qoder][https://qoder.com]
10 lines
102 B
Go
10 lines
102 B
Go
package main
|
|
|
|
import (
|
|
"github.com/loveuer/go-alived/internal/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|