-
Notifications
You must be signed in to change notification settings - Fork 51
/
main.go
70 lines (56 loc) · 1.47 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package main
import (
"flag"
"log/slog"
"os"
"strings"
"github.com/go-routeros/routeros/v3"
)
var (
debug = flag.Bool("debug", false, "debug log level mode")
command = flag.String("command", "/system/resource/print", "RouterOS command")
address = flag.String("address", "127.0.0.1:8728", "RouterOS address and port")
username = flag.String("username", "admin", "User name")
password = flag.String("password", "admin", "Password")
async = flag.Bool("async", false, "Use async code")
useTLS = flag.Bool("tls", false, "Use TLS")
)
func dial() (*routeros.Client, error) {
if *useTLS {
return routeros.DialTLS(*address, *username, *password, nil)
}
return routeros.Dial(*address, *username, *password)
}
func fatal(log *slog.Logger, message string, err error) {
log.Error(message, slog.Any("error", err))
os.Exit(2)
}
func main() {
var err error
if err = flag.CommandLine.Parse(os.Args[1:]); err != nil {
panic(err)
}
logLevel := slog.LevelInfo
if debug != nil && *debug {
logLevel = slog.LevelDebug
}
handler := slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true,
Level: logLevel,
})
log := slog.New(handler)
c, err := dial()
if err != nil {
fatal(log, "could not connect", err)
}
defer c.Close()
c.SetLogHandler(handler)
if *async {
c.Async()
}
r, err := c.RunArgs(strings.Split(*command, " "))
if err != nil {
fatal(log, "could not run args", err)
}
log.Info("received results", slog.Any("results", r))
}