wip: basic CRUD for peer (#426)

This commit is contained in:
Christoph Haas
2025-06-06 22:21:47 +02:00
parent 0724505ea1
commit f086ba2605
6 changed files with 188 additions and 22 deletions

View File

@@ -16,10 +16,13 @@ type MikrotikInterfaceExtras struct {
}
type MikrotikPeerExtras struct {
Name string
Comment string
IsResponder bool
ClientEndpoint string
ClientAddress string
Disabled bool
Id string // internal mikrotik ID
Name string
Comment string
IsResponder bool
Disabled bool
ClientEndpoint string
ClientAddress string
ClientDns string
ClientKeepalive int
}