forked from go-routeros/routeros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
45 lines (37 loc) · 923 Bytes
/
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
package main
import (
"flag"
"fmt"
"log"
"strings"
"time"
"gopkg.in/routeros.v2"
)
var (
address = flag.String("address", "192.168.0.1:8728", "Address")
username = flag.String("username", "admin", "Username")
password = flag.String("password", "admin", "Password")
properties = flag.String("properties", "name,rx-byte,tx-byte,rx-packet,tx-packet", "Properties")
interval = flag.Duration("interval", 1*time.Second, "Interval")
)
func main() {
flag.Parse()
c, err := routeros.Dial(*address, *username, *password)
if err != nil {
log.Fatal(err)
}
for {
reply, err := c.Run("/interface/print", "?disabled=false", "?running=true", "=.proplist="+*properties)
if err != nil {
log.Fatal(err)
}
for _, re := range reply.Re {
for _, p := range strings.Split(*properties, ",") {
fmt.Print(re.Map[p], "\t")
}
fmt.Print("\n")
}
fmt.Print("\n")
time.Sleep(*interval)
}
}