mirror of
https://github.com/luscis/openlan.git
synced 2025-09-26 20:41:29 +08:00
55 lines
1.2 KiB
Go
Executable File
55 lines
1.2 KiB
Go
Executable File
package v5
|
|
|
|
import (
|
|
"github.com/luscis/openlan/cmd/api"
|
|
"github.com/luscis/openlan/pkg/schema"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
type VxLAN struct {
|
|
Cmd
|
|
}
|
|
|
|
func (u VxLAN) Url(prefix, name string) string {
|
|
if name == "" {
|
|
return prefix + "/api/vxlan"
|
|
} else {
|
|
return prefix + "/api/vxlan/" + name
|
|
}
|
|
}
|
|
|
|
func (u VxLAN) Tmpl() string {
|
|
return `# total {{ len . }}
|
|
{{ps -16 "name"}} {{ps -15 "bridge"}} {{ ps -16 "address" }} {{ps -16 "vni"}} {{ps -16 "local"}} {{ps -22 "remote"}}
|
|
{{- range . }}
|
|
{{ps -16 .UUID}} {{pt .AliveTime | ps -8}} {{ ps -8 .Device}} {{ps -16 .Alias}} {{ps -8 .User}} {{ps -22 .Remote}}
|
|
{{- end }}
|
|
`
|
|
}
|
|
|
|
func (u VxLAN) List(c *cli.Context) error {
|
|
url := u.Url(c.String("url"), "")
|
|
clt := u.NewHttp(c.String("token"))
|
|
var items []schema.VxLAN
|
|
if err := clt.GetJSON(url, &items); err != nil {
|
|
return err
|
|
}
|
|
return u.Out(items, c.String("format"), u.Tmpl())
|
|
}
|
|
|
|
func (u VxLAN) Commands(app *api.App) {
|
|
app.Command(&cli.Command{
|
|
Name: "vxlan",
|
|
Aliases: []string{"vx"},
|
|
Usage: "VxLAN configuration",
|
|
Subcommands: []*cli.Command{
|
|
{
|
|
Name: "list",
|
|
Usage: "Display all vxlan",
|
|
Aliases: []string{"ls"},
|
|
Action: u.List,
|
|
},
|
|
},
|
|
})
|
|
}
|