-
Notifications
You must be signed in to change notification settings - Fork 9
/
types.go
513 lines (445 loc) · 15.9 KB
/
types.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
package mikrotik
import (
"fmt"
"net"
"time"
)
// ====================================
//
// Entities
//
// ====================================
type Ping struct {
mikrotik *Mikrotik
Address string
Count int
Interface string
Interval int
RoutingTable string
Size int
SrcAddress string
TTL int `mikrotik:"ttl"`
}
type PingResponse struct {
Host string
Status string
Sent int
Received int
PacketLoss int
TTL int `mikrotik:"ttl"`
Seq int
Size int
Time time.Duration
MinRTT time.Duration `mikrotik:"min-rtt"`
AvgRTT time.Duration `mikrotik:"avg-rtt"`
MaxRTT time.Duration `mikrotik:"max-rtt"`
}
// IPAddress /ip/address
type IPAddress struct {
ID string `mikrotik:".id"`
Address string
Network string
Interface string
ActualInterface string
Invalid bool
Dynamic bool
Disabled bool
}
func (ipa IPAddress) String() string {
return fmt.Sprintf("%s dev %s", ipa.Address, ipa.Interface)
}
// Route /ip/route
type Route struct {
ID string `mikrotik:".id"`
DstAddress string
PrefSrc string
Gateway string
GatewayStatus string
Distance int
Scope int
TargetScope int
Active bool
Dynamic bool
Static bool
Disabled bool
Comment string
}
func (r Route) String() string {
return fmt.Sprintf("%s %s %s %d %s", r.DstAddress, r.PrefSrc, r.Gateway, r.Distance, r.Comment)
}
// NATRule /ip/firewall/nat
type NATRule struct {
ID string `mikrotik:".id"`
Chain string
Action string
Protocol string
SrcAddress net.IP
DstAddress net.IP
ToAddresses string
ToPorts string
InInterface string
OutInterface string
SrcPort int
DstPort int
Port int
PacketMark string
ConnectionMark string
RoutingMark string
RoutingTable string
ConnectionType string
Log bool
LogPrefix string
Bytes int
Packets int
Invalid bool
Dynamic bool
Disabled bool
Comment string
}
const (
ChainSrcNAT = "srcnat"
ChainDstNAT = "dstnat"
)
const (
FirewallActionAccept = "accept"
FirewallActionAddDstToAddressList = "add-dst-to-address-list"
FirewallActionDstNAT = "dst-nat"
FirewallActionJump = "jump"
FirewallActionLog = "log"
FirewallActionMasquerade = "masquerade"
FirewallActionNetmap = "netmap"
FirewallActionPassthrough = "passthrough"
FirewallActionRedirect = "redirect"
FirewallActionReturn = "return"
FirewallActionSame = "same"
FirewallActionSrcNAT = "src-nat"
)
// MangleRule /ip/firewall/mangle
type MangleRule struct {
ID string `mikrotik:".id"`
Action string
Chain string
NewRoutingMark string
NewConnectionMark string
NewPacketMark string
ConnectionMark string
PacketMark string
Passthrough bool
ConnectionState string
DstAddressType string
InInterface string
Nth string
Log bool
LogPrefix string
Bytes int
Packets int
Invalid bool
Dynamic bool
Disabled bool
Comment string
}
type SystemNTPClient struct {
Enabled string
ServerDNSNames string `mikrotik:"server-dns-names"`
Mode string
}
type Interface struct {
ID string `mikrotik:".id"`
Name string
DefaultName string
Type string
MTU string `mikrotik:"mtu"`
ActualMTU string `mikrotik:"actual-mtu"`
L2MTU string `mikrotik:"l2mtu"`
MaxL2MTU string `mikrotik:"max-l2mtu"`
MACAddress string `mikrotik:"mac-address"`
FastPath bool
LinkDowns int
RxByte int
TxByte int
RxPacket int
TxPacket int
RxDrop int
TxDrop int
RxError int
TxError int
FpRxByte int
FpTxByte int
FpRxPacket int
FpTxPacket int
Running bool
Slave bool
Disabled bool
Comment string
}
type WirelessInterface struct {
ID string `mikrotik:".id"`
DefaultName string `mikrotik:"default-name"`
Name string `mikrotik:"name"`
Mtu int `mikrotik:"mtu"`
L2mtu int `mikrotik:"l2mtu"`
MacCddress string `mikrotik:"mac-address"`
Arp string `mikrotik:"arp"`
ArpTimeout string `mikrotik:"arp-timeout"`
DisableRunningCheck string `mikrotik:"disable-running-check"`
InterfaceType string `mikrotik:"interface-type"`
RadioName string `mikrotik:"radio-name"`
Mode string `mikrotik:"mode"`
SSID string `mikrotik:"ssid"`
Area string `mikrotik:"area"`
FrequencyMode string `mikrotik:"frequency-mode"`
Country string `mikrotik:"country"`
AntennaGain int `mikrotik:"antenna-gain"`
Frequency int `mikrotik:"frequency"`
Band string `mikrotik:"band"`
ChannelWidth string `mikrotik:"channel-width"`
ScanList string `mikrotik:"scan-list"`
WirelessProtocol string `mikrotik:"wireless-protocol"`
RateSet string `mikrotik:"rate-set"`
SupportedRatesB string `mikrotik:"supported-rates-b"`
SupportedRatesAG string `mikrotik:"supported-rates-a/g"`
BasicRatesB string `mikrotik:"basic-rates-b"`
BasicRatesAG string `mikrotik:"basic-rates-a/g"`
MaxStationCount int `mikrotik:"max-station-count"`
Distance string `mikrotik:"distance"`
TxPowerMode string `mikrotik:"tx-power-mode"`
NoiseFloorThreshold string `mikrotik:"noise-floor-threshold"`
Nv2NoiseFloorOffset string `mikrotik:"nv2-noise-floor-offset"`
VlanMode string `mikrotik:"vlan-mode"`
VlanID string `mikrotik:"vlan-id"`
WDSmode string `mikrotik:"wds-mode"`
WDSdefaultBridge string `mikrotik:"wds-default-bridge"`
WDSdefaultCost int `mikrotik:"wds-default-cost"`
WDScostRange string `mikrotik:"wds-cost-range"`
WDSignoreSSID string `mikrotik:"wds-ignore-ssid"`
UpdateStatsInterval string `mikrotik:"update-stats-interval"`
BridgeMode string `mikrotik:"bridge-mode"`
DefaultAuthentication bool `mikrotik:"default-authentication"`
DefaultForwarding bool `mikrotik:"default-forwarding"`
DefaultAPTxLimit int `mikrotik:"default-ap-tx-limit"`
DefaultClientTxLimit int `mikrotik:"default-client-tx-limit"`
WMMsupport string `mikrotik:"wmm-support"`
HideSSID bool `mikrotik:"hide-ssid"`
SecurityProfile string `mikrotik:"security-profile"`
InterworkingProfile string `mikrotik:"interworking-profile"`
WPSmode string `mikrotik:"wps-mode"`
StationRoaming string `mikrotik:"station-roaming"`
DisconnectTimeout string `mikrotik:"disconnect-timeout"`
OnFailRetryTime string `mikrotik:"on-fail-retry-time"`
PreambleMode string `mikrotik:"preamble-mode"`
Compression string `mikrotik:"compression"`
AllowSharedkey string `mikrotik:"allow-sharedkey"`
StationBridgeCloneMac string `mikrotik:"station-bridge-clone-mac"`
AmpduPriorities string `mikrotik:"ampdu-priorities"`
GuardInterval string `mikrotik:"guard-interval"`
HtSupportedMCS string `mikrotik:"ht-supported-mcs"`
HtBasicMCS string `mikrotik:"ht-basic-mcs"`
TxChains string `mikrotik:"tx-chains"`
RxChains string `mikrotik:"rx-chains"`
AmsduLimit int `mikrotik:"amsdu-limit"`
AmsduThreshold int `mikrotik:"amsdu-threshold"`
TdmaPeriodSize int `mikrotik:"tdma-period-size"`
Nv2QueueCount int `mikrotik:"nv2-queue-count"`
Nv2QOS string `mikrotik:"nv2-qos"`
Nv2CellRadius int `mikrotik:"nv2-cell-radius"`
Nv2Security string `mikrotik:"nv2-security"`
Nv2PresharedKey string `mikrotik:"nv2-preshared-key"`
HwRetries string `mikrotik:"hw-retries"`
FrameLifetime string `mikrotik:"frame-lifetime"`
AdaptiveNoiseImmunity string `mikrotik:"adaptive-noise-immunity"`
HwFragmentationThreshold string `mikrotik:"hw-fragmentation-threshold"`
HwProtectionMode string `mikrotik:"hw-protection-mode"`
HwProtectionThreshold string `mikrotik:"hw-protection-threshold"`
FrequencyOffset string `mikrotik:"frequency-offset"`
RateSelection string `mikrotik:"rate-selection"`
MulticastHelper string `mikrotik:"multicast-helper"`
MulticastBuffering string `mikrotik:"multicast-buffering"`
KeepaliveFrames string `mikrotik:"keepalive-frames"`
Running bool `mikrotik:"running"`
Disabled bool `mikrotik:"disabled"`
}
type WirelessAP struct {
Address string
SSID string `mikrotik:"ssid"`
Channel string
SIG int `mikrotik:"sig"`
NF int `mikrotik:"nf"`
SNR int `mikrotik:"snr"`
RadioName string `mikrotik:"radio-name"`
RouterOSVersion string `mikrotik:"routeros-version"`
Section int
}
type WirelessSecurityProfile struct {
ID string `mikrotik:".id"`
Name string
Mode string
Default bool
AuthenticationTypes string `mikrotik:"authentication-types"`
UnicastCiphers string `mikrotik:"unicast-ciphers"`
GroupCiphers string `mikrotik:"group-ciphers"`
WpaPreSharedKey string `mikrotik:"wpa-pre-shared-key"`
Wpa2PreSharedKey string `mikrotik:"wpa2-pre-shared-key"`
SupplicantIdentity string `mikrotik:"supplicant-identity"`
EAPmethods string `mikrotik:"eap-methods"`
TLSmode string `mikrotik:"tls-mode"`
TLScertificate string `mikrotik:"tls-certificate"`
Mschapv2username string `mikrotik:"mschapv2-username"`
Mschapv2password string `mikrotik:"mschapv2-password"`
RadiusMACauthentication string `mikrotik:"radius-mac-authentication"`
RadiusMACaccounting string `mikrotik:"radius-mac-accounting"`
RadiusEAPaccounting string `mikrotik:"radius-eap-accounting"`
RadiusMACformat string `mikrotik:"radius-mac-format"`
RadiusMACmode string `mikrotik:"radius-mac-mode"`
RadiusMACcaching string `mikrotik:"radius-mac-caching"`
InterimUpdate string `mikrotik:"interim-update"`
GroupKeyUpdate string `mikrotik:"group-key-update"`
ManagementProtection string `mikrotik:"management-protection"`
ManagementProtectionKey string `mikrotik:"management-protection-key"`
}
const (
WPA_PSK = "wpa-psk"
WPA2_PSK = "wpa2-psk"
WPA_EAP = "wpa-eap"
WPA2_EAP = "wpa2-eap"
)
const (
WirelessSecurityMode_None = "none"
WirelessSecurityMode_DynamicKeys = "dynamic-keys"
WirelessSecurityMode_StaticKeysRequired = "static-keys-required"
WirelessSecurityMode_StaticKeysOptional = "static-keys-optional"
)
type SSTPserver struct {
ID string `mikrotik:".id"`
Name string
User string
Running bool
Disabled bool
}
type SSTPclient struct {
ID string `mikrotik:".id"`
Name string
ConnectTo string `mikrotik:"connect-to"`
Certificate string
VerifyServerCertificate string `mikrotik:"verify-server-certificate"`
VerifyServerAddressFromCertificate string `mikrotik:"verify-server-address-from-certificate"`
User string
Password string
Profile string
AddDefaultRoute string `mikrotik:"add-default-route"`
DefaultRouteDistance int `mikrotik:"default-route-distance"`
DialOnDemand bool
Running bool
Disabled bool
}
type PPPprofile struct {
ID string `mikrotik:".id"`
Name string
UseMPLS string `mikrotik:"use-mpls"`
UseCompression string `mikrotik:"use-compression"`
UseEncryption string `mikrotik:"use-encryption"`
OnlyOne string `mikrotik:"only-one"`
ChangeTCPMSS string `mikrotik:"change-tcp-mss"`
UseUPNP string `mikrotik:"use-upnp"`
AddressList string `mikrotik:"address-list"`
OnUp string `mikrotik:"on-up"`
OnDown string `mikrotik:"on-down"`
Default bool `mikrotik:"default"`
}
type Secret struct {
ID string `mikrotik:".id"`
Name string
Password string
Service string
CallerID string `mikrotik:"caller-id"`
Profile string
LocalAddress net.IP `mikrotik:"local-address"`
RemoteAddress net.IP `mikrotik:"remote-address"`
Routes string
LimitBytesIn int `mikrotik:"limit-bytes-in"`
LimitBytesOut int `mikrotik:"limit-bytes-out"`
LastLoggedOut string `mikrotik:"last-logged-out,ro"`
Disabled bool
Comment string
}
const (
PPPServiceAny = "any"
PPPServiceAsync = "async"
PPPServiceL2TP = "l2tp"
PPPServiceOVPN = "ovpn"
PPPServicePPPoE = "pppoe"
PPPServicePPTP = "pptp"
PPPServiceSSTP = "sstp"
)
// Routerboard - information from /system/routerboard/print
type Routerboard struct {
Routerboard bool
BoardName string `mikrotik:"board-name"`
Model string
SerialNumber string `mikrotik:"serial-number"`
FirmwareType string `mikrotik:"firmware-type"`
FactoryFirmware string `mikrotik:"factory-firmware"`
CurrentFirmware string `mikrotik:"current-firmware"`
UpgradeFirmware string `mikrotik:"upgrade-firmware"`
}
type LteInfo struct {
// this data was sent without pin
PinStatus string `mikrotik:"pin-status"`
Functionality string
Manufacturer string
Model string
Revision string
IMEI string `mikrotik:"imei"`
// this data was empty withut pin and was sent with correct pin set.
RegistrationStatus string `mikrotik:"registration-status"`
CurrentOperator string `mikrotik:"current-operator"`
Lac string
CurrentCellID string `mikrotik:"current-cellid"`
EnbID string `mikrotik:"enb-id"`
SectorID string `mikrotik:"sector-id"`
PhyCellID string `mikrotik:"phy-cellid"`
AccessTechnology string `mikrotik:"access-technology"`
SessionUptime string `mikrotik:"session-uptime"`
IMSI string `mikrotik:"imsi"`
UICC string `mikrotik:"uicc"`
SubscriberNumber string `mikrotik:"subscriber-number"`
Earfcn string
Rssi string // should be float
Rsrp string // should be float
Rsrq string // should be float
Sinr string // should be float
}
type LtePrint struct {
ID string `mikrotik:".id"`
Name string
Mtu int
MacAddress string `mikrotik:"mac-address"`
Pin string
ApnProfiles string `mikrotik:"apn-profiles"`
AllowRoaming bool `mikrotik:"allow-roaming"`
NetworkMode string `mikrotik:"network-mode"`
Running bool
Disalbed bool
}
// Resource from `/system resource print`
type Resource struct {
Uptime string `mikrotik:"uptime"`
BuildTime string `mikrotik:"build-time"`
FreeMemory int `mikrotik:"free-memory"`
TotalMemory int `mikrotik:"total-memory"`
CPU string `mikrotik:"cpu"`
CPUCount int `mikrotik:"cpu-count"`
CPUFrequency int `mikrotik:"cpu-frequency"` // MHZ
CPULoad int `mikrotik:"cpu-load"` // %
FreeHddSpace int `mikrotik:"free-hdd-space"`
TotalHddSpace int `mikrotik:"total-hdd-space"`
WriteSectSinceReboot int `mikrotik:"write-sect-since-reboot"`
WriteSectTotal int `mikrotik:"write-sect-total"`
BadBlocks string `mikrotik:"bad-blocks"` // %
ArchitectureName string `mikrotik:"architecture-name"`
BoardName string `mikrotik:"board-name"`
Platform string `mikrotik:"platform"`
}
type Ethernet struct {
// TODO: add other fields
PoEOut string `mikrotik:"poe-out"` // auto-on, forced-on, off
}