mirror of
https://github.com/luscis/openlan.git
synced 2025-12-24 11:10:54 +08:00
14 lines
295 B
Go
14 lines
295 B
Go
package schema
|
|
|
|
type BgpNeighbor struct {
|
|
Address string `json:"address"`
|
|
RemoteAs int `json:"remoteas"`
|
|
State string `json:"state"`
|
|
}
|
|
|
|
type Bgp struct {
|
|
LocalAs int `json:"localas"`
|
|
RouterId string `json:"routerid"`
|
|
Neighbors []BgpNeighbor `json:"neighbors"`
|
|
}
|