forked from sg3des/mikrotik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
type_ip.go
580 lines (520 loc) · 21.4 KB
/
type_ip.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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
package mikrotik
import (
"fmt"
)
// ====================================
//
// Address
//
// ====================================
// IPAddress is the struct for IP/Address*
type IPAddress struct {
ID string `mikrotik:".id"`
Address string `mikrotik:"address"`
Network string `mikrotik:"network"`
Broadcast string `mikrotik:"broadcast"`
Netmask string `mikrotik:"netmask"`
Interface string `mikrotik:"interface"`
ActualInterface string `mikrotik:"actual-interface"`
Invalid bool `mikrotik:"invalid"`
Dynamic bool `mikrotik:"dynamic"`
Disabled bool `mikrotik:"disabled"`
Comment string `mikrotik:"comment"`
}
// ====================================
//
// Cloud
//
// ====================================
// IPCloud is the struct for IP/Cloud*
type IPCloud struct {
DDNSEnabled bool `mikrotik:"ddns-enabled"`
DDNSUpdateInterval string `mikrotik:"ddns-update-interval"`
DNSName string `mikrotik:"dns-name"`
PublicAddress string `mikrotik:"public-address"`
PublicAddressV6 string `mikrotik:"public-address-ivp6"`
Status string `mikrotik:"status"`
UpdateTime bool `mikrotik:"update-time"`
UseLocalAddress bool `mikrotik:"use-local-address"` // /ip/cloud/advanced
Warning string `mikrotik:"warning"`
}
// ====================================
//
// SSH
//
// ====================================
// IPSSH is the struct for IP/SSH*
type IPSSH struct {
AllowNoneCrypto bool `mikrotik:"allow-none-crypto"`
AlwaysAllowPasswordLogin bool `mikrotik:"always-allow-password-login"`
ForwardingEnabled bool `mikrotik:"forwarding-enabled"`
HostKeySize int `mikrotik:"host-key-size"`
StrongCrypto bool `mikrotik:"strong-crypto"`
}
// ====================================
//
// Service
//
// ====================================
// IPService is the struct for IP/Service*
type IPService struct {
ID string `mikrotik:".id"`
Address string `mikrotik:"address"`
Certificate string `mikrotik:"certificate"`
Disabled bool `mikrotik:"disabled"`
Invalid bool `mikrotik:"invalid"`
Name string `mikrotik:"name"`
Port int `mikrotik:"port"`
}
// ====================================
//
// DHCP
//
// ====================================
// Works both with Client and Server
// IPDHCPOption is the struct for IP/DHCP-*/Option*
type IPDHCPOption struct {
ID string `mikrotik:".id"`
Code string `mikrotik:"code"`
Default string `mikrotik:"default"`
Name string `mikrotik:"name"`
RawValue string `mikrotik:"raw-value"`
Value string `mikrotik:"value"`
}
// IPDHCPOptionSets is the struct for IP/DHCP-*/Option/Sets*
type IPDHCPOptionSets struct {
ID string `mikrotik:".id"`
Name string `mikrotik:"name"`
Options string `mikrotik:"options"`
}
// ====================================
//
// DHCP Client
//
// ====================================
// IPDHCPClient is the struct for IP/DHCP-Client/*
type IPDHCPClient struct {
ID string `mikrotik:".id"`
AddDefaultRoute string `mikrotik:"add-default-route"`
Address string `mikrotik:"address"` // read-only
ClientID string `mikrotik:"client-id"`
Comment string `mikrotik:"comment"`
DefaultRouteDistance int `mikrotik:"default-route-distance"`
DHCPOptions string `mikrotik:"dhcp-options"`
DHCPServer string `mikrotik:"dhcp-server"` // read-only
Disabled bool `mikrotik:"disabled"`
Dynamic bool `mikrotik:"dynamic"`
ExpiresAfter string `mikrotik:"expires-after"` // read-only
Gateway string `mikrotik:"gateway"` // read-only
HostName string `mikrotik:"host-name"`
Interface string `mikrotik:"interface"`
Invalid bool `mikrotik:"invalid"` // read-only
PrimaryDNS string `mikrotik:"primary-dns"` // read-only
PrimaryNTP string `mikrotik:"primary-ntp"` // read-only
SecondaryDNS string `mikrotik:"secondary-dns"` // read-only
SecondaryNTP string `mikrotik:"secondary-ntp"` // read-only
Status string `mikrotik:"status"` // read-only
UsePeerDNS bool `mikrotik:"use-peer-dns"`
UsePeerNTP bool `mikrotik:"use-peer-ntp"`
}
// ====================================
//
// DHCP Server
//
// ====================================
// IPDHCPServer is the struct for IP/DHCP-Server/*
type IPDHCPServer struct {
ID string `mikrotik:".id"`
AddArp bool `mikrotik:"add-arp"`
AddressPool string `mikrotik:"address-pool"`
AllowDualStackQueue bool `mikrotik:"allow-dual-stack-queue"`
AlwaysBroadcast bool `mikrotik:"always-broadcast"`
Authoritative string `mikrotik:"authoritative"`
BootpLeaseTime string `mikrotik:"bootp-lease-time"`
BootpSupport string `mikrotik:"bootp-support"`
ConflictDetection bool `mikrotik:"conflict-detection"`
DelayThreshold string `mikrotik:"delay-threshold"`
DHCPOptionSet string `mikrotik:"dhcp-option-set"`
Disabled bool `mikrotik:"disabled"`
Dynamic bool `mikrotik:"dynamic"`
InsertQueueBefore string `mikrotik:"insert-queue-before"`
Interface string `mikrotik:"interface"`
Invalid bool `mikrotik:"invalid"`
LeaseScript string `mikrotik:"lease-script"`
LeaseTime string `mikrotik:"lease-time"`
Name string `mikrotik:"name"`
ParentQueue string `mikrotik:"parent-queue"`
Relay string `mikrotik:"relay"`
SCRAddress string `mikrotik:"src-address"`
UseFramedAsClassless bool `mikrotik:"use-framed-as-classles"`
UseRadius string `mikrotik:"use-radius"`
}
// IPDHCPServerLease is the struct for IP/DHCP-Server/Lease*
type IPDHCPServerLease struct {
ID string `mikrotik:".id"`
ActiveAddress string `mikrotik:"active-address"`
ActiveClientId string `mikrotik:"active-client-id"`
ActiveMacAddress string `mikrotik:"active-mac-address"`
ActiveServer string `mikrotik:"active-server"`
Address string `mikrotik:"address"`
AddressLists string `mikrotik:"address-lists"`
AlwaysBroadcast bool `mikrotik:"always-broadcast"`
AgentCircuitId string `mikrotik:"agent-circuit-id"`
AgentRemoteId string `mikrotik:"agent-remote-id"`
BlockAccess bool `mikrotik:"block-access"`
Blocked string `mikrotik:"blocked"`
ClientID string `mikrotik:"client-id"`
Comment string `mikrotik:"comment"`
DHCPOption string `mikrotik:"dhcp-option"`
Disabled string `mikrotik:"disabled"`
Dynamic string `mikrotik:"dynamic"`
ExpiresAfter string `mikrotik:"expires-after"`
HostName string `mikrotik:"host-name"`
LastSeen string `mikrotik:"last-seen"`
LeaseTime string `mikrotik:"lease-time"`
MacAddress string `mikrotik:"mac-address"`
Radius string `mikrotik:"radius"`
RateLimit string `mikrotik:"rate-limit"`
Server string `mikrotik:"server"`
SrcMacAddress string `mikrotik:"src-mac-address"`
Status string `mikrotik:"status"`
UseSrcMac string `mikrotik:"use-src-mac"`
}
// IPDHCPServerNetwork is the struct for IP/DHCP-Server/Network*
type IPDHCPServerNetwork struct {
ID string `mikrotik:".id"`
BootFileName string `mikrotik:"boot-file-name"`
Address string `mikrotik:"address"`
CapsManager string `mikrotik:"caps-manager"`
Comment string `mikrotik:"comment"`
DhcpOption string `mikrotik:"dhcp-option"`
DhcpOptionSet string `mikrotik:"dhcp-option-set"`
DNSNone bool `mikrotik:"dns-none"`
DNSServer string `mikrotik:"dns-server"`
Dynamic bool `mikrotik:"dynamic"`
Domain string `mikrotik:"domain"`
Gateway string `mikrotik:"gateway"`
Netmask int `mikrotik:"netmask"`
NextServer string `mikrotik:"next-server"`
NtpServer string `mikrotik:"ntp-server"`
WinsServer string `mikrotik:"wins-server"`
}
// IPDHCPServerConfig is the struct for IP/DHCP-Server/Config*
type IPDHCPServerConfig struct {
StoreLeasesDisk string `mikrotik:"store-leases-disk"`
}
// IPDHCPServerAlert is the struct for IP/DHCP-Server/Alert*
type IPDHCPServerAlert struct {
ID string `mikrotik:".id"`
AlertTimeout string `mikrotik:"alert-timeout"`
Disabled string `mikrotik:"disabled"`
Interface string `mikrotik:"interface"`
Invalid string `mikrotik:"invalid"`
OnAlert string `mikrotik:"on-alert"`
UnknownServer string `mikrotik:"unknown-server"`
ValidServer string `mikrotik:"valid-server"`
}
// ====================================
//
// DNS
//
// ====================================
// IPDNS is the struct for IP/DNS/*
type IPDNS struct {
AllowRemoteRequests bool `mikrotik:"allow-remote-requests"`
CacheMaxTTL string `mikrotik:"cache-max-ttl"`
CacheSize int `mikrotik:"cache-size"`
CacheUsed int `mikrotik:"cache-used"`
DynamicServers string `mikrotik:"dynamic-servers"`
MaxConcurrentQueries int `mikrotik:"max-concurrent-queries"`
MaxConcurrentTCPSessions int `mikrotik:"max-concurrent-tcp-sessions"`
MaxUDPPacketSize int `mikrotik:"max-udp-packet-size"`
QueryServerTimeout string `mikrotik:"query-server-timeout"`
QueryTotalTimeout string `mikrotik:"query-total-timeout"`
Servers string `mikrotik:"servers"`
}
// IPDNSStatic is the struct for IP/DNS/Static*
type IPDNSStatic struct {
ID string `mikrotik:".id"`
Address string `mikrotik:"address"`
Disabled bool `mikrotik:"disabled"`
Dynamic bool `mikrotik:"dynamic"`
Name string `mikrotik:"name"`
Regexp string `mikrotik:"regexp"`
TTL string `mikrotik:"ttl"`
}
// IPDNSCache is the struct for IP/DNS/Cache*
type IPDNSCache struct {
ID string `mikrotik:".id"`
Address string `mikrotik:"address"`
Name string `mikrotik:"name"`
Static bool `mikrotik:"static"`
TTL string `mikrotik:"ttl"`
}
// IPDNSCacheAll is the struct for IP/DNS/Cache/All*
type IPDNSCacheAll struct {
ID string `mikrotik:".id"`
Data string `mikrotik:"data"`
Name string `mikrotik:"name"`
Static string `mikrotik:"static"`
TTL string `mikrotik:"ttl"`
Type string `mikrotik:"type"`
}
// ====================================
//
// Firewall
//
// ====================================
type IPFirewallNATRule struct {
ID string `mikrotik:".id"`
Action string `mikrotik:"action"`
AddressList string `mikrotik:"address-list"`
AddressListTimeout string `mikrotik:"address-list-timeout"`
Bytes string `mikrotik:"bytes"`
Chain string `mikrotik:"chain"`
Comment string `mikrotik:"comment"`
ConnectionBytes string `mikrotik:"connection-bytes"`
ConnectionLimit string `mikrotik:"connection-limit"`
ConnectionMark string `mikrotik:"connection-mark"`
ConnectionRate string `mikrotik:"connection-rate"`
ConnectionType string `mikrotik:"connection-type"`
Content string `mikrotik:"content"`
Disabled bool `mikrotik:"disabled"`
Dscp int `mikrotik:"dscp"`
DstAddress string `mikrotik:"dst-address"`
DstAddressList string `mikrotik:"dst-address-list"`
DstAddressType string `mikrotik:"dst-address-type"`
DstLimit string `mikrotik:"dst-limit"`
DstPort string `mikrotik:"dst-port"`
Dynamic string `mikrotik:"dynamic"`
Fragment string `mikrotik:"fragment"`
Hotspot string `mikrotik:"hotspot"`
IcmpOptions string `mikrotik:"icmp-options"`
InBridgePort string `mikrotik:"in-bridge-port"`
IngressPriority int `mikrotik:"ingress-priority"`
InInterface string `mikrotik:"in-interface"`
Invalid string `mikrotik:"invalid"`
IpsecPolicy string `mikrotik:"ipsec-policy"`
Ipv4Options string `mikrotik:"ipv4-options"`
JumpTarget string `mikrotik:"jump-target "`
Layer7Protocol string `mikrotik:"layer7-protocol"`
Limit string `mikrotik:"limit"`
Log string `mikrotik:"log"`
LogPrefix string `mikrotik:"log-prefix"`
Nth string `mikrotik:"nth"`
OutBridgePort string `mikrotik:"out-bridge-port"`
OutInterface string `mikrotik:"out-interface"`
PacketMark string `mikrotik:"packet-mark"`
Packets string `mikrotik:"packets"`
PacketSize string `mikrotik:"packet-size"`
PerConnectionClassifier string `mikrotik:"per-connection-classifier"`
Port int `mikrotik:"port"`
Protocol string `mikrotik:"protocol"`
Psd string `mikrotik:"psd"`
Random int `mikrotik:"random"`
RoutingMark string `mikrotik:"routing-mark"`
RoutingTable string `mikrotik:"routing-table"`
SameNotByDst bool `mikrotik:"same-not-by-dst"`
SrcAddress string `mikrotik:"src-address"`
SrcAddressList string `mikrotik:"src-address-list"`
SrcAddressType string `mikrotik:"src-address-type"`
SrcMacAddress string `mikrotik:"src-mac-address"`
SrcPort int `mikrotik:"src-port"`
TCPMss int `mikrotik:"tcp-mss"`
Time string `mikrotik:"time"`
ToAddresses string `mikrotik:"to-addresses"`
ToPorts int `mikrotik:"to-ports"`
TTL int `mikrotik:"ttl"`
}
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"
)
type IPFirewallMangleRule 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 IPFirewallFilter struct {
ID string `mikrotik:".id"`
Action string `mikrotik:"action"`
AddressList string `mikrotik:"address-list"`
AddressListTimeout string `mikrotik:"address-list-timeout"`
Bytes string `mikrotik:"bytes"`
Chain string `mikrotik:"chain"`
Comment string `mikrotik:"comment"`
ConnectionBytes int `mikrotik:"connection-bytes"`
ConnectionLimit int `mikrotik:"connection-limit"`
ConnectionMark string `mikrotik:"connection-mark"`
ConnectionNatState string `mikrotik:"connection-nat-state"`
ConnectionRate int `mikrotik:"connection-rate"`
ConnectionState string `mikrotik:"connection-state"`
ConnectionType string `mikrotik:"connection-type"`
Content string `mikrotik:"content"`
Dscp int `mikrotik:"dscp"`
DstAddress string `mikrotik:"dst-address"`
DstAddressList string `mikrotik:"dst-address-list"`
DstAddressType string `mikrotik:"dst-address-type"`
DstLimit string `mikrotik:"dst-limit"`
DstPort int `mikrotik:"dst-port"`
Fragment bool `mikrotik:"fragment"`
Hotspot string `mikrotik:"hotspot"`
IcmpOptions int `mikrotik:"icmp-options"`
InBridgePort string `mikrotik:"in-bridge-port"`
InBridgePortList string `mikrotik:"in-bridge-port-list"`
InInterface string `mikrotik:"in-interface"`
InInterfaceList string `mikrotik:"in-interface-list"`
IngressPriority int `mikrotik:"ingress-priority"`
IpsecPolicy string `mikrotik:"ipsec-policy"`
Ipv4Options string `mikrotik:"ipv4-options"`
JumpTarget string `mikrotik:"jump-target"`
Layer7Protocol string `mikrotik:"layer7-protocol"`
Limit int `mikrotik:"limit"`
LogPrefix string `mikrotik:"log-prefix"`
Nth int `mikrotik:"nth"`
OutBridgePort string `mikrotik:"out-bridge-port"`
OutBridgePortList string `mikrotik:"out-bridge-port-list"`
OutInterface string `mikrotik:"out-interface"`
OutInterfaceList string `mikrotik:"out-interface-list"`
PacketMark string `mikrotik:"packet-mark"`
PacketSize int `mikrotik:"packet-size"`
PerConnectionClassifier string `mikrotik:"per-connection-classifier"`
Port int `mikrotik:"port"`
Priority int `mikrotik:"priority"`
Protocol string `mikrotik:"protocol"`
Psd int `mikrotik:"psd"`
Random int `mikrotik:"random"`
RejectWith string `mikrotik:"reject-with"`
RoutingTable string `mikrotik:"routing-table"`
RoutingMark string `mikrotik:"routing-mark"`
SrcAddress string `mikrotik:"src-address"`
SrcAddressList string `mikrotik:"src-address-list"`
SrcAddressType string `mikrotik:"src-address-type"`
SrcPort int `mikrotik:"src-port"`
SrcMacAddress string `mikrotik:"src-mac-address"`
TCPFlags string `mikrotik:"tcp-flags"`
TCPMss int `mikrotik:"tcp-mss"`
Time string `mikrotik:"time"`
TLSHost string `mikrotik:"tls-host"`
TTL int `mikrotik:"ttl"`
Dynamic string `mikrotik:"dynamic"`
Invalid string `mikrotik:"invalid"`
Packets string `mikrotik:"packets"`
}
// ====================================
//
// Neighbor
//
// ====================================
type IPNeighbor struct {
ID string `mikrotik:".id"`
Address string `mikrotik:"address"`
Address6 string `mikrotik:"address6"`
Age string `mikrotik:"age"`
Board string `mikrotik:"board"`
Identity string `mikrotik:"identity"`
Interface string `mikrotik:"interface"`
InterfaceName string `mikrotik:"interface-name"`
Ipv6 bool `mikrotik:"ipv6"`
MacAddress string `mikrotik:"mac-address"`
Platform string `mikrotik:"platform"`
SoftwareID string `mikrotik:"software-id"`
SystemCaps string `mikrotik:"system-caps"`
SystemCapsEnabled string `mikrotik:"system-caps-enabled"`
Unpack string `mikrotik:"unpack"`
Uptime string `mikrotik:"uptime"`
Version string `mikrotik:"version"`
}
type IPNeighbordDiscoverySettings struct {
DiscoverInterfaceList string `mikrotik:"discover-interface-list"`
}
// ====================================
//
// Pools
//
// ====================================
type IPPool struct {
ID string `mikrotik:".id"`
Name string `mikrotik:"name"`
NextPool string `mikrotik:"next-pool"`
Ranges string `mikrotik:"ranges"`
}
type IPPoolUsed struct {
ID string `mikrotik:".id"`
Address string `mikrotik:"address"`
Info string `mikrotik:"info"`
Owner string `mikrotik:"owner"`
Pool string `mikrotik:"pool"`
}
// ====================================
//
// Route
//
// ====================================
type IPRoute 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 IPRoute) String() string {
return fmt.Sprintf("%s %s %s %d %s", r.DstAddress, r.PrefSrc, r.Gateway, r.Distance, r.Comment)
}
// ====================================
//
// Arp
//
// ====================================
type IPArp struct {
ID string `mikrotik:".id"`
DHCP bool `mikrotik:"DHCP"`
Address string `mikrotik:"address"`
Complete bool `mikrotik:"complete"`
Disabled bool `mikrotik:"disabled"`
Dynamic bool `mikrotik:"dynamic"`
Interface string `mikrotik:"interface"`
Invalid bool `mikrotik:"invalid"`
MacAddress string `mikrotik:"mac-address"`
Published bool `mikrotik:"published"`
}