-
Notifications
You must be signed in to change notification settings - Fork 1
/
symbols.go
70 lines (52 loc) · 1.32 KB
/
symbols.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 gobirdc
//
// INFORMATIONAL
//
// Status
const SHOW_STATUS = "show status"
// Memory
const SHOW_MEMORY = "show memory"
// Protocols
const SHOW_PROTOCOLS = "show protocols"
// Interfaces
const SHOW_INTERFACES = "show interfaces"
// Route
const SHOW_ROUTE = "show route"
// Symbols
const SHOW_SYMBOLS = "show symbols"
// BFD
const SHOW_BFD_SESSIONS = "show bfd sessions"
// Babel
const SHOW_BABEL_INTERFACES = "show babel interfaces"
const SHOW_BABEL_NEIGHBORS = "show babel neighbors"
const SHOW_BABEL_ENTRIES = "show babel entries"
const SHOW_BABEL_ROUTES = "show babel routes"
// OSPF
const SHOW_OSPF = "show ospf"
// RIP
const SHOW_RIP_INTERFACES = "show rip interfaces"
const SHOW_RIP_NEIGHBORS = "show rip neighbors"
// STATIC
const SHOW_STATIC = "show static"
//
// PROTOCOL CONTROL
//
const DISABLE_PROTOCOL = "disable"
const ENABLE_PROTOCOL = "enable"
const RESTART_PROTOCOL = "restart"
const RELOAD_PROTOCOL = "reload"
//
// CONFIGURATION
//
const CONFIGURE = "configure"
const CONFIGURE_SOFT = "configure soft"
const CONFIGURE_TIMEOUT = "configure timeout"
const CONFIGURE_CONFIRM = "configure confirm"
const CONFIGURE_UNDO = "configure undo"
const CONFIGURE_STATUS = "configure status"
const CONFIGURE_CHECK = "configure check"
//
// DAEMON CONTROL
//
const DOWN = "down"
const GRACEFUL_RESTART = "graceful restart"