-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathENROUTE-245-MIB
5894 lines (5882 loc) · 185 KB
/
ENROUTE-245-MIB
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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
TRANZEO-ENROUTE-MUNIWIFI-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, enterprises, Integer32
FROM SNMPv2-SMI
TRAP-TYPE
FROM RFC-1215;
enRoute MODULE-IDENTITY
LAST-UPDATED "200807011200Z"
ORGANIZATION "www.tranzeo.com"
CONTACT-INFO
"postal: Ron Dippold
Tranzeo Wireless USA
15950 Bernardo Center Drive, Suite J
San Diego, CA 92127-1829
email: [email protected]
"
DESCRIPTION "The Tranzeo EnRoute platform MIB."
REVISION "200807011200Z"
DESCRIPTION "v4.060 - Jun 10 2008"
::= { enterprises 24350 }
--
-- Tranzeo Wireless EnRoute enterprise-specific management objects
--
----------------------------------------------------
-- .1. BRANCH version.
--
version OBJECT IDENTIFIER ::= { enRoute 1 }
-- .1.1 LEAF version.driver80211
versionDriver80211 OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "80211 driver release version"
::= { version 1 }
-- .1.2 LEAF version.firmware
versionFirmware OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "firmware release version"
::= { version 2 }
-- .1.3 LEAF version.loaded-profile
versionLoaded-profile OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "last mcm cfg-load or cfg-save profile"
::= { version 3 }
-- .1.4 LEAF version.mcm
versionMcm OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "mcm version"
::= { version 4 }
-- .1.5 LEAF version.patches
versionPatches OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "applied patches"
::= { version 5 }
-- .1.6 LEAF version.qos
versionQos OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "QoS version"
::= { version 6 }
-- .1.7 LEAF version.release
versionRelease OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "software release version"
::= { version 7 }
----------------------------------------------------
-- .2. BRANCH sys.
--
sys OBJECT IDENTIFIER ::= { enRoute 2 }
----------------------------------------------------
-- .2.1. BRANCH sys.apply.
--
sysApply OBJECT IDENTIFIER ::= { sys 1 }
-- .2.1.1 LEAF sys.apply.effect
sysApplyEffect OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "approximate severity of applying outstanding changes"
::= { sysApply 1 }
-- .2.1.2 LEAF sys.apply.time
sysApplyTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "time in seconds to apply outstanding changes"
::= { sysApply 2 }
----------------------------------------------------
-- .2.2. BRANCH sys.dev.
--
sysDev OBJECT IDENTIFIER ::= { sys 2 }
----------------------------------------------------
-- .2.2.1. BRANCH sys.dev.battery.
--
sysDevBattery OBJECT IDENTIFIER ::= { sysDev 1 }
-- .2.2.1.1 LEAF sys.dev.battery.enable
sysDevBatteryEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "enable battery"
::= { sysDevBattery 1 }
-- .2.2.1.2 LEAF sys.dev.battery.installed
sysDevBatteryInstalled OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "battery hardware could be installed"
::= { sysDevBattery 2 }
----------------------------------------------------
-- .2.2.2. BRANCH sys.dev.led.
--
sysDevLed OBJECT IDENTIFIER ::= { sysDev 2 }
-- .2.2.2.1 LEAF sys.dev.led.enable
sysDevLedEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "enable led display"
::= { sysDevLed 1 }
----------------------------------------------------
-- .2.2.3. BRANCH sys.dev.poe.
--
sysDevPoe OBJECT IDENTIFIER ::= { sysDev 3 }
-- .2.2.3.1 LEAF sys.dev.poe.enable
sysDevPoeEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "supply power over ethernet"
::= { sysDevPoe 1 }
-- .2.2.3.2 LEAF sys.dev.poe.installed
sysDevPoeInstalled OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "poe hardware is installed"
::= { sysDevPoe 2 }
-- .2.2.3.3 LEAF sys.dev.poe.voltage
sysDevPoeVoltage OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "power over ethernet voltage - 24 or 48"
::= { sysDevPoe 3 }
----------------------------------------------------
-- .2.2.4. BRANCH sys.dev.wlan.
--
sysDevWlan OBJECT IDENTIFIER ::= { sysDev 4 }
-- .2.2.4.1 LEAF sys.dev.wlan.country
sysDevWlanCountry OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "ansi country code - 124=canada, 840=us, 826=uk"
::= { sysDevWlan 1 }
----------------------------------------------------
-- .2.3. BRANCH sys.dhcp.
--
sysDhcp OBJECT IDENTIFIER ::= { sys 3 }
-- .2.3.1 LEAF sys.dhcp.args
sysDhcpArgs OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "dhcp server arguments"
::= { sysDhcp 1 }
-- .2.3.2 LEAF sys.dhcp.enable_server
sysDhcpEnableserver OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "enable dhcp server if any of the interfaces require it"
::= { sysDhcp 2 }
----------------------------------------------------
-- .2.3.3. BRANCH sys.dhcp.relay.
--
sysDhcpRelay OBJECT IDENTIFIER ::= { sysDhcp 3 }
----------------------------------------------------
-- .2.3.3.1. BRANCH sys.dhcp.relay.agent.
--
sysDhcpRelayAgent OBJECT IDENTIFIER ::= { sysDhcpRelay 1 }
-- .2.3.3.1.1 LEAF sys.dhcp.relay.agent.base
sysDhcpRelayAgentBase OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "base octet to use for alias VAP IP addresses"
::= { sysDhcpRelayAgent 1 }
-- .2.3.3.2 LEAF sys.dhcp.relay.args
sysDhcpRelayArgs OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "roamd arguments except for -D and -a"
::= { sysDhcpRelay 2 }
-- .2.3.3.3 LEAF sys.dhcp.relay.arp_num_bc
sysDhcpRelayArpnumbc OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "number of unsolicited arp broadcasts to establish ips"
::= { sysDhcpRelay 3 }
-- .2.3.3.4 LEAF sys.dhcp.relay.bind_retries
sysDhcpRelayBindretries OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "number of interface bind attempts"
::= { sysDhcpRelay 4 }
-- .2.3.3.5 LEAF sys.dhcp.relay.enable
sysDhcpRelayEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "use remote dhcp server instead of local"
::= { sysDhcpRelay 5 }
-- .2.3.3.6 LEAF sys.dhcp.relay.extra_hosts
sysDhcpRelayExtrahosts OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "space separated list of extra host ip addresses to consider external"
::= { sysDhcpRelay 6 }
-- .2.3.3.7 LEAF sys.dhcp.relay.gateway
sysDhcpRelayGateway OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "base address to use VAP IP addresses globally"
::= { sysDhcpRelay 7 }
----------------------------------------------------
-- .2.3.3.8. BRANCH sys.dhcp.relay.imr.
--
sysDhcpRelayImr OBJECT IDENTIFIER ::= { sysDhcpRelay 8 }
-- .2.3.3.8.1 LEAF sys.dhcp.relay.imr.num_bc
sysDhcpRelayImrNumbc OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "notification broadcast count"
::= { sysDhcpRelayImr 1 }
-- .2.3.3.9 LEAF sys.dhcp.relay.proxy
sysDhcpRelayProxy OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "redirect all dhcp traffic to relay on gateway"
::= { sysDhcpRelay 9 }
-- .2.3.3.10 LEAF sys.dhcp.relay.server
sysDhcpRelayServer OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "numeric ip address of the external DHCP server"
::= { sysDhcpRelay 10 }
-- .2.3.3.11 LEAF sys.dhcp.relay.stale_check_interval
sysDhcpRelayStalecheckinterval OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "check for stale route (seconds)"
::= { sysDhcpRelay 11 }
----------------------------------------------------
-- .2.3.3.12. BRANCH sys.dhcp.relay.static.
--
sysDhcpRelayStatic OBJECT IDENTIFIER ::= { sysDhcpRelay 12 }
-- .2.3.3.12.1 LEAF sys.dhcp.relay.static.begin
sysDhcpRelayStaticBegin OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "beginning of statif ip range"
::= { sysDhcpRelayStatic 1 }
-- .2.3.3.12.2 LEAF sys.dhcp.relay.static.enable
sysDhcpRelayStaticEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "allow static allocation range"
::= { sysDhcpRelayStatic 2 }
-- .2.3.3.12.3 LEAF sys.dhcp.relay.static.end
sysDhcpRelayStaticEnd OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "end of static ip range"
::= { sysDhcpRelayStatic 3 }
-- .2.3.3.13 LEAF sys.dhcp.relay.subnet
sysDhcpRelaySubnet OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "subnet for roamd"
::= { sysDhcpRelay 13 }
----------------------------------------------------
-- .2.3.3.14. BRANCH sys.dhcp.relay.tunnel.
--
sysDhcpRelayTunnel OBJECT IDENTIFIER ::= { sysDhcpRelay 14 }
-- .2.3.3.14.1 LEAF sys.dhcp.relay.tunnel.endpoint
sysDhcpRelayTunnelEndpoint OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "tunnel subnet for roamd"
::= { sysDhcpRelayTunnel 1 }
-- .2.3.3.14.2 LEAF sys.dhcp.relay.tunnel.keepalive
sysDhcpRelayTunnelKeepalive OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "tunnel keepalive interval in seconds"
::= { sysDhcpRelayTunnel 2 }
-- .2.3.3.14.3 LEAF sys.dhcp.relay.tunnel.timeout_factor
sysDhcpRelayTunnelTimeoutfactor OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "tunnel timeout factor"
::= { sysDhcpRelayTunnel 3 }
----------------------------------------------------
-- .2.4. BRANCH sys.dns.
--
sysDns OBJECT IDENTIFIER ::= { sys 4 }
-- .2.4.1 LEAF sys.dns.servers
sysDnsServers OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "space separated DNS server list"
::= { sysDns 1 }
-- .2.4.2 LEAF sys.dns.update_style
sysDnsUpdatestyle OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "dns update style ('ad-hoc', 'interim', 'none' )"
::= { sysDns 2 }
----------------------------------------------------
-- .2.5. BRANCH sys.dnsproxy.
--
sysDnsproxy OBJECT IDENTIFIER ::= { sys 5 }
-- .2.5.1 LEAF sys.dnsproxy.enable
sysDnsproxyEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "enable dns proxy"
::= { sysDnsproxy 1 }
-- .2.5.2 LEAF sys.dnsproxy.hosts
sysDnsproxyHosts OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "<hostname>=<ip>;<hostname>=<ip>; (etc)"
::= { sysDnsproxy 2 }
-- .2.6 LEAF sys.domain
sysDomain OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "domain for this node"
::= { sys 6 }
----------------------------------------------------
-- .2.7. BRANCH sys.gui.
--
sysGui OBJECT IDENTIFIER ::= { sys 7 }
----------------------------------------------------
-- .2.7.1. BRANCH sys.gui.upgrade.
--
sysGuiUpgrade OBJECT IDENTIFIER ::= { sysGui 1 }
-- .2.7.1.1 LEAF sys.gui.upgrade.force
sysGuiUpgradeForce OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "gui defaults to forcing upgrade"
::= { sysGuiUpgrade 1 }
-- .2.8 LEAF sys.hostname
sysHostname OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "hostname (also set if you change id.node)"
::= { sys 8 }
----------------------------------------------------
-- .2.9. BRANCH sys.hosts.
--
sysHosts OBJECT IDENTIFIER ::= { sys 9 }
-- .2.9.1 LEAF sys.hosts.nms
sysHostsNms OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "hostname or ip address of the network management station (snmp)"
::= { sysHosts 1 }
----------------------------------------------------
-- .2.10. BRANCH sys.id.
--
sysId OBJECT IDENTIFIER ::= { sys 10 }
-- .2.10.1 LEAF sys.id.lanprefix
sysIdLanprefix OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "first octet for non-mesh interfaces"
::= { sysId 1 }
-- .2.10.2 LEAF sys.id.mesh
sysIdMesh OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "3rd mesh octet (2nd octet for other interfaces in implicit mode)"
::= { sysId 2 }
-- .2.10.3 LEAF sys.id.meshprefix
sysIdMeshprefix OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "first two octets for mesh"
::= { sysId 3 }
-- .2.10.4 LEAF sys.id.node
sysIdNode OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "4th mesh octet (3rd octet for other interfaces in implicit mode)"
::= { sysId 4 }
----------------------------------------------------
-- .2.11. BRANCH sys.implicit.
--
sysImplicit OBJECT IDENTIFIER ::= { sys 11 }
-- .2.11.1 LEAF sys.implicit.enable
sysImplicitEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "use implicit addressing scheme - limits ap ranges"
::= { sysImplicit 1 }
----------------------------------------------------
-- .2.12. BRANCH sys.info.
--
sysInfo OBJECT IDENTIFIER ::= { sys 12 }
-- .2.12.1 LEAF sys.info.cluster
sysInfoCluster OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "freeform string which will be displayed on web pages"
::= { sysInfo 1 }
----------------------------------------------------
-- .2.13. BRANCH sys.l2.
--
sysL2 OBJECT IDENTIFIER ::= { sys 13 }
----------------------------------------------------
-- .2.13.1. BRANCH sys.l2.bridge.
--
sysL2Bridge OBJECT IDENTIFIER ::= { sysL2 1 }
-- .2.13.1.1 LEAF sys.l2.bridge.enable
sysL2BridgeEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "enable level 2 bridge mode"
::= { sysL2Bridge 1 }
-- .2.13.2 LEAF sys.l2.client_mac_fwd
sysL2Clientmacfwd OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "preserve client source mac to gateway and enable gateway proxy_arp"
::= { sysL2 2 }
----------------------------------------------------
-- .2.13.3. BRANCH sys.l2.hide_internal.
--
sysL2Hideinternal OBJECT IDENTIFIER ::= { sysL2 3 }
-- .2.13.3.1 LEAF sys.l2.hide_internal.enable
sysL2HideinternalEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "hide internal subnets from proxy arps"
::= { sysL2Hideinternal 1 }
----------------------------------------------------
-- .2.13.3.2. BRANCH sys.l2.hide_internal.gateway.
--
sysL2HideinternalGateway OBJECT IDENTIFIER ::= { sysL2Hideinternal 2 }
----------------------------------------------------
-- .2.13.3.2.1. BRANCH sys.l2.hide_internal.gateway.allow.
--
sysL2HideinternalGatewayAllow OBJECT IDENTIFIER ::= { sysL2HideinternalGateway 1 }
-- .2.13.3.2.1.1 LEAF sys.l2.hide_internal.gateway.allow.relay_dhcp
sysL2HideinternalGatewayAllowRelaydhcp OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "arp for dhcp relay subnet"
::= { sysL2HideinternalGatewayAllow 1 }
----------------------------------------------------
-- .2.13.3.2.2. BRANCH sys.l2.hide_internal.gateway.deny.
--
sysL2HideinternalGatewayDeny OBJECT IDENTIFIER ::= { sysL2HideinternalGateway 2 }
-- .2.13.3.2.2.1 LEAF sys.l2.hide_internal.gateway.deny.all
sysL2HideinternalGatewayDenyAll OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "deny all proxy arps from gateway, unless .allowed"
::= { sysL2HideinternalGatewayDeny 1 }
-- .2.13.3.2.2.2 LEAF sys.l2.hide_internal.gateway.deny.mesh
sysL2HideinternalGatewayDenyMesh OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "hide mesh from proxy arp"
::= { sysL2HideinternalGatewayDeny 2 }
----------------------------------------------------
-- .2.14. BRANCH sys.location.
--
sysLocation OBJECT IDENTIFIER ::= { sys 14 }
----------------------------------------------------
-- .2.14.1. BRANCH sys.location.gps.
--
sysLocationGps OBJECT IDENTIFIER ::= { sysLocation 1 }
-- .2.14.1.1 LEAF sys.location.gps.altitude
sysLocationGpsAltitude OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "gps altitude in meters"
::= { sysLocationGps 1 }
-- .2.14.1.2 LEAF sys.location.gps.latitude
sysLocationGpsLatitude OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "gps latitude in decimal degrees"
::= { sysLocationGps 2 }
-- .2.14.1.3 LEAF sys.location.gps.longitude
sysLocationGpsLongitude OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "gps longitude in decimal degrees"
::= { sysLocationGps 3 }
-- .2.14.2 LEAF sys.location.postal
sysLocationPostal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "useful description of node's physical location"
::= { sysLocation 2 }
----------------------------------------------------
-- .2.15. BRANCH sys.mainstub.
--
sysMainstub OBJECT IDENTIFIER ::= { sys 15 }
-- .2.15.1 LEAF sys.mainstub.if
sysMainstubIf OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "interface to multicast network"
::= { sysMainstub 1 }
-- .2.15.2 LEAF sys.mainstub.proxy_arp
sysMainstubProxyarp OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "proxy arp on multicast interface?"
::= { sysMainstub 2 }
----------------------------------------------------
-- .2.16. BRANCH sys.monitor.
--
sysMonitor OBJECT IDENTIFIER ::= { sys 16 }
----------------------------------------------------
-- .2.16.1. BRANCH sys.monitor.health.
--
sysMonitorHealth OBJECT IDENTIFIER ::= { sysMonitor 1 }
-- .2.16.1.1 LEAF sys.monitor.health.enable
sysMonitorHealthEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "enable health monitoring for gateway failover"
::= { sysMonitorHealth 1 }
-- .2.16.1.2 LEAF sys.monitor.health.host
sysMonitorHealthHost OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "host to ping"
::= { sysMonitorHealth 2 }
----------------------------------------------------
-- .2.17. BRANCH sys.nat.
--
sysNat OBJECT IDENTIFIER ::= { sys 17 }
-- .2.17.1 LEAF sys.nat.enable
sysNatEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "masquerading (on eth0, if gateway)"
::= { sysNat 1 }
----------------------------------------------------
-- .2.18. BRANCH sys.netbios.
--
sysNetbios OBJECT IDENTIFIER ::= { sys 18 }
-- .2.18.1 LEAF sys.netbios.servers
sysNetbiosServers OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "space separated netbios server list"
::= { sysNetbios 1 }
----------------------------------------------------
-- .2.19. BRANCH sys.nets.
--
sysNets OBJECT IDENTIFIER ::= { sys 19 }
----------------------------------------------------
-- .2.19.1. BRANCH sys.nets.external.
--
sysNetsExternal OBJECT IDENTIFIER ::= { sysNets 1 }
-- .2.19.1.1 LEAF sys.nets.external.combined
sysNetsExternalCombined OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "coalesced .external.default, external.roamd, and .external.extra subnets"
::= { sysNetsExternal 1 }
-- .2.19.1.2 LEAF sys.nets.external.default
sysNetsExternalDefault OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "subnets considered external to the mesh by default"
::= { sysNetsExternal 2 }
-- .2.19.1.3 LEAF sys.nets.external.extra
sysNetsExternalExtra OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "extra subnets to be considered external to the mesh"
::= { sysNetsExternal 3 }
----------------------------------------------------
-- .2.19.2. BRANCH sys.nets.internal.
--
sysNetsInternal OBJECT IDENTIFIER ::= { sysNets 2 }
-- .2.19.2.1 LEAF sys.nets.internal.combined
sysNetsInternalCombined OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "coalesced .internal.default and internal.extra internal subnets"
::= { sysNetsInternal 1 }
-- .2.19.2.2 LEAF sys.nets.internal.default
sysNetsInternalDefault OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "default mesh-internal subnets"
::= { sysNetsInternal 2 }
-- .2.19.2.3 LEAF sys.nets.internal.extra
sysNetsInternalExtra OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "added to .default internal subnets"
::= { sysNetsInternal 3 }
-- .2.19.2.4 LEAF sys.nets.internal.flexip_default
sysNetsInternalFlexipdefault OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "override the .nets.internal.default for flexip"
::= { sysNetsInternal 4 }
----------------------------------------------------
-- .2.20. BRANCH sys.organization.
--
sysOrganization OBJECT IDENTIFIER ::= { sys 20 }
-- .2.20.1 LEAF sys.organization.city
sysOrganizationCity OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "city or locality"
::= { sysOrganization 1 }
-- .2.20.2 LEAF sys.organization.country
sysOrganizationCountry OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "2 letter country code"
::= { sysOrganization 2 }
-- .2.20.3 LEAF sys.organization.name
sysOrganizationName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "organization name"
::= { sysOrganization 3 }
-- .2.20.4 LEAF sys.organization.state
sysOrganizationState OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "state or province"
::= { sysOrganization 4 }
----------------------------------------------------
-- .2.21. BRANCH sys.password.
--
sysPassword OBJECT IDENTIFIER ::= { sys 21 }
-- .2.21.1 LEAF sys.password.admin
sysPasswordAdmin OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "admin account password"
::= { sysPassword 1 }
-- .2.21.2 LEAF sys.password.monitor
sysPasswordMonitor OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "monitor account password"
::= { sysPassword 2 }
-- .2.22 LEAF sys.platform
sysPlatform OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "hardware platform"
::= { sys 22 }
----------------------------------------------------
-- .2.23. BRANCH sys.provisioning.
--
sysProvisioning OBJECT IDENTIFIER ::= { sys 23 }
-- .2.23.1 LEAF sys.provisioning.enable
sysProvisioningEnable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "enable OnRamp provisioning"
::= { sysProvisioning 1 }
----------------------------------------------------
-- .2.24. BRANCH sys.routing.
--
sysRouting OBJECT IDENTIFIER ::= { sys 24 }
-- .2.24.1 LEAF sys.routing.ospf
sysRoutingOspf OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "enable OSPF dynamic routing"
::= { sysRouting 1 }
-- .2.24.2 LEAF sys.routing.rip
sysRoutingRip OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "enable RIP dynamic routing"
::= { sysRouting 2 }
-- .2.25 LEAF sys.scheme
sysScheme OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "wireless node type"
::= { sys 25 }
----------------------------------------------------
-- .2.26. BRANCH sys.shell.
--
sysShell OBJECT IDENTIFIER ::= { sys 26 }
-- .2.26.1 LEAF sys.shell.timeout
sysShellTimeout OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "shell inactivity timeout"
::= { sysShell 1 }
----------------------------------------------------
-- .2.27. BRANCH sys.snmp.
--
sysSnmp OBJECT IDENTIFIER ::= { sys 27 }
----------------------------------------------------
-- .2.27.1. BRANCH sys.snmp.community.
--
sysSnmpCommunity OBJECT IDENTIFIER ::= { sysSnmp 1 }
-- .2.27.1.1 LEAF sys.snmp.community.ro
sysSnmpCommunityRo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "ro community password"
::= { sysSnmpCommunity 1 }
-- .2.27.1.2 LEAF sys.snmp.community.rw
sysSnmpCommunityRw OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "rw community password"
::= { sysSnmpCommunity 2 }
-- .2.27.1.3 LEAF sys.snmp.community.trap
sysSnmpCommunityTrap OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "trap community password"
::= { sysSnmpCommunity 3 }
-- .2.27.2 LEAF sys.snmp.contact
sysSnmpContact OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "snmp contact"
::= { sysSnmp 2 }
-- .2.27.3 LEAF sys.snmp.location
sysSnmpLocation OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "location (taken from sys.location.postal)"
::= { sysSnmp 3 }
-- .2.27.4 LEAF sys.snmp.port
sysSnmpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "snmp port"
::= { sysSnmp 4 }
----------------------------------------------------
-- .2.27.5. BRANCH sys.snmp.trap.
--
sysSnmpTrap OBJECT IDENTIFIER ::= { sysSnmp 5 }
-- .2.27.5.1 LEAF sys.snmp.trap.host
sysSnmpTrapHost OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "trap host (trapsink)"
::= { sysSnmpTrap 1 }
----------------------------------------------------
-- .2.28. BRANCH sys.splash.
--
sysSplash OBJECT IDENTIFIER ::= { sys 28 }
----------------------------------------------------
-- .2.28.1. BRANCH sys.splash.auth.
--
sysSplashAuth OBJECT IDENTIFIER ::= { sysSplash 1 }
----------------------------------------------------
-- .2.28.1.1. BRANCH sys.splash.auth.server.
--
sysSplashAuthServer OBJECT IDENTIFIER ::= { sysSplashAuth 1 }
----------------------------------------------------
-- .2.28.1.1.1. BRANCH sys.splash.auth.server.wlan1.
--
sysSplashAuthServerWlan1 OBJECT IDENTIFIER ::= { sysSplashAuthServer 1 }
-- .2.28.1.1.1.1 LEAF sys.splash.auth.server.wlan1.enable
sysSplashAuthServerWlan1Enable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "require authentication"
::= { sysSplashAuthServerWlan1 1 }
-- .2.28.1.1.1.2 LEAF sys.splash.auth.server.wlan1.host
sysSplashAuthServerWlan1Host OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "host for remote radius authentication"
::= { sysSplashAuthServerWlan1 2 }
-- .2.28.1.1.1.3 LEAF sys.splash.auth.server.wlan1.port
sysSplashAuthServerWlan1Port OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "port for remote radius authentication"
::= { sysSplashAuthServerWlan1 3 }
-- .2.28.1.1.1.4 LEAF sys.splash.auth.server.wlan1.secret
sysSplashAuthServerWlan1Secret OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "shared secret for remote radius authentication"
::= { sysSplashAuthServerWlan1 4 }
----------------------------------------------------
-- .2.28.1.1.2. BRANCH sys.splash.auth.server.wlan2.
--
sysSplashAuthServerWlan2 OBJECT IDENTIFIER ::= { sysSplashAuthServer 2 }
-- .2.28.1.1.2.1 LEAF sys.splash.auth.server.wlan2.enable
sysSplashAuthServerWlan2Enable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "require authentication"
::= { sysSplashAuthServerWlan2 1 }
-- .2.28.1.1.2.2 LEAF sys.splash.auth.server.wlan2.host
sysSplashAuthServerWlan2Host OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "host for remote radius authentication"
::= { sysSplashAuthServerWlan2 2 }
-- .2.28.1.1.2.3 LEAF sys.splash.auth.server.wlan2.port
sysSplashAuthServerWlan2Port OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "port for remote radius authentication"
::= { sysSplashAuthServerWlan2 3 }
-- .2.28.1.1.2.4 LEAF sys.splash.auth.server.wlan2.secret
sysSplashAuthServerWlan2Secret OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "shared secret for remote radius authentication"
::= { sysSplashAuthServerWlan2 4 }
----------------------------------------------------
-- .2.28.1.1.3. BRANCH sys.splash.auth.server.wlan3.
--
sysSplashAuthServerWlan3 OBJECT IDENTIFIER ::= { sysSplashAuthServer 3 }
-- .2.28.1.1.3.1 LEAF sys.splash.auth.server.wlan3.enable
sysSplashAuthServerWlan3Enable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "require authentication"
::= { sysSplashAuthServerWlan3 1 }
-- .2.28.1.1.3.2 LEAF sys.splash.auth.server.wlan3.host
sysSplashAuthServerWlan3Host OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "host for remote radius authentication"
::= { sysSplashAuthServerWlan3 2 }
-- .2.28.1.1.3.3 LEAF sys.splash.auth.server.wlan3.port
sysSplashAuthServerWlan3Port OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "port for remote radius authentication"
::= { sysSplashAuthServerWlan3 3 }
-- .2.28.1.1.3.4 LEAF sys.splash.auth.server.wlan3.secret
sysSplashAuthServerWlan3Secret OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "shared secret for remote radius authentication"
::= { sysSplashAuthServerWlan3 4 }
----------------------------------------------------
-- .2.28.1.1.4. BRANCH sys.splash.auth.server.wlan4.
--
sysSplashAuthServerWlan4 OBJECT IDENTIFIER ::= { sysSplashAuthServer 4 }
-- .2.28.1.1.4.1 LEAF sys.splash.auth.server.wlan4.enable
sysSplashAuthServerWlan4Enable OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "require authentication"
::= { sysSplashAuthServerWlan4 1 }
-- .2.28.1.1.4.2 LEAF sys.splash.auth.server.wlan4.host
sysSplashAuthServerWlan4Host OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "host for remote radius authentication"
::= { sysSplashAuthServerWlan4 2 }
-- .2.28.1.1.4.3 LEAF sys.splash.auth.server.wlan4.port
sysSplashAuthServerWlan4Port OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "port for remote radius authentication"
::= { sysSplashAuthServerWlan4 3 }
-- .2.28.1.1.4.4 LEAF sys.splash.auth.server.wlan4.secret
sysSplashAuthServerWlan4Secret OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION "shared secret for remote radius authentication"
::= { sysSplashAuthServerWlan4 4 }
-- .2.28.2 LEAF sys.splash.bypass_hosts
sysSplashBypasshosts OBJECT-TYPE