Files
openlan/pkg/schema/network.go
Daniel Ding 49ecf383f4
Some checks failed
Coverage CI / build (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled
Ubuntu CI / build (push) Has been cancelled
fea: support disable snat.
2024-10-20 22:40:26 +08:00

43 lines
1001 B
Go
Executable File

package schema
type Lease struct {
Address string `json:"address"`
Alias string `json:"alias"`
Client string `json:"client"`
Type string `json:"type"`
Network string `json:"network"`
}
type PrefixRoute struct {
Prefix string `json:"prefix"`
NextHop string `json:"nexthop"`
FindHop string `json:"findhop"`
Metric int `json:"metric"`
MultiPath []MultiPath `json:"multipath,omitempty"`
}
type MultiPath struct {
NextHop string `json:"nexthop"`
Weight int `json:"weight"`
}
type Subnet struct {
IfAddr string `json:"address,omitempty"`
IpStart string `json:"startAt,omitempty"`
IpEnd string `json:"endAt,omitempty"`
Netmask string `json:"netmask"`
}
type Network struct {
Name string `json:"name"`
Config interface{} `json:"config"`
}
type FindHop struct {
Name string `json:"name"`
Mode string `json:"mode"`
Check string `json:"check"`
NextHop string `json:"nexthop"`
Available string `json:"available"`
}