junoser 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +0 -1
- data/.travis.yml +6 -4
- data/CHANGELOG.md +169 -75
- data/Gemfile.lock +30 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/Rakefile +11 -3
- data/example/vmx-17.2R1.13.rb +42432 -42429
- data/junoser.gemspec +6 -2
- data/lib/junoser/development.rb +1 -0
- data/lib/junoser/display/config_store.rb +15 -15
- data/lib/junoser/display/enumerable.rb +35 -0
- data/lib/junoser/display.rb +3 -0
- data/lib/junoser/js_ruler.rb +334 -0
- data/lib/junoser/parser.rb +315 -308
- data/lib/junoser/ruler.rb +12 -3
- data/lib/junoser/squash.rb +9 -1
- data/lib/junoser/transformer.rb +8 -0
- data/lib/junoser/version.rb +1 -1
- data/lib/junoser/xsd/element.rb +13 -0
- data/lib/junoser/xsd/restriction.rb +9 -1
- metadata +7 -4
data/lib/junoser/parser.rb
CHANGED
@@ -68,6 +68,10 @@ module Junoser
|
|
68
68
|
(c(*objects, arg) >> space.maybe).repeat(0)
|
69
69
|
end
|
70
70
|
|
71
|
+
def enum(object)
|
72
|
+
(object.as(:enum))
|
73
|
+
end
|
74
|
+
|
71
75
|
rule(:arg) { match('\S').repeat(1) }
|
72
76
|
rule(:space) { match('\s').repeat(1) }
|
73
77
|
rule(:any) { match('.').repeat(1) }
|
@@ -361,7 +365,7 @@ module Junoser
|
|
361
365
|
)
|
362
366
|
)
|
363
367
|
).as(:oneline),
|
364
|
-
a(str("flag"), (str("all") | str("configuration") | str("rtsock") | str("client-server") | str("interface") | str("xmlproxy")),
|
368
|
+
a(str("flag"), enum(str("all") | str("configuration") | str("rtsock") | str("client-server") | str("interface") | str("xmlproxy")),
|
365
369
|
c(
|
366
370
|
str("disable")
|
367
371
|
)
|
@@ -461,7 +465,7 @@ module Junoser
|
|
461
465
|
c(
|
462
466
|
b(a(str("port"), arg),
|
463
467
|
c(
|
464
|
-
a(str("transport"), (str("tcp") | str("udp")),
|
468
|
+
a(str("transport"), enum(str("tcp") | str("udp")),
|
465
469
|
c(
|
466
470
|
a(str("export-profile"), arg)
|
467
471
|
)
|
@@ -510,7 +514,7 @@ module Junoser
|
|
510
514
|
b(str("stream-format"),
|
511
515
|
(str("json") | str("csv") | str("tsv"))
|
512
516
|
),
|
513
|
-
a(str("stream-type"), (str("traffic-statistics") | str("queue-statistics")))
|
517
|
+
a(str("stream-type"), enum(str("traffic-statistics") | str("queue-statistics")))
|
514
518
|
)
|
515
519
|
)
|
516
520
|
)
|
@@ -1463,7 +1467,7 @@ module Junoser
|
|
1463
1467
|
)
|
1464
1468
|
)
|
1465
1469
|
),
|
1466
|
-
a(str("syslog"), (str("any") | str("authorization") | str("privileged") | str("cron") | str("daemon") | str("kernel") | str("syslog") | str("user") | str("uucp") | str("local0") | str("local1") | str("local2") | str("local3") | str("local4") | str("local5") | str("local6") | str("local7")),
|
1470
|
+
a(str("syslog"), enum(str("any") | str("authorization") | str("privileged") | str("cron") | str("daemon") | str("kernel") | str("syslog") | str("user") | str("uucp") | str("local0") | str("local1") | str("local2") | str("local3") | str("local4") | str("local5") | str("local6") | str("local7")),
|
1467
1471
|
c(
|
1468
1472
|
c(
|
1469
1473
|
str("any"),
|
@@ -1631,7 +1635,7 @@ module Junoser
|
|
1631
1635
|
)
|
1632
1636
|
)
|
1633
1637
|
).as(:oneline),
|
1634
|
-
a(str("flag"), (str("all") | str("ipc") | str("config") | str("connect"))).as(:oneline)
|
1638
|
+
a(str("flag"), enum(str("all") | str("ipc") | str("config") | str("connect"))).as(:oneline)
|
1635
1639
|
)
|
1636
1640
|
),
|
1637
1641
|
b(a(str("captive-portal"), arg),
|
@@ -1989,7 +1993,7 @@ module Junoser
|
|
1989
1993
|
)
|
1990
1994
|
)
|
1991
1995
|
).as(:oneline),
|
1992
|
-
a(str("flag"), (str("all"))).as(:oneline),
|
1996
|
+
a(str("flag"), enum(str("all"))).as(:oneline),
|
1993
1997
|
b(str("level"),
|
1994
1998
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
1995
1999
|
)
|
@@ -2173,10 +2177,10 @@ module Junoser
|
|
2173
2177
|
c(
|
2174
2178
|
str("resource-triggered"),
|
2175
2179
|
b(str("ingress-key"),
|
2176
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
2180
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
2177
2181
|
),
|
2178
2182
|
b(str("egress-key"),
|
2179
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
2183
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
2180
2184
|
)
|
2181
2185
|
)
|
2182
2186
|
)
|
@@ -2615,13 +2619,13 @@ module Junoser
|
|
2615
2619
|
b(str("level"),
|
2616
2620
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
2617
2621
|
),
|
2618
|
-
a(str("flag"), (str("gres") | str("init") | str("events") | str("memory") | str("message") | str("packet-error") | str("parse") | str("receive-packets") | str("session-db") | str("states") | str("timer") | str("transmit-packets") | str("routing-socket") | str("routing-process") | str("protocol") | str("configuration") | str("ipc-tx") | str("ipc-rx") | str("general") | str("tunnel") | str("stats") | str("authentication") | str("all"))).as(:oneline),
|
2622
|
+
a(str("flag"), enum(str("gres") | str("init") | str("events") | str("memory") | str("message") | str("packet-error") | str("parse") | str("receive-packets") | str("session-db") | str("states") | str("timer") | str("transmit-packets") | str("routing-socket") | str("routing-process") | str("protocol") | str("configuration") | str("ipc-tx") | str("ipc-rx") | str("general") | str("tunnel") | str("stats") | str("authentication") | str("all"))).as(:oneline),
|
2619
2623
|
b(str("debug-level"),
|
2620
2624
|
(str("error") | str("detail") | str("packet-dump"))
|
2621
2625
|
),
|
2622
2626
|
b(str("filter"),
|
2623
2627
|
c(
|
2624
|
-
a(str("protocol"), (str("ppp") | str("l2tp") | str("radius") | str("udp"))).as(:oneline),
|
2628
|
+
a(str("protocol"), enum(str("ppp") | str("l2tp") | str("radius") | str("udp"))).as(:oneline),
|
2625
2629
|
a(str("user-name"), arg),
|
2626
2630
|
b(str("user"),
|
2627
2631
|
c(
|
@@ -2726,7 +2730,7 @@ module Junoser
|
|
2726
2730
|
)
|
2727
2731
|
)
|
2728
2732
|
).as(:oneline),
|
2729
|
-
a(str("flag"), (str("routing-socket") | str("routing-protocol") | str("service-identification") | str("configuration") | str("ipc") | str("kernel-object") | str("snmp") | str("all"))).as(:oneline)
|
2733
|
+
a(str("flag"), enum(str("routing-socket") | str("routing-protocol") | str("service-identification") | str("configuration") | str("ipc") | str("kernel-object") | str("snmp") | str("all"))).as(:oneline)
|
2730
2734
|
)
|
2731
2735
|
)
|
2732
2736
|
)
|
@@ -3245,7 +3249,7 @@ module Junoser
|
|
3245
3249
|
)
|
3246
3250
|
)
|
3247
3251
|
).as(:oneline),
|
3248
|
-
a(str("flag"), (str("all") | str("kernel") | str("change-events") | str("kernel-detail") | str("config-states") | str("resource-usage") | str("gres-events") | str("select-events") | str("bfd-events") | str("lib-events") | str("reserved") | str("emergency") | str("alert") | str("critical") | str("error") | str("warning") | str("notice") | str("informational") | str("debugging") | str("verbose") | str("japi")),
|
3252
|
+
a(str("flag"), enum(str("all") | str("kernel") | str("change-events") | str("kernel-detail") | str("config-states") | str("resource-usage") | str("gres-events") | str("select-events") | str("bfd-events") | str("lib-events") | str("reserved") | str("emergency") | str("alert") | str("critical") | str("error") | str("warning") | str("notice") | str("informational") | str("debugging") | str("verbose") | str("japi")),
|
3249
3253
|
c(
|
3250
3254
|
str("disable")
|
3251
3255
|
)
|
@@ -3276,7 +3280,7 @@ module Junoser
|
|
3276
3280
|
),
|
3277
3281
|
b(str("traceoptions"),
|
3278
3282
|
c(
|
3279
|
-
a(str("flag"), (str("ipc") | str("event") | str("media") | str("all"))).as(:oneline)
|
3283
|
+
a(str("flag"), enum(str("ipc") | str("event") | str("media") | str("all"))).as(:oneline)
|
3280
3284
|
)
|
3281
3285
|
),
|
3282
3286
|
str("passive-monitor-mode"),
|
@@ -4505,7 +4509,7 @@ module Junoser
|
|
4505
4509
|
b(str("fec"),
|
4506
4510
|
(str("sdfec") | str("sdfec25"))
|
4507
4511
|
),
|
4508
|
-
a(str("alarm"), (str("low-light-alarm")),
|
4512
|
+
a(str("alarm"), enum(str("low-light-alarm")),
|
4509
4513
|
c(
|
4510
4514
|
c(
|
4511
4515
|
str("syslog"),
|
@@ -4669,7 +4673,7 @@ module Junoser
|
|
4669
4673
|
)
|
4670
4674
|
)
|
4671
4675
|
),
|
4672
|
-
a(str("warning"), (str("low-light-warning")),
|
4676
|
+
a(str("warning"), enum(str("low-light-warning")),
|
4673
4677
|
c(
|
4674
4678
|
c(
|
4675
4679
|
str("syslog"),
|
@@ -5113,7 +5117,7 @@ module Junoser
|
|
5113
5117
|
)
|
5114
5118
|
)
|
5115
5119
|
),
|
5116
|
-
a(str("unit"), (arg | arg | arg),
|
5120
|
+
a(str("unit"), enum(arg | arg | arg),
|
5117
5121
|
c(
|
5118
5122
|
b(str("policer-overhead"),
|
5119
5123
|
ca(
|
@@ -5201,10 +5205,10 @@ module Junoser
|
|
5201
5205
|
),
|
5202
5206
|
str("actual-transit-statistics"),
|
5203
5207
|
b(str("demux-source"),
|
5204
|
-
((str("inet6") | str("inet")))
|
5208
|
+
enum((str("inet6") | str("inet")))
|
5205
5209
|
),
|
5206
5210
|
b(str("demux-destination"),
|
5207
|
-
((str("inet6") | str("inet")))
|
5211
|
+
enum((str("inet6") | str("inet")))
|
5208
5212
|
),
|
5209
5213
|
b(str("encapsulation"),
|
5210
5214
|
(str("atm-nlpid") | str("atm-cisco-nlpid") | str("atm-snap") | str("atm-vc-mux") | str("atm-ccc-vc-mux") | str("atm-tcc-vc-mux") | str("atm-tcc-snap") | str("atm-ccc-cell-relay") | str("vlan-vci-ccc") | str("ether-over-atm-llc") | str("ether-vpls-over-atm-llc") | str("ppp-over-ether-over-atm-llc") | str("ppp-over-ether") | str("atm-ppp-vc-mux") | str("atm-ppp-llc") | str("atm-mlppp-llc") | str("frame-relay-ppp") | str("frame-relay-ccc") | str("frame-relay") | str("frame-relay-tcc") | str("frame-relay-ether-type") | str("frame-relay-ether-type-tcc") | str("ether-vpls-fr") | str("vlan-ccc") | str("ethernet-ccc") | str("vlan-vpls") | str("vlan-bridge") | str("dix") | str("ethernet-vpls") | str("ethernet-bridge") | str("ethernet") | str("vlan") | str("vlan-tcc") | str("multilink-ppp") | str("multilink-frame-relay-end-to-end") | str("ppp-ccc"))
|
@@ -5777,7 +5781,7 @@ module Junoser
|
|
5777
5781
|
b(str("client-type"),
|
5778
5782
|
(str("stateful") | str("autoconfig"))
|
5779
5783
|
),
|
5780
|
-
a(str("client-ia-type"), (str("ia-na") | str("ia-pd"))),
|
5784
|
+
a(str("client-ia-type"), enum(str("ia-na") | str("ia-pd"))),
|
5781
5785
|
str("rapid-commit"),
|
5782
5786
|
b(str("client-identifier"),
|
5783
5787
|
c(
|
@@ -5786,7 +5790,7 @@ module Junoser
|
|
5786
5790
|
)
|
5787
5791
|
)
|
5788
5792
|
).as(:oneline),
|
5789
|
-
a(str("req-option"), (str("dns-server") | str("domain") | str("ntp-server") | str("time-zone") | str("sip-server") | str("sip-domain") | str("nis-server") | str("nis-domain") | str("fqdn") | str("vendor-spec"))),
|
5793
|
+
a(str("req-option"), enum(str("dns-server") | str("domain") | str("ntp-server") | str("time-zone") | str("sip-server") | str("sip-domain") | str("nis-server") | str("nis-domain") | str("fqdn") | str("vendor-spec"))),
|
5790
5794
|
a(str("retransmission-attempt"), arg),
|
5791
5795
|
str("no-dns-propagation"),
|
5792
5796
|
b(str("update-router-advertisement"),
|
@@ -6254,10 +6258,10 @@ module Junoser
|
|
6254
6258
|
b(str("hash-keys"),
|
6255
6259
|
c(
|
6256
6260
|
b(str("ingress-key"),
|
6257
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
6261
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
6258
6262
|
),
|
6259
6263
|
b(str("egress-key"),
|
6260
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
6264
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
6261
6265
|
)
|
6262
6266
|
)
|
6263
6267
|
)
|
@@ -6334,7 +6338,7 @@ module Junoser
|
|
6334
6338
|
)
|
6335
6339
|
)
|
6336
6340
|
).as(:oneline),
|
6337
|
-
a(str("flag"), (str("error") | str("event") | str("packet") | str("pipe") | str("pipe-detail") | str("all"))).as(:oneline)
|
6341
|
+
a(str("flag"), enum(str("error") | str("event") | str("packet") | str("pipe") | str("pipe-detail") | str("all"))).as(:oneline)
|
6338
6342
|
)
|
6339
6343
|
)
|
6340
6344
|
)
|
@@ -6419,7 +6423,7 @@ module Junoser
|
|
6419
6423
|
c(
|
6420
6424
|
b(str("security-to-group"),
|
6421
6425
|
c(
|
6422
|
-
a(str("security-model"), (str("usm") | str("v1") | str("v2c")),
|
6426
|
+
a(str("security-model"), enum(str("usm") | str("v1") | str("v2c")),
|
6423
6427
|
c(
|
6424
6428
|
b(a(str("security-name"), arg),
|
6425
6429
|
c(
|
@@ -6867,7 +6871,7 @@ module Junoser
|
|
6867
6871
|
)
|
6868
6872
|
)
|
6869
6873
|
).as(:oneline),
|
6870
|
-
a(str("flag"), (str("timer") | str("protocol-timeouts") | str("pdu") | str("varbind-error") | str("routing-socket") | str("interface-stats") | str("subagent") | str("general") | str("nonvolatile-sets") | str("all"))).as(:oneline)
|
6874
|
+
a(str("flag"), enum(str("timer") | str("protocol-timeouts") | str("pdu") | str("varbind-error") | str("routing-socket") | str("interface-stats") | str("subagent") | str("general") | str("nonvolatile-sets") | str("all"))).as(:oneline)
|
6871
6875
|
)
|
6872
6876
|
),
|
6873
6877
|
b(str("rmon"),
|
@@ -6999,7 +7003,7 @@ module Junoser
|
|
6999
7003
|
str("no-world-readable")
|
7000
7004
|
)
|
7001
7005
|
).as(:oneline),
|
7002
|
-
a(str("flag"), (str("configuration") | str("memory") | str("diagnostic") | str("all"))).as(:oneline)
|
7006
|
+
a(str("flag"), enum(str("configuration") | str("memory") | str("diagnostic") | str("all"))).as(:oneline)
|
7003
7007
|
)
|
7004
7008
|
)
|
7005
7009
|
)
|
@@ -7066,7 +7070,7 @@ module Junoser
|
|
7066
7070
|
b(str("attributes-match"),
|
7067
7071
|
s(
|
7068
7072
|
arg,
|
7069
|
-
((str("equals") | str("starts-with") | str("matches"))),
|
7073
|
+
enum((str("equals") | str("starts-with") | str("matches"))),
|
7070
7074
|
arg
|
7071
7075
|
)
|
7072
7076
|
).as(:oneline),
|
@@ -7197,7 +7201,7 @@ module Junoser
|
|
7197
7201
|
str("no-world-readable")
|
7198
7202
|
)
|
7199
7203
|
).as(:oneline),
|
7200
|
-
a(str("flag"), (str("events") | str("input") | str("offline") | str("output") | str("rpc") | str("xslt") | str("all"))).as(:oneline)
|
7204
|
+
a(str("flag"), enum(str("events") | str("input") | str("offline") | str("output") | str("rpc") | str("xslt") | str("all"))).as(:oneline)
|
7201
7205
|
)
|
7202
7206
|
),
|
7203
7207
|
b(a(str("file"), arg),
|
@@ -7264,7 +7268,7 @@ module Junoser
|
|
7264
7268
|
)
|
7265
7269
|
)
|
7266
7270
|
).as(:oneline),
|
7267
|
-
a(str("flag"), (str("server") | str("configuration") | str("events") | str("timer-events") | str("database") | str("policy") | str("registration") | str("syslogd") | str("all"))).as(:oneline)
|
7271
|
+
a(str("flag"), enum(str("server") | str("configuration") | str("events") | str("timer-events") | str("database") | str("policy") | str("registration") | str("syslogd") | str("all"))).as(:oneline)
|
7268
7272
|
)
|
7269
7273
|
),
|
7270
7274
|
b(str("redundancy-event"),
|
@@ -8263,8 +8267,8 @@ module Junoser
|
|
8263
8267
|
b(str("level"),
|
8264
8268
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
8265
8269
|
),
|
8266
|
-
a(str("flag"), (str("init") | str("config") | str("general") | str("request") | str("response") | str("high-availability") | str("debug") | str("request-in") | str("request-out") | str("response-in") | str("response-out") | str("client-request-in") | str("client-request-out") | str("all"))).as(:oneline),
|
8267
|
-
a(str("protocol"), (str("radius") | str("diameter") | str("all"))).as(:oneline)
|
8270
|
+
a(str("flag"), enum(str("init") | str("config") | str("general") | str("request") | str("response") | str("high-availability") | str("debug") | str("request-in") | str("request-out") | str("response-in") | str("response-out") | str("client-request-in") | str("client-request-out") | str("all"))).as(:oneline),
|
8271
|
+
a(str("protocol"), enum(str("radius") | str("diameter") | str("all"))).as(:oneline)
|
8268
8272
|
)
|
8269
8273
|
end
|
8270
8274
|
|
@@ -8608,7 +8612,7 @@ module Junoser
|
|
8608
8612
|
b(a(str("dynamic-profile"), arg),
|
8609
8613
|
c(
|
8610
8614
|
b(str("accept"),
|
8611
|
-
((str("inet6") | str("inet") | str("pppoe") | str("dhcp-v4") | str("dhcp-v6") | str("any")))
|
8615
|
+
enum((str("inet6") | str("inet") | str("pppoe") | str("dhcp-v4") | str("dhcp-v6") | str("any")))
|
8612
8616
|
),
|
8613
8617
|
a(str("ranges"), arg),
|
8614
8618
|
b(str("access-profile"),
|
@@ -8644,10 +8648,10 @@ module Junoser
|
|
8644
8648
|
c(
|
8645
8649
|
c(
|
8646
8650
|
b(str("accept"),
|
8647
|
-
((str("inet6") | str("inet") | str("pppoe") | str("dhcp-v4") | str("dhcp-v6") | str("any")))
|
8651
|
+
enum((str("inet6") | str("inet") | str("pppoe") | str("dhcp-v4") | str("dhcp-v6") | str("any")))
|
8648
8652
|
),
|
8649
8653
|
b(str("accept-out-of-band"),
|
8650
|
-
((str("ancp")))
|
8654
|
+
enum((str("ancp")))
|
8651
8655
|
)
|
8652
8656
|
),
|
8653
8657
|
a(str("ranges"), arg),
|
@@ -8701,7 +8705,7 @@ module Junoser
|
|
8701
8705
|
rule(:auto_configure_authentication_type) do
|
8702
8706
|
c(
|
8703
8707
|
b(str("packet-types"),
|
8704
|
-
((str("inet6") | str("inet") | str("pppoe") | str("dhcp-v4") | str("dhcp-v6") | str("any")))
|
8708
|
+
enum((str("inet6") | str("inet") | str("pppoe") | str("dhcp-v4") | str("dhcp-v6") | str("any")))
|
8705
8709
|
),
|
8706
8710
|
a(str("password"), arg),
|
8707
8711
|
b(str("username-include"),
|
@@ -9225,7 +9229,7 @@ module Junoser
|
|
9225
9229
|
b(str("level"),
|
9226
9230
|
(str("critical") | str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
9227
9231
|
),
|
9228
|
-
a(str("flag"), (str("init") | str("config") | str("general") | str("triggers") | str("cdr-encoding") | str("transport") | str("path-management") | str("fsm") | str("ipc") | str("resource") | str("group-fsm") | str("client-fsm") | str("timers") | str("online") | str("tpm") | str("all"))).as(:oneline)
|
9232
|
+
a(str("flag"), enum(str("init") | str("config") | str("general") | str("triggers") | str("cdr-encoding") | str("transport") | str("path-management") | str("fsm") | str("ipc") | str("resource") | str("group-fsm") | str("client-fsm") | str("timers") | str("online") | str("tpm") | str("all"))).as(:oneline)
|
9229
9233
|
)
|
9230
9234
|
end
|
9231
9235
|
|
@@ -9318,9 +9322,9 @@ module Junoser
|
|
9318
9322
|
b(str("aggregated-devices"),
|
9319
9323
|
chassis_agg_dev_type
|
9320
9324
|
),
|
9321
|
-
a(str("disk-partition"), (str("/var") | str("/config")),
|
9325
|
+
a(str("disk-partition"), enum(str("/var") | str("/config")),
|
9322
9326
|
c(
|
9323
|
-
a(str("level"), (str("high") | str("full")),
|
9327
|
+
a(str("level"), enum(str("high") | str("full")),
|
9324
9328
|
c(
|
9325
9329
|
b(str("free-space"),
|
9326
9330
|
ca(
|
@@ -9857,7 +9861,7 @@ module Junoser
|
|
9857
9861
|
)
|
9858
9862
|
)
|
9859
9863
|
).as(:oneline),
|
9860
|
-
a(str("flag"), (str("parse") | str("config-internal") | str("normal") | str("general") | str("state") | str("task") | str("timer") | str("krt") | str("lldp") | str("provision") | str("extended-port") | str("multi-chassis") | str("upgrade-group") | str("device") | str("tcp") | str("interface") | str("cluster") | str("all")),
|
9864
|
+
a(str("flag"), enum(str("parse") | str("config-internal") | str("normal") | str("general") | str("state") | str("task") | str("timer") | str("krt") | str("lldp") | str("provision") | str("extended-port") | str("multi-chassis") | str("upgrade-group") | str("device") | str("tcp") | str("interface") | str("cluster") | str("all")),
|
9861
9865
|
c(
|
9862
9866
|
str("disable")
|
9863
9867
|
)
|
@@ -10450,7 +10454,7 @@ module Junoser
|
|
10450
10454
|
rule(:chassis_fpc_error_level_type) do
|
10451
10455
|
c(
|
10452
10456
|
a(str("threshold"), arg),
|
10453
|
-
a(str("action"), (str("reset") | str("offline") | str("alarm") | str("get-state") | str("log") | str("disable-pfe") | str("offline-pic")))
|
10457
|
+
a(str("action"), enum(str("reset") | str("offline") | str("alarm") | str("get-state") | str("log") | str("disable-pfe") | str("offline-pic")))
|
10454
10458
|
)
|
10455
10459
|
end
|
10456
10460
|
|
@@ -11234,7 +11238,7 @@ module Junoser
|
|
11234
11238
|
c(
|
11235
11239
|
b(str("fabric-queue"),
|
11236
11240
|
c(
|
11237
|
-
a(str("priority"), (str("low") | str("high")),
|
11241
|
+
a(str("priority"), enum(str("low") | str("high")),
|
11238
11242
|
c(
|
11239
11243
|
a(str("threshold"), arg)
|
11240
11244
|
)
|
@@ -11243,7 +11247,7 @@ module Junoser
|
|
11243
11247
|
),
|
11244
11248
|
b(str("wan-queue"),
|
11245
11249
|
c(
|
11246
|
-
a(str("priority"), (str("low") | str("medium-low") | str("medium-high") | str("high")),
|
11250
|
+
a(str("priority"), enum(str("low") | str("medium-low") | str("medium-high") | str("high")),
|
11247
11251
|
c(
|
11248
11252
|
a(str("threshold"), arg)
|
11249
11253
|
)
|
@@ -11476,7 +11480,7 @@ module Junoser
|
|
11476
11480
|
str("session-offload"),
|
11477
11481
|
str("no-default-packages"),
|
11478
11482
|
a(str("package"), arg),
|
11479
|
-
a(str("syslog"), (str("external") | str("pfe") | str("daemon") | str("kernel")),
|
11483
|
+
a(str("syslog"), enum(str("external") | str("pfe") | str("daemon") | str("kernel")),
|
11480
11484
|
c(
|
11481
11485
|
c(
|
11482
11486
|
str("any"),
|
@@ -11847,7 +11851,8 @@ module Junoser
|
|
11847
11851
|
str("sa-multicast")
|
11848
11852
|
)
|
11849
11853
|
),
|
11850
|
-
str("no-mcast-replication")
|
11854
|
+
str("no-mcast-replication"),
|
11855
|
+
a(str("number-of-sub-ports"), arg)
|
11851
11856
|
)
|
11852
11857
|
)
|
11853
11858
|
end
|
@@ -11906,7 +11911,7 @@ module Junoser
|
|
11906
11911
|
c(
|
11907
11912
|
b(str("traceoptions"),
|
11908
11913
|
c(
|
11909
|
-
a(str("flag"), (str("update") | str("all"))).as(:oneline)
|
11914
|
+
a(str("flag"), enum(str("update") | str("all"))).as(:oneline)
|
11910
11915
|
)
|
11911
11916
|
)
|
11912
11917
|
)
|
@@ -12188,7 +12193,7 @@ module Junoser
|
|
12188
12193
|
c(
|
12189
12194
|
b(a(str("forwarding-class"), arg),
|
12190
12195
|
c(
|
12191
|
-
a(str("loss-priority"), (str("low") | str("high"))).as(:oneline)
|
12196
|
+
a(str("loss-priority"), enum(str("low") | str("high"))).as(:oneline)
|
12192
12197
|
)
|
12193
12198
|
)
|
12194
12199
|
)
|
@@ -12330,7 +12335,7 @@ module Junoser
|
|
12330
12335
|
)
|
12331
12336
|
)
|
12332
12337
|
).as(:oneline),
|
12333
|
-
a(str("flag"), (str("configuration") | str("clicommand") | str("general") | str("rtsock") | str("statistics") | str("rules") | str("ssets") | str("ipc") | str("gres") | str("re-services") | str("re-svc-debug-stat") | str("all"))).as(:oneline)
|
12338
|
+
a(str("flag"), enum(str("configuration") | str("clicommand") | str("general") | str("rtsock") | str("statistics") | str("rules") | str("ssets") | str("ipc") | str("gres") | str("re-services") | str("re-svc-debug-stat") | str("all"))).as(:oneline)
|
12334
12339
|
)
|
12335
12340
|
end
|
12336
12341
|
|
@@ -14855,10 +14860,10 @@ module Junoser
|
|
14855
14860
|
c(
|
14856
14861
|
str("reject"),
|
14857
14862
|
b(str("committed-information-rate"),
|
14858
|
-
(arg)
|
14863
|
+
enum(arg)
|
14859
14864
|
),
|
14860
14865
|
b(str("committed-burst-size"),
|
14861
|
-
(arg)
|
14866
|
+
enum(arg)
|
14862
14867
|
),
|
14863
14868
|
a(str("dscp"), arg)
|
14864
14869
|
)
|
@@ -15082,7 +15087,7 @@ module Junoser
|
|
15082
15087
|
end
|
15083
15088
|
|
15084
15089
|
rule(:call_usage_method_type) do
|
15085
|
-
((str("method-invite"))).as(:arg)
|
15090
|
+
enum((str("method-invite"))).as(:arg)
|
15086
15091
|
end
|
15087
15092
|
|
15088
15093
|
rule(:ggsn_pgw_apn_services) do
|
@@ -15796,7 +15801,7 @@ module Junoser
|
|
15796
15801
|
)
|
15797
15802
|
)
|
15798
15803
|
).as(:oneline),
|
15799
|
-
a(str("flag"), (str("all"))).as(:oneline),
|
15804
|
+
a(str("flag"), enum(str("all"))).as(:oneline),
|
15800
15805
|
b(str("level"),
|
15801
15806
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
15802
15807
|
)
|
@@ -17571,7 +17576,7 @@ module Junoser
|
|
17571
17576
|
),
|
17572
17577
|
b(str("traceoptions"),
|
17573
17578
|
c(
|
17574
|
-
a(str("flag"), (str("ipc") | str("event") | str("media") | str("all"))).as(:oneline)
|
17579
|
+
a(str("flag"), enum(str("ipc") | str("event") | str("media") | str("all"))).as(:oneline)
|
17575
17580
|
)
|
17576
17581
|
),
|
17577
17582
|
str("passive-monitor-mode"),
|
@@ -18800,7 +18805,7 @@ module Junoser
|
|
18800
18805
|
b(str("fec"),
|
18801
18806
|
(str("sdfec") | str("sdfec25"))
|
18802
18807
|
),
|
18803
|
-
a(str("alarm"), (str("low-light-alarm")),
|
18808
|
+
a(str("alarm"), enum(str("low-light-alarm")),
|
18804
18809
|
c(
|
18805
18810
|
c(
|
18806
18811
|
str("syslog"),
|
@@ -18964,7 +18969,7 @@ module Junoser
|
|
18964
18969
|
)
|
18965
18970
|
)
|
18966
18971
|
),
|
18967
|
-
a(str("warning"), (str("low-light-warning")),
|
18972
|
+
a(str("warning"), enum(str("low-light-warning")),
|
18968
18973
|
c(
|
18969
18974
|
c(
|
18970
18975
|
str("syslog"),
|
@@ -19408,7 +19413,7 @@ module Junoser
|
|
19408
19413
|
)
|
19409
19414
|
)
|
19410
19415
|
),
|
19411
|
-
a(str("unit"), (arg | arg | arg),
|
19416
|
+
a(str("unit"), enum(arg | arg | arg),
|
19412
19417
|
c(
|
19413
19418
|
b(str("policer-overhead"),
|
19414
19419
|
ca(
|
@@ -19496,10 +19501,10 @@ module Junoser
|
|
19496
19501
|
),
|
19497
19502
|
str("actual-transit-statistics"),
|
19498
19503
|
b(str("demux-source"),
|
19499
|
-
((str("inet6") | str("inet")))
|
19504
|
+
enum((str("inet6") | str("inet")))
|
19500
19505
|
),
|
19501
19506
|
b(str("demux-destination"),
|
19502
|
-
((str("inet6") | str("inet")))
|
19507
|
+
enum((str("inet6") | str("inet")))
|
19503
19508
|
),
|
19504
19509
|
b(str("encapsulation"),
|
19505
19510
|
(str("atm-nlpid") | str("atm-cisco-nlpid") | str("atm-snap") | str("atm-vc-mux") | str("atm-ccc-vc-mux") | str("atm-tcc-vc-mux") | str("atm-tcc-snap") | str("atm-ccc-cell-relay") | str("vlan-vci-ccc") | str("ether-over-atm-llc") | str("ether-vpls-over-atm-llc") | str("ppp-over-ether-over-atm-llc") | str("ppp-over-ether") | str("atm-ppp-vc-mux") | str("atm-ppp-llc") | str("atm-mlppp-llc") | str("frame-relay-ppp") | str("frame-relay-ccc") | str("frame-relay") | str("frame-relay-tcc") | str("frame-relay-ether-type") | str("frame-relay-ether-type-tcc") | str("ether-vpls-fr") | str("vlan-ccc") | str("ethernet-ccc") | str("vlan-vpls") | str("vlan-bridge") | str("dix") | str("ethernet-vpls") | str("ethernet-bridge") | str("ethernet") | str("vlan") | str("vlan-tcc") | str("multilink-ppp") | str("multilink-frame-relay-end-to-end") | str("ppp-ccc"))
|
@@ -20072,7 +20077,7 @@ module Junoser
|
|
20072
20077
|
b(str("client-type"),
|
20073
20078
|
(str("stateful") | str("autoconfig"))
|
20074
20079
|
),
|
20075
|
-
a(str("client-ia-type"), (str("ia-na") | str("ia-pd"))),
|
20080
|
+
a(str("client-ia-type"), enum(str("ia-na") | str("ia-pd"))),
|
20076
20081
|
str("rapid-commit"),
|
20077
20082
|
b(str("client-identifier"),
|
20078
20083
|
c(
|
@@ -20081,7 +20086,7 @@ module Junoser
|
|
20081
20086
|
)
|
20082
20087
|
)
|
20083
20088
|
).as(:oneline),
|
20084
|
-
a(str("req-option"), (str("dns-server") | str("domain") | str("ntp-server") | str("time-zone") | str("sip-server") | str("sip-domain") | str("nis-server") | str("nis-domain") | str("fqdn") | str("vendor-spec"))),
|
20089
|
+
a(str("req-option"), enum(str("dns-server") | str("domain") | str("ntp-server") | str("time-zone") | str("sip-server") | str("sip-domain") | str("nis-server") | str("nis-domain") | str("fqdn") | str("vendor-spec"))),
|
20085
20090
|
a(str("retransmission-attempt"), arg),
|
20086
20091
|
str("no-dns-propagation"),
|
20087
20092
|
b(str("update-router-advertisement"),
|
@@ -20549,10 +20554,10 @@ module Junoser
|
|
20549
20554
|
b(str("hash-keys"),
|
20550
20555
|
c(
|
20551
20556
|
b(str("ingress-key"),
|
20552
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
20557
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
20553
20558
|
),
|
20554
20559
|
b(str("egress-key"),
|
20555
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
20560
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
20556
20561
|
)
|
20557
20562
|
)
|
20558
20563
|
)
|
@@ -20644,7 +20649,7 @@ module Junoser
|
|
20644
20649
|
b(str("level"),
|
20645
20650
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
20646
20651
|
),
|
20647
|
-
a(str("flag"), (str("timer") | str("routing-socket") | str("parse") | str("ike") | str("policy-manager") | str("general") | str("database") | str("certificates") | str("snmp") | str("ams") | str("lic") | str("all"))).as(:oneline)
|
20652
|
+
a(str("flag"), enum(str("timer") | str("routing-socket") | str("parse") | str("ike") | str("policy-manager") | str("general") | str("database") | str("certificates") | str("snmp") | str("ams") | str("lic") | str("all"))).as(:oneline)
|
20648
20653
|
)
|
20649
20654
|
end
|
20650
20655
|
|
@@ -20668,7 +20673,7 @@ module Junoser
|
|
20668
20673
|
c(
|
20669
20674
|
b(str("manual"),
|
20670
20675
|
c(
|
20671
|
-
a(str("direction"), (str("inbound") | str("outbound") | str("bidirectional")),
|
20676
|
+
a(str("direction"), enum(str("inbound") | str("outbound") | str("bidirectional")),
|
20672
20677
|
c(
|
20673
20678
|
b(str("protocol"),
|
20674
20679
|
(str("ah") | str("esp") | str("bundle"))
|
@@ -27819,7 +27824,7 @@ module Junoser
|
|
27819
27824
|
b(str("file"),
|
27820
27825
|
trace_file_type
|
27821
27826
|
),
|
27822
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
27827
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
27823
27828
|
c(
|
27824
27829
|
str("send"),
|
27825
27830
|
str("receive"),
|
@@ -27962,7 +27967,7 @@ module Junoser
|
|
27962
27967
|
b(str("file"),
|
27963
27968
|
trace_file_type
|
27964
27969
|
),
|
27965
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
27970
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
27966
27971
|
c(
|
27967
27972
|
str("send"),
|
27968
27973
|
str("receive"),
|
@@ -28798,7 +28803,7 @@ module Junoser
|
|
28798
28803
|
)
|
28799
28804
|
)
|
28800
28805
|
).as(:oneline),
|
28801
|
-
a(str("flag"), (str("state") | str("packet") | str("flow") | str("packet-option") | str("dhcpv6-state") | str("dhcpv6-packet") | str("dhcpv6-packet-option") | str("all"))).as(:oneline)
|
28806
|
+
a(str("flag"), enum(str("state") | str("packet") | str("flow") | str("packet-option") | str("dhcpv6-state") | str("dhcpv6-packet") | str("dhcpv6-packet-option") | str("all"))).as(:oneline)
|
28802
28807
|
)
|
28803
28808
|
end
|
28804
28809
|
|
@@ -28889,7 +28894,7 @@ module Junoser
|
|
28889
28894
|
)
|
28890
28895
|
)
|
28891
28896
|
).as(:oneline),
|
28892
|
-
a(str("flag"), (str("state") | str("packet") | str("flow") | str("packet-option") | str("dhcpv6-state") | str("dhcpv6-packet") | str("dhcpv6-packet-option") | str("all") | str("database") | str("persistent") | str("interface") | str("rtsock") | str("flow-notify") | str("io") | str("ha") | str("ui") | str("general") | str("fwd") | str("rpd") | str("auth") | str("profile") | str("session-db") | str("performance") | str("statistics") | str("dhcpv6-io") | str("dhcpv6-rpd") | str("dhcpv6-session-db") | str("dhcpv6-general") | str("liveness-detection") | str("security-persistence") | str("mclag"))).as(:oneline)
|
28897
|
+
a(str("flag"), enum(str("state") | str("packet") | str("flow") | str("packet-option") | str("dhcpv6-state") | str("dhcpv6-packet") | str("dhcpv6-packet-option") | str("all") | str("database") | str("persistent") | str("interface") | str("rtsock") | str("flow-notify") | str("io") | str("ha") | str("ui") | str("general") | str("fwd") | str("rpd") | str("auth") | str("profile") | str("session-db") | str("performance") | str("statistics") | str("dhcpv6-io") | str("dhcpv6-rpd") | str("dhcpv6-session-db") | str("dhcpv6-general") | str("liveness-detection") | str("security-persistence") | str("mclag"))).as(:oneline)
|
28893
28898
|
)
|
28894
28899
|
end
|
28895
28900
|
|
@@ -29017,7 +29022,7 @@ module Junoser
|
|
29017
29022
|
b(str("level"),
|
29018
29023
|
(str("critical") | str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
29019
29024
|
),
|
29020
|
-
a(str("flag"), (str("general") | str("mirror") | str("connection") | str("file-operations") | str("journaling") | str("all"))).as(:oneline)
|
29025
|
+
a(str("flag"), enum(str("general") | str("mirror") | str("connection") | str("file-operations") | str("journaling") | str("all"))).as(:oneline)
|
29021
29026
|
)
|
29022
29027
|
end
|
29023
29028
|
|
@@ -29446,7 +29451,7 @@ module Junoser
|
|
29446
29451
|
),
|
29447
29452
|
b(a(str("adaptive-shapers"), arg),
|
29448
29453
|
c(
|
29449
|
-
a(str("trigger"), (str("becn")),
|
29454
|
+
a(str("trigger"), enum(str("becn")),
|
29450
29455
|
c(
|
29451
29456
|
b(str("shaping-rate"),
|
29452
29457
|
c(
|
@@ -29784,7 +29789,7 @@ module Junoser
|
|
29784
29789
|
),
|
29785
29790
|
b(str("dynamic-class-of-service-options"),
|
29786
29791
|
c(
|
29787
|
-
a(str("vendor-specific-tags"), (str("actual-data-rate-downstream") | str("access-loop-encapsulation")))
|
29792
|
+
a(str("vendor-specific-tags"), enum(str("actual-data-rate-downstream") | str("access-loop-encapsulation")))
|
29788
29793
|
)
|
29789
29794
|
),
|
29790
29795
|
b(str("interfaces"),
|
@@ -30015,7 +30020,7 @@ module Junoser
|
|
30015
30020
|
c(
|
30016
30021
|
b(str("scheduler-map"),
|
30017
30022
|
c(
|
30018
|
-
a(str("priority"), (str("low") | str("high")),
|
30023
|
+
a(str("priority"), enum(str("low") | str("high")),
|
30019
30024
|
c(
|
30020
30025
|
a(str("scheduler"), arg)
|
30021
30026
|
)
|
@@ -30148,7 +30153,7 @@ module Junoser
|
|
30148
30153
|
),
|
30149
30154
|
b(a(str("adjustment-control-profiles"), arg),
|
30150
30155
|
c(
|
30151
|
-
a(str("application"), (str("ancp") | str("radius-coa") | str("pppoe-tags") | str("dhcp-tags")),
|
30156
|
+
a(str("application"), enum(str("ancp") | str("radius-coa") | str("pppoe-tags") | str("dhcp-tags")),
|
30152
30157
|
c(
|
30153
30158
|
a(str("priority"), arg),
|
30154
30159
|
b(str("algorithm"),
|
@@ -30172,7 +30177,7 @@ module Junoser
|
|
30172
30177
|
)
|
30173
30178
|
)
|
30174
30179
|
).as(:oneline),
|
30175
|
-
a(str("flag"), (str("init") | str("show") | str("route-socket") | str("parse") | str("process") | str("util") | str("restart") | str("snmp") | str("hardware-database") | str("asynch") | str("dynamic") | str("cos-adjustment") | str("performance-monitor") | str("chassis-scheduler") | str("cn-util") | str("snmp-timeouts") | str("all") | str("feature-capability") | str("application"))).as(:oneline)
|
30180
|
+
a(str("flag"), enum(str("init") | str("show") | str("route-socket") | str("parse") | str("process") | str("util") | str("restart") | str("snmp") | str("hardware-database") | str("asynch") | str("dynamic") | str("cos-adjustment") | str("performance-monitor") | str("chassis-scheduler") | str("cn-util") | str("snmp-timeouts") | str("all") | str("feature-capability") | str("application"))).as(:oneline)
|
30176
30181
|
)
|
30177
30182
|
),
|
30178
30183
|
b(str("multi-destination"),
|
@@ -30282,7 +30287,7 @@ module Junoser
|
|
30282
30287
|
)
|
30283
30288
|
)
|
30284
30289
|
).as(:oneline),
|
30285
|
-
a(str("flag"), (str("all"))).as(:oneline),
|
30290
|
+
a(str("flag"), enum(str("all"))).as(:oneline),
|
30286
30291
|
b(str("level"),
|
30287
30292
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
30288
30293
|
)
|
@@ -30446,7 +30451,7 @@ module Junoser
|
|
30446
30451
|
)
|
30447
30452
|
)
|
30448
30453
|
),
|
30449
|
-
a(str("unit"), (str("*")),
|
30454
|
+
a(str("unit"), enum(str("*")),
|
30450
30455
|
c(
|
30451
30456
|
a(str("output-forwarding-class-map"), arg),
|
30452
30457
|
a(str("forwarding-class"), arg),
|
@@ -31558,7 +31563,7 @@ module Junoser
|
|
31558
31563
|
b(str("file"),
|
31559
31564
|
trace_file_type
|
31560
31565
|
),
|
31561
|
-
a(str("flag"), (str("parse") | str("config-internal") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
31566
|
+
a(str("flag"), enum(str("parse") | str("config-internal") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
31562
31567
|
c(
|
31563
31568
|
str("disable")
|
31564
31569
|
)
|
@@ -31636,7 +31641,7 @@ module Junoser
|
|
31636
31641
|
b(str("forwarding-cache"),
|
31637
31642
|
c(
|
31638
31643
|
str("allow-maximum"),
|
31639
|
-
a(str("family"), (str("inet6") | str("inet")),
|
31644
|
+
a(str("family"), enum(str("inet6") | str("inet")),
|
31640
31645
|
c(
|
31641
31646
|
b(str("threshold"),
|
31642
31647
|
c(
|
@@ -31747,7 +31752,7 @@ module Junoser
|
|
31747
31752
|
)
|
31748
31753
|
)
|
31749
31754
|
).as(:oneline),
|
31750
|
-
a(str("flag"), (str("all") | str("kernel") | str("change-events") | str("kernel-detail") | str("config-states") | str("resource-usage") | str("gres-events") | str("select-events") | str("bfd-events") | str("lib-events") | str("reserved") | str("emergency") | str("alert") | str("critical") | str("error") | str("warning") | str("notice") | str("informational") | str("debugging") | str("verbose") | str("japi")),
|
31755
|
+
a(str("flag"), enum(str("all") | str("kernel") | str("change-events") | str("kernel-detail") | str("config-states") | str("resource-usage") | str("gres-events") | str("select-events") | str("bfd-events") | str("lib-events") | str("reserved") | str("emergency") | str("alert") | str("critical") | str("error") | str("warning") | str("notice") | str("informational") | str("debugging") | str("verbose") | str("japi")),
|
31751
31756
|
c(
|
31752
31757
|
str("disable")
|
31753
31758
|
)
|
@@ -31778,7 +31783,7 @@ module Junoser
|
|
31778
31783
|
),
|
31779
31784
|
b(str("traceoptions"),
|
31780
31785
|
c(
|
31781
|
-
a(str("flag"), (str("ipc") | str("event") | str("media") | str("all"))).as(:oneline)
|
31786
|
+
a(str("flag"), enum(str("ipc") | str("event") | str("media") | str("all"))).as(:oneline)
|
31782
31787
|
)
|
31783
31788
|
),
|
31784
31789
|
str("passive-monitor-mode"),
|
@@ -33007,7 +33012,7 @@ module Junoser
|
|
33007
33012
|
b(str("fec"),
|
33008
33013
|
(str("sdfec") | str("sdfec25"))
|
33009
33014
|
),
|
33010
|
-
a(str("alarm"), (str("low-light-alarm")),
|
33015
|
+
a(str("alarm"), enum(str("low-light-alarm")),
|
33011
33016
|
c(
|
33012
33017
|
c(
|
33013
33018
|
str("syslog"),
|
@@ -33171,7 +33176,7 @@ module Junoser
|
|
33171
33176
|
)
|
33172
33177
|
)
|
33173
33178
|
),
|
33174
|
-
a(str("warning"), (str("low-light-warning")),
|
33179
|
+
a(str("warning"), enum(str("low-light-warning")),
|
33175
33180
|
c(
|
33176
33181
|
c(
|
33177
33182
|
str("syslog"),
|
@@ -33615,7 +33620,7 @@ module Junoser
|
|
33615
33620
|
)
|
33616
33621
|
)
|
33617
33622
|
),
|
33618
|
-
a(str("unit"), (arg | arg | arg),
|
33623
|
+
a(str("unit"), enum(arg | arg | arg),
|
33619
33624
|
c(
|
33620
33625
|
b(str("policer-overhead"),
|
33621
33626
|
ca(
|
@@ -33703,10 +33708,10 @@ module Junoser
|
|
33703
33708
|
),
|
33704
33709
|
str("actual-transit-statistics"),
|
33705
33710
|
b(str("demux-source"),
|
33706
|
-
((str("inet6") | str("inet")))
|
33711
|
+
enum((str("inet6") | str("inet")))
|
33707
33712
|
),
|
33708
33713
|
b(str("demux-destination"),
|
33709
|
-
((str("inet6") | str("inet")))
|
33714
|
+
enum((str("inet6") | str("inet")))
|
33710
33715
|
),
|
33711
33716
|
b(str("encapsulation"),
|
33712
33717
|
(str("atm-nlpid") | str("atm-cisco-nlpid") | str("atm-snap") | str("atm-vc-mux") | str("atm-ccc-vc-mux") | str("atm-tcc-vc-mux") | str("atm-tcc-snap") | str("atm-ccc-cell-relay") | str("vlan-vci-ccc") | str("ether-over-atm-llc") | str("ether-vpls-over-atm-llc") | str("ppp-over-ether-over-atm-llc") | str("ppp-over-ether") | str("atm-ppp-vc-mux") | str("atm-ppp-llc") | str("atm-mlppp-llc") | str("frame-relay-ppp") | str("frame-relay-ccc") | str("frame-relay") | str("frame-relay-tcc") | str("frame-relay-ether-type") | str("frame-relay-ether-type-tcc") | str("ether-vpls-fr") | str("vlan-ccc") | str("ethernet-ccc") | str("vlan-vpls") | str("vlan-bridge") | str("dix") | str("ethernet-vpls") | str("ethernet-bridge") | str("ethernet") | str("vlan") | str("vlan-tcc") | str("multilink-ppp") | str("multilink-frame-relay-end-to-end") | str("ppp-ccc"))
|
@@ -34279,7 +34284,7 @@ module Junoser
|
|
34279
34284
|
b(str("client-type"),
|
34280
34285
|
(str("stateful") | str("autoconfig"))
|
34281
34286
|
),
|
34282
|
-
a(str("client-ia-type"), (str("ia-na") | str("ia-pd"))),
|
34287
|
+
a(str("client-ia-type"), enum(str("ia-na") | str("ia-pd"))),
|
34283
34288
|
str("rapid-commit"),
|
34284
34289
|
b(str("client-identifier"),
|
34285
34290
|
c(
|
@@ -34288,7 +34293,7 @@ module Junoser
|
|
34288
34293
|
)
|
34289
34294
|
)
|
34290
34295
|
).as(:oneline),
|
34291
|
-
a(str("req-option"), (str("dns-server") | str("domain") | str("ntp-server") | str("time-zone") | str("sip-server") | str("sip-domain") | str("nis-server") | str("nis-domain") | str("fqdn") | str("vendor-spec"))),
|
34296
|
+
a(str("req-option"), enum(str("dns-server") | str("domain") | str("ntp-server") | str("time-zone") | str("sip-server") | str("sip-domain") | str("nis-server") | str("nis-domain") | str("fqdn") | str("vendor-spec"))),
|
34292
34297
|
a(str("retransmission-attempt"), arg),
|
34293
34298
|
str("no-dns-propagation"),
|
34294
34299
|
b(str("update-router-advertisement"),
|
@@ -34756,10 +34761,10 @@ module Junoser
|
|
34756
34761
|
b(str("hash-keys"),
|
34757
34762
|
c(
|
34758
34763
|
b(str("ingress-key"),
|
34759
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
34764
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
34760
34765
|
),
|
34761
34766
|
b(str("egress-key"),
|
34762
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
34767
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
34763
34768
|
)
|
34764
34769
|
)
|
34765
34770
|
)
|
@@ -34859,7 +34864,7 @@ module Junoser
|
|
34859
34864
|
)
|
34860
34865
|
)
|
34861
34866
|
).as(:oneline),
|
34862
|
-
a(str("flag"), (str("all") | str("kernel") | str("change-events") | str("kernel-detail") | str("config-states") | str("resource-usage") | str("gres-events") | str("select-events") | str("bfd-events") | str("lib-events") | str("reserved") | str("emergency") | str("alert") | str("critical") | str("error") | str("warning") | str("notice") | str("informational") | str("debugging") | str("verbose") | str("japi")),
|
34867
|
+
a(str("flag"), enum(str("all") | str("kernel") | str("change-events") | str("kernel-detail") | str("config-states") | str("resource-usage") | str("gres-events") | str("select-events") | str("bfd-events") | str("lib-events") | str("reserved") | str("emergency") | str("alert") | str("critical") | str("error") | str("warning") | str("notice") | str("informational") | str("debugging") | str("verbose") | str("japi")),
|
34863
34868
|
c(
|
34864
34869
|
str("disable")
|
34865
34870
|
)
|
@@ -34890,7 +34895,7 @@ module Junoser
|
|
34890
34895
|
),
|
34891
34896
|
b(str("traceoptions"),
|
34892
34897
|
c(
|
34893
|
-
a(str("flag"), (str("ipc") | str("event") | str("media") | str("all"))).as(:oneline)
|
34898
|
+
a(str("flag"), enum(str("ipc") | str("event") | str("media") | str("all"))).as(:oneline)
|
34894
34899
|
)
|
34895
34900
|
),
|
34896
34901
|
str("passive-monitor-mode"),
|
@@ -36119,7 +36124,7 @@ module Junoser
|
|
36119
36124
|
b(str("fec"),
|
36120
36125
|
(str("sdfec") | str("sdfec25"))
|
36121
36126
|
),
|
36122
|
-
a(str("alarm"), (str("low-light-alarm")),
|
36127
|
+
a(str("alarm"), enum(str("low-light-alarm")),
|
36123
36128
|
c(
|
36124
36129
|
c(
|
36125
36130
|
str("syslog"),
|
@@ -36283,7 +36288,7 @@ module Junoser
|
|
36283
36288
|
)
|
36284
36289
|
)
|
36285
36290
|
),
|
36286
|
-
a(str("warning"), (str("low-light-warning")),
|
36291
|
+
a(str("warning"), enum(str("low-light-warning")),
|
36287
36292
|
c(
|
36288
36293
|
c(
|
36289
36294
|
str("syslog"),
|
@@ -36727,7 +36732,7 @@ module Junoser
|
|
36727
36732
|
)
|
36728
36733
|
)
|
36729
36734
|
),
|
36730
|
-
a(str("unit"), (arg | arg | arg),
|
36735
|
+
a(str("unit"), enum(arg | arg | arg),
|
36731
36736
|
c(
|
36732
36737
|
b(str("policer-overhead"),
|
36733
36738
|
ca(
|
@@ -36815,10 +36820,10 @@ module Junoser
|
|
36815
36820
|
),
|
36816
36821
|
str("actual-transit-statistics"),
|
36817
36822
|
b(str("demux-source"),
|
36818
|
-
((str("inet6") | str("inet")))
|
36823
|
+
enum((str("inet6") | str("inet")))
|
36819
36824
|
),
|
36820
36825
|
b(str("demux-destination"),
|
36821
|
-
((str("inet6") | str("inet")))
|
36826
|
+
enum((str("inet6") | str("inet")))
|
36822
36827
|
),
|
36823
36828
|
b(str("encapsulation"),
|
36824
36829
|
(str("atm-nlpid") | str("atm-cisco-nlpid") | str("atm-snap") | str("atm-vc-mux") | str("atm-ccc-vc-mux") | str("atm-tcc-vc-mux") | str("atm-tcc-snap") | str("atm-ccc-cell-relay") | str("vlan-vci-ccc") | str("ether-over-atm-llc") | str("ether-vpls-over-atm-llc") | str("ppp-over-ether-over-atm-llc") | str("ppp-over-ether") | str("atm-ppp-vc-mux") | str("atm-ppp-llc") | str("atm-mlppp-llc") | str("frame-relay-ppp") | str("frame-relay-ccc") | str("frame-relay") | str("frame-relay-tcc") | str("frame-relay-ether-type") | str("frame-relay-ether-type-tcc") | str("ether-vpls-fr") | str("vlan-ccc") | str("ethernet-ccc") | str("vlan-vpls") | str("vlan-bridge") | str("dix") | str("ethernet-vpls") | str("ethernet-bridge") | str("ethernet") | str("vlan") | str("vlan-tcc") | str("multilink-ppp") | str("multilink-frame-relay-end-to-end") | str("ppp-ccc"))
|
@@ -37391,7 +37396,7 @@ module Junoser
|
|
37391
37396
|
b(str("client-type"),
|
37392
37397
|
(str("stateful") | str("autoconfig"))
|
37393
37398
|
),
|
37394
|
-
a(str("client-ia-type"), (str("ia-na") | str("ia-pd"))),
|
37399
|
+
a(str("client-ia-type"), enum(str("ia-na") | str("ia-pd"))),
|
37395
37400
|
str("rapid-commit"),
|
37396
37401
|
b(str("client-identifier"),
|
37397
37402
|
c(
|
@@ -37400,7 +37405,7 @@ module Junoser
|
|
37400
37405
|
)
|
37401
37406
|
)
|
37402
37407
|
).as(:oneline),
|
37403
|
-
a(str("req-option"), (str("dns-server") | str("domain") | str("ntp-server") | str("time-zone") | str("sip-server") | str("sip-domain") | str("nis-server") | str("nis-domain") | str("fqdn") | str("vendor-spec"))),
|
37408
|
+
a(str("req-option"), enum(str("dns-server") | str("domain") | str("ntp-server") | str("time-zone") | str("sip-server") | str("sip-domain") | str("nis-server") | str("nis-domain") | str("fqdn") | str("vendor-spec"))),
|
37404
37409
|
a(str("retransmission-attempt"), arg),
|
37405
37410
|
str("no-dns-propagation"),
|
37406
37411
|
b(str("update-router-advertisement"),
|
@@ -37868,10 +37873,10 @@ module Junoser
|
|
37868
37873
|
b(str("hash-keys"),
|
37869
37874
|
c(
|
37870
37875
|
b(str("ingress-key"),
|
37871
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
37876
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
37872
37877
|
),
|
37873
37878
|
b(str("egress-key"),
|
37874
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
37879
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
37875
37880
|
)
|
37876
37881
|
)
|
37877
37882
|
)
|
@@ -37939,7 +37944,7 @@ module Junoser
|
|
37939
37944
|
b(str("file"),
|
37940
37945
|
trace_file_type
|
37941
37946
|
),
|
37942
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("mtrace") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
37947
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("mtrace") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
37943
37948
|
c(
|
37944
37949
|
str("send"),
|
37945
37950
|
str("receive"),
|
@@ -38057,7 +38062,7 @@ module Junoser
|
|
38057
38062
|
)
|
38058
38063
|
)
|
38059
38064
|
).as(:oneline),
|
38060
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("protocol") | str("action-profile") | str("all"))).as(:oneline)
|
38065
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("protocol") | str("action-profile") | str("all"))).as(:oneline)
|
38061
38066
|
)
|
38062
38067
|
),
|
38063
38068
|
b(a(str("action-profile"), arg),
|
@@ -38553,7 +38558,7 @@ module Junoser
|
|
38553
38558
|
)
|
38554
38559
|
)
|
38555
38560
|
).as(:oneline),
|
38556
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("protocol") | str("init") | str("error") | str("packet") | str("all"))).as(:oneline)
|
38561
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("protocol") | str("init") | str("error") | str("packet") | str("all"))).as(:oneline)
|
38557
38562
|
)
|
38558
38563
|
),
|
38559
38564
|
a(str("status-counter"), arg),
|
@@ -38583,7 +38588,7 @@ module Junoser
|
|
38583
38588
|
b(str("file"),
|
38584
38589
|
trace_file_type
|
38585
38590
|
),
|
38586
|
-
a(str("flag"), (str("events") | str("pdu") | str("timers") | str("error") | str("all"))).as(:oneline)
|
38591
|
+
a(str("flag"), enum(str("events") | str("pdu") | str("timers") | str("error") | str("all"))).as(:oneline)
|
38587
38592
|
)
|
38588
38593
|
),
|
38589
38594
|
b(str("interval"),
|
@@ -38615,7 +38620,7 @@ module Junoser
|
|
38615
38620
|
)
|
38616
38621
|
)
|
38617
38622
|
).as(:oneline),
|
38618
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("protocol") | str("all"))).as(:oneline)
|
38623
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("protocol") | str("all"))).as(:oneline)
|
38619
38624
|
)
|
38620
38625
|
),
|
38621
38626
|
b(a(str("interface"), arg),
|
@@ -38635,7 +38640,7 @@ module Junoser
|
|
38635
38640
|
b(str("file"),
|
38636
38641
|
trace_file_type
|
38637
38642
|
),
|
38638
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("mtrace") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
38643
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("mtrace") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
38639
38644
|
c(
|
38640
38645
|
str("send"),
|
38641
38646
|
str("receive"),
|
@@ -38714,7 +38719,7 @@ module Junoser
|
|
38714
38719
|
b(str("file"),
|
38715
38720
|
trace_file_type
|
38716
38721
|
),
|
38717
|
-
a(str("flag"), (str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all"))).as(:oneline)
|
38722
|
+
a(str("flag"), enum(str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all"))).as(:oneline)
|
38718
38723
|
)
|
38719
38724
|
),
|
38720
38725
|
a(str("interface"), arg | arg,
|
@@ -39326,7 +39331,7 @@ module Junoser
|
|
39326
39331
|
b(str("file"),
|
39327
39332
|
trace_file_type
|
39328
39333
|
),
|
39329
|
-
a(str("flag"), (str("parse") | str("config-internal") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
39334
|
+
a(str("flag"), enum(str("parse") | str("config-internal") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
39330
39335
|
c(
|
39331
39336
|
str("disable")
|
39332
39337
|
)
|
@@ -39404,7 +39409,7 @@ module Junoser
|
|
39404
39409
|
b(str("forwarding-cache"),
|
39405
39410
|
c(
|
39406
39411
|
str("allow-maximum"),
|
39407
|
-
a(str("family"), (str("inet6") | str("inet")),
|
39412
|
+
a(str("family"), enum(str("inet6") | str("inet")),
|
39408
39413
|
c(
|
39409
39414
|
b(str("threshold"),
|
39410
39415
|
c(
|
@@ -39781,7 +39786,7 @@ module Junoser
|
|
39781
39786
|
)
|
39782
39787
|
)
|
39783
39788
|
).as(:oneline),
|
39784
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("protocol") | str("init") | str("error") | str("issu") | str("all"))).as(:oneline)
|
39789
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("protocol") | str("init") | str("error") | str("issu") | str("all"))).as(:oneline)
|
39785
39790
|
)
|
39786
39791
|
end
|
39787
39792
|
|
@@ -39884,7 +39889,7 @@ module Junoser
|
|
39884
39889
|
b(str("file"),
|
39885
39890
|
trace_file_type
|
39886
39891
|
),
|
39887
|
-
a(str("flag"), (str("resolution") | str("flash") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
39892
|
+
a(str("flag"), enum(str("resolution") | str("flash") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
39888
39893
|
c(
|
39889
39894
|
str("send"),
|
39890
39895
|
str("receive"),
|
@@ -39967,7 +39972,7 @@ module Junoser
|
|
39967
39972
|
b(str("file"),
|
39968
39973
|
trace_file_type
|
39969
39974
|
),
|
39970
|
-
a(str("flag"), (str("parse") | str("regex-parse") | str("config-internal") | str("nsr-synchronization") | str("condition-manager") | str("graceful-restart") | str("session") | str("hfrr-fsm") | str("hfrr-route") | str("statistics-id-group") | str("route-record") | str("jvision-lsp") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all") | str("eswd") | str("arp") | str("prefix") | str("ne-port") | str("route-selection") | str("bridge") | str("grat-arp") | str("l2l3-map")),
|
39975
|
+
a(str("flag"), enum(str("parse") | str("regex-parse") | str("config-internal") | str("nsr-synchronization") | str("condition-manager") | str("graceful-restart") | str("session") | str("hfrr-fsm") | str("hfrr-route") | str("statistics-id-group") | str("route-record") | str("jvision-lsp") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all") | str("eswd") | str("arp") | str("prefix") | str("ne-port") | str("route-selection") | str("bridge") | str("grat-arp") | str("l2l3-map")),
|
39971
39976
|
c(
|
39972
39977
|
str("disable"),
|
39973
39978
|
str("send"),
|
@@ -39993,7 +39998,7 @@ module Junoser
|
|
39993
39998
|
b(str("file"),
|
39994
39999
|
trace_file_type
|
39995
40000
|
),
|
39996
|
-
a(str("flag"), (str("event") | str("flash") | str("kernel") | str("indirect") | str("task") | str("igp-frr") | str("igp-frr-extensive") | str("tunnel") | str("all")),
|
40001
|
+
a(str("flag"), enum(str("event") | str("flash") | str("kernel") | str("indirect") | str("task") | str("igp-frr") | str("igp-frr-extensive") | str("tunnel") | str("all")),
|
39997
40002
|
c(
|
39998
40003
|
str("send"),
|
39999
40004
|
str("receive"),
|
@@ -40012,7 +40017,7 @@ module Junoser
|
|
40012
40017
|
b(str("file"),
|
40013
40018
|
trace_file_type
|
40014
40019
|
),
|
40015
|
-
a(str("flag"), (str("export") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
40020
|
+
a(str("flag"), enum(str("export") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
40016
40021
|
c(
|
40017
40022
|
str("send"),
|
40018
40023
|
str("receive"),
|
@@ -40033,7 +40038,7 @@ module Junoser
|
|
40033
40038
|
b(str("file"),
|
40034
40039
|
trace_file_type
|
40035
40040
|
),
|
40036
|
-
a(str("flag"), (str("vccpdf") | str("root") | str("core") | str("edge") | str("cspf") | str("all")),
|
40041
|
+
a(str("flag"), enum(str("vccpdf") | str("root") | str("core") | str("edge") | str("cspf") | str("all")),
|
40037
40042
|
c(
|
40038
40043
|
str("send"),
|
40039
40044
|
str("receive"),
|
@@ -40486,14 +40491,14 @@ module Junoser
|
|
40486
40491
|
b(str("level"),
|
40487
40492
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
40488
40493
|
),
|
40489
|
-
a(str("flag"), (str("trace") | str("address") | str("main") | str("config") | str("ifdb") | str("io") | str("rtsock") | str("ui") | str("util") | str("gencfg") | str("domain") | str("tftp") | str("bootp") | str("port") | str("if-rtsdb") | str("all"))).as(:oneline)
|
40494
|
+
a(str("flag"), enum(str("trace") | str("address") | str("main") | str("config") | str("ifdb") | str("io") | str("rtsock") | str("ui") | str("util") | str("gencfg") | str("domain") | str("tftp") | str("bootp") | str("port") | str("if-rtsdb") | str("all"))).as(:oneline)
|
40490
40495
|
)
|
40491
40496
|
),
|
40492
40497
|
b(str("rtsdb-client-traceoptions"),
|
40493
40498
|
c(
|
40494
40499
|
b(str("if-rtsdb"),
|
40495
40500
|
c(
|
40496
|
-
a(str("flag"), (str("init") | str("routing-socket") | str("map") | str("all")),
|
40501
|
+
a(str("flag"), enum(str("init") | str("routing-socket") | str("map") | str("all")),
|
40497
40502
|
c(
|
40498
40503
|
str("disable")
|
40499
40504
|
)
|
@@ -40777,7 +40782,7 @@ module Junoser
|
|
40777
40782
|
)
|
40778
40783
|
)
|
40779
40784
|
).as(:oneline),
|
40780
|
-
a(str("flag"), (str("all") | str("bd") | str("config-internal") | str("interface") | str("interface-vlan") | str("ipc") | str("kernel") | str("krt") | str("mac") | str("nh") | str("normal") | str("parse") | str("stp") | str("task") | str("timer") | str("firewall"))).as(:oneline)
|
40785
|
+
a(str("flag"), enum(str("all") | str("bd") | str("config-internal") | str("interface") | str("interface-vlan") | str("ipc") | str("kernel") | str("krt") | str("mac") | str("nh") | str("normal") | str("parse") | str("stp") | str("task") | str("timer") | str("firewall"))).as(:oneline)
|
40781
40786
|
)
|
40782
40787
|
),
|
40783
40788
|
str("local-replication"),
|
@@ -41468,7 +41473,7 @@ module Junoser
|
|
41468
41473
|
b(str("dhcpv6"),
|
41469
41474
|
dhcpv6_local_server_type
|
41470
41475
|
),
|
41471
|
-
a(str("pool-match-order"), (str("external-authority") | str("ip-address-first") | str("option-82") | str("option-82-strict"))),
|
41476
|
+
a(str("pool-match-order"), enum(str("external-authority") | str("ip-address-first") | str("option-82") | str("option-82-strict"))),
|
41472
41477
|
str("duplicate-clients-on-interface"),
|
41473
41478
|
b(str("duplicate-clients-in-subnet"),
|
41474
41479
|
jdhcp_duplicate_clients_in_subnet_type
|
@@ -42089,7 +42094,7 @@ module Junoser
|
|
42089
42094
|
b(str("level"),
|
42090
42095
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
42091
42096
|
),
|
42092
|
-
a(str("flag"), (str("send") | str("send-detail") | str("receive") | str("receive-detail") | str("timeout") | str("state") | str("all"))).as(:oneline),
|
42097
|
+
a(str("flag"), enum(str("send") | str("send-detail") | str("receive") | str("receive-detail") | str("timeout") | str("state") | str("all"))).as(:oneline),
|
42093
42098
|
a(str("peer"), arg)
|
42094
42099
|
)
|
42095
42100
|
end
|
@@ -42146,7 +42151,7 @@ module Junoser
|
|
42146
42151
|
b(str("file"),
|
42147
42152
|
trace_file_type
|
42148
42153
|
),
|
42149
|
-
a(str("flag"), (str("parse") | str("config-internal") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
42154
|
+
a(str("flag"), enum(str("parse") | str("config-internal") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
42150
42155
|
c(
|
42151
42156
|
str("disable")
|
42152
42157
|
)
|
@@ -42255,7 +42260,7 @@ module Junoser
|
|
42255
42260
|
)
|
42256
42261
|
)
|
42257
42262
|
).as(:oneline),
|
42258
|
-
a(str("flag"), (str("init") | str("bookkeeping") | str("connections") | str("charging") | str("flow-collector") | str("all"))).as(:oneline)
|
42263
|
+
a(str("flag"), enum(str("init") | str("bookkeeping") | str("connections") | str("charging") | str("flow-collector") | str("all"))).as(:oneline)
|
42259
42264
|
)
|
42260
42265
|
)
|
42261
42266
|
)
|
@@ -44647,7 +44652,7 @@ module Junoser
|
|
44647
44652
|
b(str("level"),
|
44648
44653
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
44649
44654
|
),
|
44650
|
-
a(str("flag"), (str("configuration") | str("rtsock") | str("ipc") | str("init") | str("psd") | str("all"))).as(:oneline)
|
44655
|
+
a(str("flag"), enum(str("configuration") | str("rtsock") | str("ipc") | str("init") | str("psd") | str("all"))).as(:oneline)
|
44651
44656
|
)
|
44652
44657
|
end
|
44653
44658
|
|
@@ -44663,7 +44668,7 @@ module Junoser
|
|
44663
44668
|
b(str("file"),
|
44664
44669
|
trace_file_type
|
44665
44670
|
),
|
44666
|
-
a(str("flag"), (str("error") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
44671
|
+
a(str("flag"), enum(str("error") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
44667
44672
|
c(
|
44668
44673
|
str("send"),
|
44669
44674
|
str("receive"),
|
@@ -44682,7 +44687,7 @@ module Junoser
|
|
44682
44687
|
b(str("file"),
|
44683
44688
|
trace_file_type
|
44684
44689
|
),
|
44685
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("mtrace") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
44690
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("mtrace") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
44686
44691
|
c(
|
44687
44692
|
str("send"),
|
44688
44693
|
str("receive"),
|
@@ -44787,7 +44792,7 @@ module Junoser
|
|
44787
44792
|
b(str("file"),
|
44788
44793
|
trace_file_type
|
44789
44794
|
),
|
44790
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("mtrace") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
44795
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("mtrace") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
44791
44796
|
c(
|
44792
44797
|
str("send"),
|
44793
44798
|
str("receive"),
|
@@ -44869,7 +44874,7 @@ module Junoser
|
|
44869
44874
|
b(str("file"),
|
44870
44875
|
trace_file_type
|
44871
44876
|
),
|
44872
|
-
a(str("flag"), (str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all"))).as(:oneline)
|
44877
|
+
a(str("flag"), enum(str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all"))).as(:oneline)
|
44873
44878
|
)
|
44874
44879
|
),
|
44875
44880
|
a(str("interface"), arg | arg,
|
@@ -44947,7 +44952,7 @@ module Junoser
|
|
44947
44952
|
b(str("file"),
|
44948
44953
|
trace_file_type
|
44949
44954
|
),
|
44950
|
-
a(str("flag"), (str("route") | str("poison") | str("packets") | str("probe") | str("report") | str("neighbor") | str("prune") | str("graft") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
44955
|
+
a(str("flag"), enum(str("route") | str("poison") | str("packets") | str("probe") | str("report") | str("neighbor") | str("prune") | str("graft") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
44951
44956
|
c(
|
44952
44957
|
str("send"),
|
44953
44958
|
str("receive"),
|
@@ -45000,7 +45005,7 @@ module Junoser
|
|
45000
45005
|
b(str("file"),
|
45001
45006
|
trace_file_type
|
45002
45007
|
),
|
45003
|
-
a(str("flag"), (str("spf") | str("error") | str("event") | str("packet-dump") | str("flooding") | str("lsa-analysis") | str("packets") | str("hello") | str("database-description") | str("lsa-request") | str("lsa-update") | str("lsa-ack") | str("ldp-synchronization") | str("on-demand") | str("nsr-synchronization") | str("graceful-restart") | str("restart-signaling") | str("backup-spf") | str("source-packet-routing") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
45008
|
+
a(str("flag"), enum(str("spf") | str("error") | str("event") | str("packet-dump") | str("flooding") | str("lsa-analysis") | str("packets") | str("hello") | str("database-description") | str("lsa-request") | str("lsa-update") | str("lsa-ack") | str("ldp-synchronization") | str("on-demand") | str("nsr-synchronization") | str("graceful-restart") | str("restart-signaling") | str("backup-spf") | str("source-packet-routing") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
45004
45009
|
c(
|
45005
45010
|
str("send"),
|
45006
45011
|
str("receive"),
|
@@ -45473,7 +45478,7 @@ module Junoser
|
|
45473
45478
|
b(str("file"),
|
45474
45479
|
trace_file_type
|
45475
45480
|
),
|
45476
|
-
a(str("flag"), (str("spf") | str("error") | str("event") | str("packet-dump") | str("flooding") | str("lsa-analysis") | str("packets") | str("hello") | str("database-description") | str("lsa-request") | str("lsa-update") | str("lsa-ack") | str("ldp-synchronization") | str("on-demand") | str("nsr-synchronization") | str("graceful-restart") | str("restart-signaling") | str("backup-spf") | str("source-packet-routing") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
45481
|
+
a(str("flag"), enum(str("spf") | str("error") | str("event") | str("packet-dump") | str("flooding") | str("lsa-analysis") | str("packets") | str("hello") | str("database-description") | str("lsa-request") | str("lsa-update") | str("lsa-ack") | str("ldp-synchronization") | str("on-demand") | str("nsr-synchronization") | str("graceful-restart") | str("restart-signaling") | str("backup-spf") | str("source-packet-routing") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
45477
45482
|
c(
|
45478
45483
|
str("send"),
|
45479
45484
|
str("receive"),
|
@@ -46012,7 +46017,7 @@ module Junoser
|
|
46012
46017
|
str("microsecond-stamp")
|
46013
46018
|
)
|
46014
46019
|
).as(:oneline),
|
46015
|
-
a(str("flag"), (str("database") | str("general") | str("interfaces") | str("normal") | str("packets") | str("state") | str("timer") | str("ppm") | str("all"))).as(:oneline)
|
46020
|
+
a(str("flag"), enum(str("database") | str("general") | str("interfaces") | str("normal") | str("packets") | str("state") | str("timer") | str("ppm") | str("all"))).as(:oneline)
|
46016
46021
|
)
|
46017
46022
|
),
|
46018
46023
|
a(str("failover-delay"), arg),
|
@@ -46036,7 +46041,7 @@ module Junoser
|
|
46036
46041
|
b(str("file"),
|
46037
46042
|
trace_file_type
|
46038
46043
|
),
|
46039
|
-
a(str("flag"), (str("error") | str("topology") | str("fec") | str("connections") | str("oam") | str("egress-protection") | str("auto-sensing") | str("sdb") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
46044
|
+
a(str("flag"), enum(str("error") | str("topology") | str("fec") | str("connections") | str("oam") | str("egress-protection") | str("auto-sensing") | str("sdb") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
46040
46045
|
c(
|
46041
46046
|
str("send"),
|
46042
46047
|
str("receive"),
|
@@ -46244,7 +46249,7 @@ module Junoser
|
|
46244
46249
|
b(str("file"),
|
46245
46250
|
trace_file_type
|
46246
46251
|
),
|
46247
|
-
a(str("flag"), (str("error") | str("topology") | str("nlri") | str("connections") | str("automatic-site") | str("oam") | str("mac-database") | str("nsr") | str("egress-protection") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
46252
|
+
a(str("flag"), enum(str("error") | str("topology") | str("nlri") | str("connections") | str("automatic-site") | str("oam") | str("mac-database") | str("nsr") | str("egress-protection") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
46248
46253
|
c(
|
46249
46254
|
str("send"),
|
46250
46255
|
str("receive"),
|
@@ -46301,7 +46306,7 @@ module Junoser
|
|
46301
46306
|
)
|
46302
46307
|
)
|
46303
46308
|
).as(:oneline),
|
46304
|
-
a(str("flag"), (str("adjacency") | str("event") | str("error") | str("rtsock") | str("packet") | str("ppm-packet") | str("pipe") | str("pipe-detail") | str("state") | str("timer") | str("nsr-synchronization") | str("nsr-packet") | str("issu") | str("slow-start") | str("session") | str("all"))).as(:oneline)
|
46309
|
+
a(str("flag"), enum(str("adjacency") | str("event") | str("error") | str("rtsock") | str("packet") | str("ppm-packet") | str("pipe") | str("pipe-detail") | str("state") | str("timer") | str("nsr-synchronization") | str("nsr-packet") | str("issu") | str("slow-start") | str("session") | str("all"))).as(:oneline)
|
46305
46310
|
)
|
46306
46311
|
),
|
46307
46312
|
str("no-issu-timer-negotiation")
|
@@ -46326,7 +46331,7 @@ module Junoser
|
|
46326
46331
|
b(str("file"),
|
46327
46332
|
trace_file_type
|
46328
46333
|
),
|
46329
|
-
a(str("flag"), (str("controller") | str("state") | str("route") | str("general") | str("interface") | str("all"))).as(:oneline)
|
46334
|
+
a(str("flag"), enum(str("controller") | str("state") | str("route") | str("general") | str("interface") | str("all"))).as(:oneline)
|
46330
46335
|
)
|
46331
46336
|
),
|
46332
46337
|
a(str("lsp-external-controller"), arg),
|
@@ -46376,7 +46381,7 @@ module Junoser
|
|
46376
46381
|
)
|
46377
46382
|
)
|
46378
46383
|
).as(:oneline),
|
46379
|
-
a(str("flag"), (str("cryptographic-address") | str("configuration") | str("protocol") | str("rsa") | str("all"))).as(:oneline)
|
46384
|
+
a(str("flag"), enum(str("cryptographic-address") | str("configuration") | str("protocol") | str("rsa") | str("all"))).as(:oneline)
|
46380
46385
|
)
|
46381
46386
|
)
|
46382
46387
|
)
|
@@ -46407,7 +46412,7 @@ module Junoser
|
|
46407
46412
|
)
|
46408
46413
|
)
|
46409
46414
|
).as(:oneline),
|
46410
|
-
a(str("flag"), (str("error") | str("event") | str("packet") | str("pipe") | str("pipe-detail") | str("all"))).as(:oneline)
|
46415
|
+
a(str("flag"), enum(str("error") | str("event") | str("packet") | str("pipe") | str("pipe-detail") | str("all"))).as(:oneline)
|
46411
46416
|
)
|
46412
46417
|
)
|
46413
46418
|
)
|
@@ -46428,7 +46433,7 @@ module Junoser
|
|
46428
46433
|
)
|
46429
46434
|
)
|
46430
46435
|
).as(:oneline),
|
46431
|
-
a(str("flag"), (str("database") | str("routing-socket") | str("state") | str("debug") | str("event") | str("packet") | str("all"))).as(:oneline)
|
46436
|
+
a(str("flag"), enum(str("database") | str("routing-socket") | str("state") | str("debug") | str("event") | str("packet") | str("all"))).as(:oneline)
|
46432
46437
|
)
|
46433
46438
|
)
|
46434
46439
|
)
|
@@ -46449,7 +46454,7 @@ module Junoser
|
|
46449
46454
|
)
|
46450
46455
|
)
|
46451
46456
|
).as(:oneline),
|
46452
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("process") | str("startup") | str("protocol") | str("packet") | str("ppm") | str("bfd") | str("mc-ae") | str("all"))).as(:oneline)
|
46457
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("process") | str("startup") | str("protocol") | str("packet") | str("ppm") | str("bfd") | str("mc-ae") | str("all"))).as(:oneline)
|
46453
46458
|
)
|
46454
46459
|
),
|
46455
46460
|
b(str("ppm"),
|
@@ -46478,7 +46483,7 @@ module Junoser
|
|
46478
46483
|
)
|
46479
46484
|
)
|
46480
46485
|
).as(:oneline),
|
46481
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("protocol") | str("action-profile") | str("all"))).as(:oneline)
|
46486
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("protocol") | str("action-profile") | str("all"))).as(:oneline)
|
46482
46487
|
)
|
46483
46488
|
),
|
46484
46489
|
b(a(str("action-profile"), arg),
|
@@ -46974,7 +46979,7 @@ module Junoser
|
|
46974
46979
|
)
|
46975
46980
|
)
|
46976
46981
|
).as(:oneline),
|
46977
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("protocol") | str("init") | str("error") | str("packet") | str("all"))).as(:oneline)
|
46982
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("protocol") | str("init") | str("error") | str("packet") | str("all"))).as(:oneline)
|
46978
46983
|
)
|
46979
46984
|
),
|
46980
46985
|
a(str("status-counter"), arg),
|
@@ -47004,7 +47009,7 @@ module Junoser
|
|
47004
47009
|
b(str("file"),
|
47005
47010
|
trace_file_type
|
47006
47011
|
),
|
47007
|
-
a(str("flag"), (str("events") | str("pdu") | str("timers") | str("error") | str("all"))).as(:oneline)
|
47012
|
+
a(str("flag"), enum(str("events") | str("pdu") | str("timers") | str("error") | str("all"))).as(:oneline)
|
47008
47013
|
)
|
47009
47014
|
),
|
47010
47015
|
b(str("interval"),
|
@@ -47036,7 +47041,7 @@ module Junoser
|
|
47036
47041
|
)
|
47037
47042
|
)
|
47038
47043
|
).as(:oneline),
|
47039
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("protocol") | str("all"))).as(:oneline)
|
47044
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("protocol") | str("all"))).as(:oneline)
|
47040
47045
|
)
|
47041
47046
|
),
|
47042
47047
|
b(a(str("interface"), arg),
|
@@ -47097,7 +47102,7 @@ module Junoser
|
|
47097
47102
|
str("convert-clock-class-to-quality-level"),
|
47098
47103
|
b(str("clock-class-to-quality-level-mapping"),
|
47099
47104
|
c(
|
47100
|
-
a(str("quality-level"), (str("prc") | str("ssu-a") | str("ssu-b") | str("sec") | str("prs") | str("st2") | str("tnc") | str("st3e") | str("st3") | str("smc") | str("st4") | str("stu")),
|
47105
|
+
a(str("quality-level"), enum(str("prc") | str("ssu-a") | str("ssu-b") | str("sec") | str("prs") | str("st2") | str("tnc") | str("st3e") | str("st3") | str("smc") | str("st4") | str("stu")),
|
47101
47106
|
c(
|
47102
47107
|
a(str("clock-class"), arg)
|
47103
47108
|
)
|
@@ -47280,7 +47285,7 @@ module Junoser
|
|
47280
47285
|
b(str("level"),
|
47281
47286
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
47282
47287
|
),
|
47283
|
-
a(str("flag"), (str("accounting-statistics") | str("authentication") | str("chap") | str("events") | str("gres") | str("init") | str("interface-db") | str("lcp") | str("memory") | str("ncp") | str("packet-error") | str("pap") | str("parse") | str("profile") | str("receive-packets") | str("routing-process") | str("rtp") | str("rtsock") | str("session-db") | str("smi-services-sentry") | str("states") | str("transmit-packets") | str("tunnel") | str("all"))).as(:oneline),
|
47288
|
+
a(str("flag"), enum(str("accounting-statistics") | str("authentication") | str("chap") | str("events") | str("gres") | str("init") | str("interface-db") | str("lcp") | str("memory") | str("ncp") | str("packet-error") | str("pap") | str("parse") | str("profile") | str("receive-packets") | str("routing-process") | str("rtp") | str("rtsock") | str("session-db") | str("smi-services-sentry") | str("states") | str("transmit-packets") | str("tunnel") | str("all"))).as(:oneline),
|
47284
47289
|
b(str("filter"),
|
47285
47290
|
c(
|
47286
47291
|
a(str("aci"), arg),
|
@@ -47347,7 +47352,7 @@ module Junoser
|
|
47347
47352
|
b(str("file"),
|
47348
47353
|
trace_file_type
|
47349
47354
|
),
|
47350
|
-
a(str("flag"), (str("all") | str("configuration") | str("rtsock") | str("packet") | str("protocol") | str("interface") | str("vlan") | str("snmp")),
|
47355
|
+
a(str("flag"), enum(str("all") | str("configuration") | str("rtsock") | str("packet") | str("protocol") | str("interface") | str("vlan") | str("snmp")),
|
47351
47356
|
c(
|
47352
47357
|
str("disable")
|
47353
47358
|
)
|
@@ -47454,7 +47459,7 @@ module Junoser
|
|
47454
47459
|
)
|
47455
47460
|
)
|
47456
47461
|
).as(:oneline),
|
47457
|
-
a(str("flag"), (str("pcep") | str("all"))).as(:oneline)
|
47462
|
+
a(str("flag"), enum(str("pcep") | str("all"))).as(:oneline)
|
47458
47463
|
)
|
47459
47464
|
),
|
47460
47465
|
a(str("delegation-cleanup-timeout"), arg)
|
@@ -47509,7 +47514,7 @@ module Junoser
|
|
47509
47514
|
)
|
47510
47515
|
)
|
47511
47516
|
).as(:oneline),
|
47512
|
-
a(str("flag"), (str("pcep") | str("all"))).as(:oneline)
|
47517
|
+
a(str("flag"), enum(str("pcep") | str("all"))).as(:oneline)
|
47513
47518
|
)
|
47514
47519
|
),
|
47515
47520
|
a(str("delegation-cleanup-timeout"), arg)
|
@@ -47622,7 +47627,7 @@ module Junoser
|
|
47622
47627
|
b(str("file"),
|
47623
47628
|
trace_file_type
|
47624
47629
|
),
|
47625
|
-
a(str("flag"), (str("configuration") | str("rtsock") | str("interface") | str("client-server") | str("all")),
|
47630
|
+
a(str("flag"), enum(str("configuration") | str("rtsock") | str("interface") | str("client-server") | str("all")),
|
47626
47631
|
c(
|
47627
47632
|
str("disable")
|
47628
47633
|
)
|
@@ -47742,7 +47747,7 @@ module Junoser
|
|
47742
47747
|
)
|
47743
47748
|
)
|
47744
47749
|
).as(:oneline),
|
47745
|
-
a(str("flag"), (str("init") | str("routing-socket") | str("synchronization") | str("ptp") | str("protocol") | str("configuration") | str("debug") | str("ppm") | str("error") | str("hybrid") | str("framer") | str("ipc") | str("all"))).as(:oneline)
|
47750
|
+
a(str("flag"), enum(str("init") | str("routing-socket") | str("synchronization") | str("ptp") | str("protocol") | str("configuration") | str("debug") | str("ppm") | str("error") | str("hybrid") | str("framer") | str("ipc") | str("all"))).as(:oneline)
|
47746
47751
|
)
|
47747
47752
|
end
|
47748
47753
|
|
@@ -47762,7 +47767,7 @@ module Junoser
|
|
47762
47767
|
b(str("file"),
|
47763
47768
|
trace_file_type
|
47764
47769
|
),
|
47765
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("route") | str("normal") | str("general") | str("state") | str("task") | str("timer") | str("all")),
|
47770
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("route") | str("normal") | str("general") | str("state") | str("task") | str("timer") | str("all")),
|
47766
47771
|
c(
|
47767
47772
|
str("send"),
|
47768
47773
|
str("receive"),
|
@@ -47856,7 +47861,7 @@ module Junoser
|
|
47856
47861
|
b(str("file"),
|
47857
47862
|
trace_file_type
|
47858
47863
|
),
|
47859
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
47864
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
47860
47865
|
c(
|
47861
47866
|
str("send"),
|
47862
47867
|
str("receive"),
|
@@ -47908,7 +47913,7 @@ module Junoser
|
|
47908
47913
|
b(str("file"),
|
47909
47914
|
trace_file_type
|
47910
47915
|
),
|
47911
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
47916
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
47912
47917
|
c(
|
47913
47918
|
str("send"),
|
47914
47919
|
str("receive"),
|
@@ -47973,7 +47978,7 @@ module Junoser
|
|
47973
47978
|
b(str("file"),
|
47974
47979
|
trace_file_type
|
47975
47980
|
),
|
47976
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
47981
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
47977
47982
|
c(
|
47978
47983
|
str("send"),
|
47979
47984
|
str("receive"),
|
@@ -48043,7 +48048,7 @@ module Junoser
|
|
48043
48048
|
b(str("file"),
|
48044
48049
|
trace_file_type
|
48045
48050
|
),
|
48046
|
-
a(str("flag"), (str("packets") | str("errors") | str("tunnels") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
48051
|
+
a(str("flag"), enum(str("packets") | str("errors") | str("tunnels") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
48047
48052
|
c(
|
48048
48053
|
str("send"),
|
48049
48054
|
str("receive"),
|
@@ -48104,7 +48109,7 @@ module Junoser
|
|
48104
48109
|
b(str("level"),
|
48105
48110
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
48106
48111
|
),
|
48107
|
-
a(str("flag"), (str("config") | str("cos") | str("routing-socket") | str("packet") | str("protocol") | str("process") | str("startup") | str("session") | str("general") | str("restart") | str("subscriber") | str("timer") | str("all")),
|
48112
|
+
a(str("flag"), enum(str("config") | str("cos") | str("routing-socket") | str("packet") | str("protocol") | str("process") | str("startup") | str("session") | str("general") | str("restart") | str("subscriber") | str("timer") | str("all")),
|
48108
48113
|
c(
|
48109
48114
|
str("disable")
|
48110
48115
|
)
|
@@ -48313,7 +48318,7 @@ module Junoser
|
|
48313
48318
|
b(str("level"),
|
48314
48319
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
48315
48320
|
),
|
48316
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("interface-device") | str("interface-logical") | str("interface-family") | str("learning-domain") | str("ipc") | str("mac-learning") | str("initialization") | str("flood-next-hop") | str("storm-control") | str("unknown-unicast-forwarding") | str("all"))).as(:oneline)
|
48321
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("interface-device") | str("interface-logical") | str("interface-family") | str("learning-domain") | str("ipc") | str("mac-learning") | str("initialization") | str("flood-next-hop") | str("storm-control") | str("unknown-unicast-forwarding") | str("all"))).as(:oneline)
|
48317
48322
|
)
|
48318
48323
|
)
|
48319
48324
|
)
|
@@ -48371,7 +48376,7 @@ module Junoser
|
|
48371
48376
|
b(str("file"),
|
48372
48377
|
trace_file_type
|
48373
48378
|
),
|
48374
|
-
a(str("flag"), (str("damping") | str("packets") | str("open") | str("update") | str("keepalive") | str("refresh") | str("nsr-synchronization") | str("bfd") | str("4byte-as") | str("add-path") | str("graceful-restart") | str("egress-te") | str("thread-io") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
48379
|
+
a(str("flag"), enum(str("damping") | str("packets") | str("open") | str("update") | str("keepalive") | str("refresh") | str("nsr-synchronization") | str("bfd") | str("4byte-as") | str("add-path") | str("graceful-restart") | str("egress-te") | str("thread-io") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
48375
48380
|
c(
|
48376
48381
|
str("send"),
|
48377
48382
|
str("receive"),
|
@@ -48841,7 +48846,7 @@ module Junoser
|
|
48841
48846
|
b(str("file"),
|
48842
48847
|
trace_file_type
|
48843
48848
|
),
|
48844
|
-
a(str("flag"), (str("damping") | str("packets") | str("open") | str("update") | str("keepalive") | str("refresh") | str("nsr-synchronization") | str("bfd") | str("4byte-as") | str("add-path") | str("graceful-restart") | str("egress-te") | str("thread-io") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
48849
|
+
a(str("flag"), enum(str("damping") | str("packets") | str("open") | str("update") | str("keepalive") | str("refresh") | str("nsr-synchronization") | str("bfd") | str("4byte-as") | str("add-path") | str("graceful-restart") | str("egress-te") | str("thread-io") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
48845
48850
|
c(
|
48846
48851
|
str("send"),
|
48847
48852
|
str("receive"),
|
@@ -49298,7 +49303,7 @@ module Junoser
|
|
49298
49303
|
b(str("file"),
|
49299
49304
|
trace_file_type
|
49300
49305
|
),
|
49301
|
-
a(str("flag"), (str("damping") | str("packets") | str("open") | str("update") | str("keepalive") | str("refresh") | str("nsr-synchronization") | str("bfd") | str("4byte-as") | str("add-path") | str("graceful-restart") | str("egress-te") | str("thread-io") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
49306
|
+
a(str("flag"), enum(str("damping") | str("packets") | str("open") | str("update") | str("keepalive") | str("refresh") | str("nsr-synchronization") | str("bfd") | str("4byte-as") | str("add-path") | str("graceful-restart") | str("egress-te") | str("thread-io") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
49302
49307
|
c(
|
49303
49308
|
str("send"),
|
49304
49309
|
str("receive"),
|
@@ -49738,7 +49743,8 @@ module Junoser
|
|
49738
49743
|
)
|
49739
49744
|
)
|
49740
49745
|
),
|
49741
|
-
a(str("drop-path-attributes"), arg)
|
49746
|
+
a(str("drop-path-attributes"), arg),
|
49747
|
+
a(str("minimum-hold-time"), arg)
|
49742
49748
|
)
|
49743
49749
|
end
|
49744
49750
|
|
@@ -50436,7 +50442,7 @@ module Junoser
|
|
50436
50442
|
b(str("level"),
|
50437
50443
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
50438
50444
|
),
|
50439
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("interface-device") | str("interface-logical") | str("interface-family") | str("bridging-domain") | str("routing-instance") | str("bridge-interface") | str("learning-domain") | str("ipc") | str("mac-learning") | str("initialization") | str("flood-next-hop") | str("irb") | str("vpls-ping") | str("vpls-loop-prev") | str("logical-system") | str("bmac-next-hop") | str("bridge-bmac-next-hop") | str("isid") | str("mc-ae") | str("kack") | str("storm-control") | str("redundant-trunk-group") | str("unknown-unicast-forwarding") | str("vxlan") | str("all"))).as(:oneline),
|
50445
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("interface-device") | str("interface-logical") | str("interface-family") | str("bridging-domain") | str("routing-instance") | str("bridge-interface") | str("learning-domain") | str("ipc") | str("mac-learning") | str("initialization") | str("flood-next-hop") | str("irb") | str("vpls-ping") | str("vpls-loop-prev") | str("logical-system") | str("bmac-next-hop") | str("bridge-bmac-next-hop") | str("isid") | str("mc-ae") | str("kack") | str("storm-control") | str("redundant-trunk-group") | str("unknown-unicast-forwarding") | str("vxlan") | str("all"))).as(:oneline),
|
50440
50446
|
str("in-memory-debug")
|
50441
50447
|
)
|
50442
50448
|
),
|
@@ -50509,7 +50515,7 @@ module Junoser
|
|
50509
50515
|
b(str("file"),
|
50510
50516
|
trace_file_type
|
50511
50517
|
),
|
50512
|
-
a(str("flag"), (str("dot1x-debug") | str("parse") | str("esw-if") | str("eapol") | str("config-internal") | str("normal") | str("general") | str("state") | str("task") | str("timer") | str("vlan") | str("all") | str("dot1x-ipc") | str("dot1x-event") | str("iccp")),
|
50518
|
+
a(str("flag"), enum(str("dot1x-debug") | str("parse") | str("esw-if") | str("eapol") | str("config-internal") | str("normal") | str("general") | str("state") | str("task") | str("timer") | str("vlan") | str("all") | str("dot1x-ipc") | str("dot1x-event") | str("iccp")),
|
50513
50519
|
c(
|
50514
50520
|
str("disable")
|
50515
50521
|
)
|
@@ -50634,7 +50640,7 @@ module Junoser
|
|
50634
50640
|
b(str("file"),
|
50635
50641
|
trace_file_type
|
50636
50642
|
),
|
50637
|
-
a(str("flag"), (str("error") | str("esh") | str("ish") | str("graceful-restart") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
50643
|
+
a(str("flag"), enum(str("error") | str("esh") | str("ish") | str("graceful-restart") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
50638
50644
|
c(
|
50639
50645
|
str("send"),
|
50640
50646
|
str("receive"),
|
@@ -50669,7 +50675,7 @@ module Junoser
|
|
50669
50675
|
b(str("file"),
|
50670
50676
|
trace_file_type
|
50671
50677
|
),
|
50672
|
-
a(str("flag"), (str("error") | str("spf") | str("packets") | str("hello") | str("lsp") | str("psn") | str("csn") | str("layer2-map") | str("lsp-generation") | str("graceful-restart") | str("ldp-synchronization") | str("nsr-synchronization") | str("traffic-statistics") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
50678
|
+
a(str("flag"), enum(str("error") | str("spf") | str("packets") | str("hello") | str("lsp") | str("psn") | str("csn") | str("layer2-map") | str("lsp-generation") | str("graceful-restart") | str("ldp-synchronization") | str("nsr-synchronization") | str("traffic-statistics") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
50673
50679
|
c(
|
50674
50680
|
str("send"),
|
50675
50681
|
str("receive"),
|
@@ -50756,7 +50762,7 @@ module Junoser
|
|
50756
50762
|
str("credibility-protocol-preference"),
|
50757
50763
|
str("ipv4-multicast-rpf-routes"),
|
50758
50764
|
str("ignore-lsp-metrics"),
|
50759
|
-
a(str("family"), (str("inet6") | str("inet") | str("inet-mpls") | str("inet6-mpls")),
|
50765
|
+
a(str("family"), enum(str("inet6") | str("inet") | str("inet-mpls") | str("inet6-mpls")),
|
50760
50766
|
c(
|
50761
50767
|
b(str("shortcuts"),
|
50762
50768
|
c(
|
@@ -50934,7 +50940,7 @@ module Junoser
|
|
50934
50940
|
)
|
50935
50941
|
)
|
50936
50942
|
),
|
50937
|
-
a(str("family"), (str("inet6") | str("inet")),
|
50943
|
+
a(str("family"), enum(str("inet6") | str("inet")),
|
50938
50944
|
c(
|
50939
50945
|
b(str("bfd-liveness-detection"),
|
50940
50946
|
c(
|
@@ -50981,7 +50987,7 @@ module Junoser
|
|
50981
50987
|
a(str("ipv6-multicast-metric"), arg),
|
50982
50988
|
str("no-advertise-adjacency-segment"),
|
50983
50989
|
a(str("te-metric"), arg),
|
50984
|
-
a(str("topology"), (str("default") | str("ipv4-multicast") | str("ipv6-unicast") | str("ipv6-multicast")),
|
50990
|
+
a(str("topology"), enum(str("default") | str("ipv4-multicast") | str("ipv6-unicast") | str("ipv6-multicast")),
|
50985
50991
|
c(
|
50986
50992
|
a(str("metric"), arg),
|
50987
50993
|
b(str("bandwidth-based-metrics"),
|
@@ -51036,7 +51042,7 @@ module Junoser
|
|
51036
51042
|
a(str("interface"), arg),
|
51037
51043
|
b(a(str("level"), arg),
|
51038
51044
|
c(
|
51039
|
-
a(str("topology"), (str("default") | str("ipv4-multicast") | str("ipv6-unicast") | str("ipv6-multicast")),
|
51045
|
+
a(str("topology"), enum(str("default") | str("ipv4-multicast") | str("ipv6-unicast") | str("ipv6-multicast")),
|
51040
51046
|
c(
|
51041
51047
|
a(str("metric"), arg),
|
51042
51048
|
b(str("bandwidth-based-metrics"),
|
@@ -51089,7 +51095,7 @@ module Junoser
|
|
51089
51095
|
b(str("file"),
|
51090
51096
|
trace_file_type
|
51091
51097
|
),
|
51092
|
-
a(str("flag"), (str("parse") | str("regex-parse") | str("config-internal") | str("normal") | str("general") | str("state") | str("task") | str("timer") | str("ppmlite") | str("all")),
|
51098
|
+
a(str("flag"), enum(str("parse") | str("regex-parse") | str("config-internal") | str("normal") | str("general") | str("state") | str("task") | str("timer") | str("ppmlite") | str("all")),
|
51093
51099
|
c(
|
51094
51100
|
str("disable")
|
51095
51101
|
)
|
@@ -51144,7 +51150,7 @@ module Junoser
|
|
51144
51150
|
b(str("file"),
|
51145
51151
|
trace_file_type
|
51146
51152
|
),
|
51147
|
-
a(str("flag"), (str("error") | str("event") | str("packet-dump") | str("packets") | str("periodic") | str("initialization") | str("notification") | str("address") | str("label") | str("binding") | str("path") | str("ppmd") | str("nsr-synchronization") | str("link-protection") | str("p2mp-nsr-synchronization") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
51153
|
+
a(str("flag"), enum(str("error") | str("event") | str("packet-dump") | str("packets") | str("periodic") | str("initialization") | str("notification") | str("address") | str("label") | str("binding") | str("path") | str("ppmd") | str("nsr-synchronization") | str("link-protection") | str("p2mp-nsr-synchronization") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
51148
51154
|
c(
|
51149
51155
|
str("send"),
|
51150
51156
|
str("receive"),
|
@@ -51472,7 +51478,7 @@ module Junoser
|
|
51472
51478
|
)
|
51473
51479
|
),
|
51474
51480
|
str("upstream-label-assignment"),
|
51475
|
-
a(str("family"), (str("inet6") | str("inet"))),
|
51481
|
+
a(str("family"), enum(str("inet6") | str("inet"))),
|
51476
51482
|
b(str("transport-preference"),
|
51477
51483
|
(str("ipv4") | str("ipv6"))
|
51478
51484
|
),
|
@@ -51563,7 +51569,7 @@ module Junoser
|
|
51563
51569
|
b(str("file"),
|
51564
51570
|
trace_file_type
|
51565
51571
|
),
|
51566
|
-
a(str("flag"), (str("init") | str("show") | str("route-socket") | str("parse") | str("process") | str("server") | str("routing") | str("packets") | str("hello-packets") | str("state") | str("nsr-synchronization") | str("all")),
|
51572
|
+
a(str("flag"), enum(str("init") | str("show") | str("route-socket") | str("parse") | str("process") | str("server") | str("routing") | str("packets") | str("hello-packets") | str("state") | str("nsr-synchronization") | str("all")),
|
51567
51573
|
c(
|
51568
51574
|
str("send"),
|
51569
51575
|
str("receive"),
|
@@ -51646,7 +51652,7 @@ module Junoser
|
|
51646
51652
|
),
|
51647
51653
|
b(str("auto-policing"),
|
51648
51654
|
c(
|
51649
|
-
a(str("class"), (str("all") | str("ct0") | str("ct1") | str("ct2") | str("ct3")),
|
51655
|
+
a(str("class"), enum(str("all") | str("ct0") | str("ct1") | str("ct2") | str("ct3")),
|
51650
51656
|
c(
|
51651
51657
|
c(
|
51652
51658
|
str("drop"),
|
@@ -51740,7 +51746,7 @@ module Junoser
|
|
51740
51746
|
b(str("file"),
|
51741
51747
|
trace_file_type
|
51742
51748
|
),
|
51743
|
-
a(str("flag"), (str("connection") | str("connection-detail") | str("cspf-link") | str("cspf-node") | str("cspf") | str("cspf-abstract") | str("state") | str("error") | str("lsping") | str("graceful-restart") | str("nsr-synchronization") | str("nsr-synchronization-detail") | str("static") | str("egress-protection") | str("all") | str("autobw-state") | str("externally-controlled-lsp") | str("ted-import") | str("ted-export") | str("lsp-history") | str("abstract-hop"))).as(:oneline)
|
51749
|
+
a(str("flag"), enum(str("connection") | str("connection-detail") | str("cspf-link") | str("cspf-node") | str("cspf") | str("cspf-abstract") | str("state") | str("error") | str("lsping") | str("graceful-restart") | str("nsr-synchronization") | str("nsr-synchronization-detail") | str("static") | str("egress-protection") | str("all") | str("autobw-state") | str("externally-controlled-lsp") | str("ted-import") | str("ted-export") | str("lsp-history") | str("abstract-hop"))).as(:oneline)
|
51744
51750
|
)
|
51745
51751
|
),
|
51746
51752
|
b(a(str("admin-groups"), arg),
|
@@ -51800,7 +51806,7 @@ module Junoser
|
|
51800
51806
|
b(str("file"),
|
51801
51807
|
trace_file_type
|
51802
51808
|
),
|
51803
|
-
a(str("flag"), (str("cspf-link") | str("cspf-node") | str("cspf") | str("cspf-abstract") | str("state") | str("all"))).as(:oneline)
|
51809
|
+
a(str("flag"), enum(str("cspf-link") | str("cspf-node") | str("cspf") | str("cspf-abstract") | str("state") | str("all"))).as(:oneline)
|
51804
51810
|
)
|
51805
51811
|
),
|
51806
51812
|
str("no-install-to-address"),
|
@@ -52285,7 +52291,7 @@ module Junoser
|
|
52285
52291
|
b(str("file"),
|
52286
52292
|
trace_file_type
|
52287
52293
|
),
|
52288
|
-
a(str("flag"), (str("state") | str("route") | str("error") | str("all"))).as(:oneline)
|
52294
|
+
a(str("flag"), enum(str("state") | str("route") | str("error") | str("all"))).as(:oneline)
|
52289
52295
|
)
|
52290
52296
|
)
|
52291
52297
|
)
|
@@ -52363,7 +52369,7 @@ module Junoser
|
|
52363
52369
|
b(str("file"),
|
52364
52370
|
trace_file_type
|
52365
52371
|
),
|
52366
|
-
a(str("flag"), (str("packets") | str("route") | str("nsr-synchronization") | str("source-active") | str("source-active-request") | str("source-active-response") | str("keepalive") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52372
|
+
a(str("flag"), enum(str("packets") | str("route") | str("nsr-synchronization") | str("source-active") | str("source-active-request") | str("source-active-response") | str("keepalive") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52367
52373
|
c(
|
52368
52374
|
str("send"),
|
52369
52375
|
str("receive"),
|
@@ -52390,7 +52396,7 @@ module Junoser
|
|
52390
52396
|
b(str("file"),
|
52391
52397
|
trace_file_type
|
52392
52398
|
),
|
52393
|
-
a(str("flag"), (str("packets") | str("route") | str("nsr-synchronization") | str("source-active") | str("source-active-request") | str("source-active-response") | str("keepalive") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52399
|
+
a(str("flag"), enum(str("packets") | str("route") | str("nsr-synchronization") | str("source-active") | str("source-active-request") | str("source-active-response") | str("keepalive") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52394
52400
|
c(
|
52395
52401
|
str("send"),
|
52396
52402
|
str("receive"),
|
@@ -52450,7 +52456,7 @@ module Junoser
|
|
52450
52456
|
b(str("file"),
|
52451
52457
|
trace_file_type
|
52452
52458
|
),
|
52453
|
-
a(str("flag"), (str("packets") | str("route") | str("nsr-synchronization") | str("source-active") | str("source-active-request") | str("source-active-response") | str("keepalive") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52459
|
+
a(str("flag"), enum(str("packets") | str("route") | str("nsr-synchronization") | str("source-active") | str("source-active-request") | str("source-active-response") | str("keepalive") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52454
52460
|
c(
|
52455
52461
|
str("send"),
|
52456
52462
|
str("receive"),
|
@@ -52477,7 +52483,7 @@ module Junoser
|
|
52477
52483
|
b(str("file"),
|
52478
52484
|
trace_file_type
|
52479
52485
|
),
|
52480
|
-
a(str("flag"), (str("packets") | str("route") | str("nsr-synchronization") | str("source-active") | str("source-active-request") | str("source-active-response") | str("keepalive") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52486
|
+
a(str("flag"), enum(str("packets") | str("route") | str("nsr-synchronization") | str("source-active") | str("source-active-request") | str("source-active-response") | str("keepalive") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52481
52487
|
c(
|
52482
52488
|
str("send"),
|
52483
52489
|
str("receive"),
|
@@ -52556,7 +52562,7 @@ module Junoser
|
|
52556
52562
|
b(str("file"),
|
52557
52563
|
trace_file_type
|
52558
52564
|
),
|
52559
|
-
a(str("flag"), (str("error") | str("nlri") | str("topology") | str("tunnel") | str("umh") | str("intra-as-ad") | str("inter-as-ad") | str("spmsi-ad") | str("leaf-ad") | str("source-active") | str("cmcast-join") | str("mdt-safi-ad") | str("mvpn-limit") | str("nsr-synchronization") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52565
|
+
a(str("flag"), enum(str("error") | str("nlri") | str("topology") | str("tunnel") | str("umh") | str("intra-as-ad") | str("inter-as-ad") | str("spmsi-ad") | str("leaf-ad") | str("source-active") | str("cmcast-join") | str("mdt-safi-ad") | str("mvpn-limit") | str("nsr-synchronization") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52560
52566
|
c(
|
52561
52567
|
str("send"),
|
52562
52568
|
str("receive"),
|
@@ -52827,7 +52833,7 @@ module Junoser
|
|
52827
52833
|
b(str("file"),
|
52828
52834
|
trace_file_type
|
52829
52835
|
),
|
52830
|
-
a(str("flag"), (str("spf") | str("error") | str("event") | str("packet-dump") | str("flooding") | str("lsa-analysis") | str("packets") | str("hello") | str("database-description") | str("lsa-request") | str("lsa-update") | str("lsa-ack") | str("ldp-synchronization") | str("on-demand") | str("nsr-synchronization") | str("graceful-restart") | str("restart-signaling") | str("backup-spf") | str("source-packet-routing") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52836
|
+
a(str("flag"), enum(str("spf") | str("error") | str("event") | str("packet-dump") | str("flooding") | str("lsa-analysis") | str("packets") | str("hello") | str("database-description") | str("lsa-request") | str("lsa-update") | str("lsa-ack") | str("ldp-synchronization") | str("on-demand") | str("nsr-synchronization") | str("graceful-restart") | str("restart-signaling") | str("backup-spf") | str("source-packet-routing") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
52831
52837
|
c(
|
52832
52838
|
str("send"),
|
52833
52839
|
str("receive"),
|
@@ -53311,7 +53317,7 @@ module Junoser
|
|
53311
53317
|
)
|
53312
53318
|
)
|
53313
53319
|
).as(:oneline),
|
53314
|
-
a(str("flag"), (str("socket") | str("rtsock") | str("config") | str("all"))).as(:oneline)
|
53320
|
+
a(str("flag"), enum(str("socket") | str("rtsock") | str("config") | str("all"))).as(:oneline)
|
53315
53321
|
)
|
53316
53322
|
)
|
53317
53323
|
)
|
@@ -53321,7 +53327,7 @@ module Junoser
|
|
53321
53327
|
c(
|
53322
53328
|
b(str("traceoptions"),
|
53323
53329
|
c(
|
53324
|
-
a(str("flag"), (str("init") | str("show") | str("route-socket") | str("parse") | str("state") | str("packets") | str("all")),
|
53330
|
+
a(str("flag"), enum(str("init") | str("show") | str("route-socket") | str("parse") | str("state") | str("packets") | str("all")),
|
53325
53331
|
c(
|
53326
53332
|
str("send"),
|
53327
53333
|
str("receive"),
|
@@ -53366,7 +53372,7 @@ module Junoser
|
|
53366
53372
|
b(str("file"),
|
53367
53373
|
trace_file_type
|
53368
53374
|
),
|
53369
|
-
a(str("flag"), (str("route") | str("packets") | str("hello") | str("register") | str("join") | str("prune") | str("graft") | str("bootstrap") | str("rp") | str("autorp") | str("assert") | str("mdt") | str("nsr-synchronization") | str("bidirectional-df-election") | str("mofrr") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
53375
|
+
a(str("flag"), enum(str("route") | str("packets") | str("hello") | str("register") | str("join") | str("prune") | str("graft") | str("bootstrap") | str("rp") | str("autorp") | str("assert") | str("mdt") | str("nsr-synchronization") | str("bidirectional-df-election") | str("mofrr") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
53370
53376
|
c(
|
53371
53377
|
str("send"),
|
53372
53378
|
str("receive"),
|
@@ -53495,7 +53501,7 @@ module Junoser
|
|
53495
53501
|
),
|
53496
53502
|
b(str("sglimit"),
|
53497
53503
|
c(
|
53498
|
-
a(str("family"), (str("inet6") | str("inet")),
|
53504
|
+
a(str("family"), enum(str("inet6") | str("inet")),
|
53499
53505
|
c(
|
53500
53506
|
a(str("maximum"), arg),
|
53501
53507
|
a(str("threshold"), arg),
|
@@ -53532,7 +53538,7 @@ module Junoser
|
|
53532
53538
|
),
|
53533
53539
|
b(str("register-limit"),
|
53534
53540
|
c(
|
53535
|
-
a(str("family"), (str("inet6") | str("inet")),
|
53541
|
+
a(str("family"), enum(str("inet6") | str("inet")),
|
53536
53542
|
c(
|
53537
53543
|
a(str("maximum"), arg),
|
53538
53544
|
a(str("threshold"), arg),
|
@@ -53546,7 +53552,7 @@ module Junoser
|
|
53546
53552
|
),
|
53547
53553
|
b(str("group-rp-mapping"),
|
53548
53554
|
c(
|
53549
|
-
a(str("family"), (str("inet6") | str("inet")),
|
53555
|
+
a(str("family"), enum(str("inet6") | str("inet")),
|
53550
53556
|
c(
|
53551
53557
|
a(str("maximum"), arg),
|
53552
53558
|
a(str("threshold"), arg),
|
@@ -53926,7 +53932,7 @@ module Junoser
|
|
53926
53932
|
|
53927
53933
|
rule(:erp_trace_options) do
|
53928
53934
|
c(
|
53929
|
-
a(str("flag"), (str("events") | str("pdu") | str("timers") | str("state-machine") | str("periodic-packet-management") | str("config") | str("normal") | str("debug") | str("all"))).as(:oneline),
|
53935
|
+
a(str("flag"), enum(str("events") | str("pdu") | str("timers") | str("state-machine") | str("periodic-packet-management") | str("config") | str("normal") | str("debug") | str("all"))).as(:oneline),
|
53930
53936
|
b(str("file"),
|
53931
53937
|
trace_file_type
|
53932
53938
|
)
|
@@ -54013,7 +54019,7 @@ module Junoser
|
|
54013
54019
|
b(str("file"),
|
54014
54020
|
trace_file_type
|
54015
54021
|
),
|
54016
|
-
a(str("flag"), (str("auth") | str("error") | str("expiration") | str("holddown") | str("packets") | str("request") | str("trigger") | str("update") | str("nsr-synchronization") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
54022
|
+
a(str("flag"), enum(str("auth") | str("error") | str("expiration") | str("holddown") | str("packets") | str("request") | str("trigger") | str("update") | str("nsr-synchronization") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
54017
54023
|
c(
|
54018
54024
|
str("send"),
|
54019
54025
|
str("receive"),
|
@@ -54212,7 +54218,7 @@ module Junoser
|
|
54212
54218
|
b(str("file"),
|
54213
54219
|
trace_file_type
|
54214
54220
|
),
|
54215
|
-
a(str("flag"), (str("error") | str("expiration") | str("holddown") | str("packets") | str("request") | str("trigger") | str("update") | str("nsr-synchronization") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
54221
|
+
a(str("flag"), enum(str("error") | str("expiration") | str("holddown") | str("packets") | str("request") | str("trigger") | str("update") | str("nsr-synchronization") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
54216
54222
|
c(
|
54217
54223
|
str("send"),
|
54218
54224
|
str("receive"),
|
@@ -54298,7 +54304,7 @@ module Junoser
|
|
54298
54304
|
b(str("file"),
|
54299
54305
|
trace_file_type
|
54300
54306
|
),
|
54301
|
-
a(str("flag"), (str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all"))).as(:oneline)
|
54307
|
+
a(str("flag"), enum(str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all"))).as(:oneline)
|
54302
54308
|
)
|
54303
54309
|
),
|
54304
54310
|
b(a(str("interface"), arg),
|
@@ -54368,7 +54374,7 @@ module Junoser
|
|
54368
54374
|
b(str("file"),
|
54369
54375
|
trace_file_type
|
54370
54376
|
),
|
54371
|
-
a(str("flag"), (str("io-event") | str("io-packets") | str("packets") | str("path") | str("resv") | str("pathtear") | str("resvtear") | str("state") | str("error") | str("route") | str("lmp") | str("event") | str("nsr-synchronization") | str("lsp-prefix") | str("enhanced-frr") | str("all")),
|
54377
|
+
a(str("flag"), enum(str("io-event") | str("io-packets") | str("packets") | str("path") | str("resv") | str("pathtear") | str("resvtear") | str("state") | str("error") | str("route") | str("lmp") | str("event") | str("nsr-synchronization") | str("lsp-prefix") | str("enhanced-frr") | str("all")),
|
54372
54378
|
c(
|
54373
54379
|
str("send"),
|
54374
54380
|
str("receive"),
|
@@ -54514,7 +54520,7 @@ module Junoser
|
|
54514
54520
|
b(str("file"),
|
54515
54521
|
trace_file_type
|
54516
54522
|
),
|
54517
|
-
a(str("flag"), (str("io-event") | str("io-packets") | str("packets") | str("path") | str("resv") | str("pathtear") | str("resvtear") | str("state") | str("error") | str("route") | str("lmp") | str("event") | str("nsr-synchronization") | str("lsp-prefix") | str("enhanced-frr") | str("all")),
|
54523
|
+
a(str("flag"), enum(str("io-event") | str("io-packets") | str("packets") | str("path") | str("resv") | str("pathtear") | str("resvtear") | str("state") | str("error") | str("route") | str("lmp") | str("event") | str("nsr-synchronization") | str("lsp-prefix") | str("enhanced-frr") | str("all")),
|
54518
54524
|
c(
|
54519
54525
|
str("send"),
|
54520
54526
|
str("receive"),
|
@@ -55448,7 +55454,7 @@ module Junoser
|
|
55448
55454
|
b(str("file"),
|
55449
55455
|
trace_file_type
|
55450
55456
|
),
|
55451
|
-
a(str("flag"), (str("spf") | str("error") | str("event") | str("packet-dump") | str("flooding") | str("lsa-analysis") | str("packets") | str("hello") | str("database-description") | str("lsa-request") | str("lsa-update") | str("lsa-ack") | str("ldp-synchronization") | str("on-demand") | str("nsr-synchronization") | str("graceful-restart") | str("restart-signaling") | str("backup-spf") | str("source-packet-routing") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
55457
|
+
a(str("flag"), enum(str("spf") | str("error") | str("event") | str("packet-dump") | str("flooding") | str("lsa-analysis") | str("packets") | str("hello") | str("database-description") | str("lsa-request") | str("lsa-update") | str("lsa-ack") | str("ldp-synchronization") | str("on-demand") | str("nsr-synchronization") | str("graceful-restart") | str("restart-signaling") | str("backup-spf") | str("source-packet-routing") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
55452
55458
|
c(
|
55453
55459
|
str("send"),
|
55454
55460
|
str("receive"),
|
@@ -55921,7 +55927,7 @@ module Junoser
|
|
55921
55927
|
b(str("file"),
|
55922
55928
|
trace_file_type
|
55923
55929
|
),
|
55924
|
-
a(str("flag"), (str("spf") | str("error") | str("event") | str("packet-dump") | str("flooding") | str("lsa-analysis") | str("packets") | str("hello") | str("database-description") | str("lsa-request") | str("lsa-update") | str("lsa-ack") | str("ldp-synchronization") | str("on-demand") | str("nsr-synchronization") | str("graceful-restart") | str("restart-signaling") | str("backup-spf") | str("source-packet-routing") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
55930
|
+
a(str("flag"), enum(str("spf") | str("error") | str("event") | str("packet-dump") | str("flooding") | str("lsa-analysis") | str("packets") | str("hello") | str("database-description") | str("lsa-request") | str("lsa-update") | str("lsa-ack") | str("ldp-synchronization") | str("on-demand") | str("nsr-synchronization") | str("graceful-restart") | str("restart-signaling") | str("backup-spf") | str("source-packet-routing") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
55925
55931
|
c(
|
55926
55932
|
str("send"),
|
55927
55933
|
str("receive"),
|
@@ -56498,7 +56504,7 @@ module Junoser
|
|
56498
56504
|
b(str("file"),
|
56499
56505
|
trace_file_type
|
56500
56506
|
),
|
56501
|
-
a(str("flag"), (str("error") | str("topology") | str("nlri") | str("connections") | str("automatic-site") | str("oam") | str("mac-database") | str("nsr") | str("egress-protection") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
56507
|
+
a(str("flag"), enum(str("error") | str("topology") | str("nlri") | str("connections") | str("automatic-site") | str("oam") | str("mac-database") | str("nsr") | str("egress-protection") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
56502
56508
|
c(
|
56503
56509
|
str("send"),
|
56504
56510
|
str("receive"),
|
@@ -57199,7 +57205,7 @@ module Junoser
|
|
57199
57205
|
b(str("file"),
|
57200
57206
|
trace_file_type
|
57201
57207
|
),
|
57202
|
-
a(str("flag"), (str("packets") | str("hello") | str("join") | str("prune") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57208
|
+
a(str("flag"), enum(str("packets") | str("hello") | str("join") | str("prune") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57203
57209
|
c(
|
57204
57210
|
str("send"),
|
57205
57211
|
str("receive"),
|
@@ -57225,7 +57231,7 @@ module Junoser
|
|
57225
57231
|
b(str("file"),
|
57226
57232
|
trace_file_type
|
57227
57233
|
),
|
57228
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57234
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57229
57235
|
c(
|
57230
57236
|
str("send"),
|
57231
57237
|
str("receive"),
|
@@ -57407,7 +57413,7 @@ module Junoser
|
|
57407
57413
|
b(str("file"),
|
57408
57414
|
trace_file_type
|
57409
57415
|
),
|
57410
|
-
a(str("flag"), (str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57416
|
+
a(str("flag"), enum(str("packets") | str("query") | str("report") | str("leave") | str("group") | str("client-notification") | str("host-notification") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57411
57417
|
c(
|
57412
57418
|
str("send"),
|
57413
57419
|
str("receive"),
|
@@ -57774,7 +57780,7 @@ module Junoser
|
|
57774
57780
|
b(str("level"),
|
57775
57781
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
57776
57782
|
),
|
57777
|
-
a(str("flag"), (str("configuration") | str("routing-socket") | str("interface-device") | str("interface-logical") | str("interface-family") | str("bridging-domain") | str("bridge-interface") | str("learning-domain") | str("ipc") | str("mac-learning") | str("initialization") | str("flood-next-hop") | str("irb") | str("vpls-ping") | str("vpls-loop-prev") | str("storm-control") | str("unknown-unicast-forwarding") | str("vxlan") | str("all"))).as(:oneline)
|
57783
|
+
a(str("flag"), enum(str("configuration") | str("routing-socket") | str("interface-device") | str("interface-logical") | str("interface-family") | str("bridging-domain") | str("bridge-interface") | str("learning-domain") | str("ipc") | str("mac-learning") | str("initialization") | str("flood-next-hop") | str("irb") | str("vpls-ping") | str("vpls-loop-prev") | str("storm-control") | str("unknown-unicast-forwarding") | str("vxlan") | str("all"))).as(:oneline)
|
57778
57784
|
)
|
57779
57785
|
)
|
57780
57786
|
)
|
@@ -57835,7 +57841,7 @@ module Junoser
|
|
57835
57841
|
b(str("file"),
|
57836
57842
|
trace_file_type
|
57837
57843
|
),
|
57838
|
-
a(str("flag"), (str("packets") | str("up") | str("down") | str("statistics") | str("route-monitoring") | str("event") | str("error") | str("write") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57844
|
+
a(str("flag"), enum(str("packets") | str("up") | str("down") | str("statistics") | str("route-monitoring") | str("event") | str("error") | str("write") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57839
57845
|
c(
|
57840
57846
|
str("send"),
|
57841
57847
|
str("receive"),
|
@@ -57897,7 +57903,7 @@ module Junoser
|
|
57897
57903
|
b(str("file"),
|
57898
57904
|
trace_file_type
|
57899
57905
|
),
|
57900
|
-
a(str("flag"), (str("packets") | str("up") | str("down") | str("statistics") | str("route-monitoring") | str("event") | str("error") | str("write") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57906
|
+
a(str("flag"), enum(str("packets") | str("up") | str("down") | str("statistics") | str("route-monitoring") | str("event") | str("error") | str("write") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57901
57907
|
c(
|
57902
57908
|
str("send"),
|
57903
57909
|
str("receive"),
|
@@ -57953,7 +57959,7 @@ module Junoser
|
|
57953
57959
|
b(str("file"),
|
57954
57960
|
trace_file_type
|
57955
57961
|
),
|
57956
|
-
a(str("flag"), (str("parse") | str("regex-parse") | str("config-internal") | str("nsr-synchronization") | str("condition-manager") | str("graceful-restart") | str("session") | str("hfrr-fsm") | str("hfrr-route") | str("statistics-id-group") | str("route-record") | str("jvision-lsp") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57962
|
+
a(str("flag"), enum(str("parse") | str("regex-parse") | str("config-internal") | str("nsr-synchronization") | str("condition-manager") | str("graceful-restart") | str("session") | str("hfrr-fsm") | str("hfrr-route") | str("statistics-id-group") | str("route-record") | str("jvision-lsp") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
57957
57963
|
c(
|
57958
57964
|
str("disable")
|
57959
57965
|
)
|
@@ -58005,7 +58011,7 @@ module Junoser
|
|
58005
58011
|
b(str("rib-group"),
|
58006
58012
|
rib_group_type
|
58007
58013
|
),
|
58008
|
-
a(str("family"), (str("inet6") | str("inet")),
|
58014
|
+
a(str("family"), enum(str("inet6") | str("inet")),
|
58009
58015
|
c(
|
58010
58016
|
b(str("import"),
|
58011
58017
|
policy_algebra
|
@@ -59112,7 +59118,7 @@ module Junoser
|
|
59112
59118
|
b(str("file"),
|
59113
59119
|
trace_file_type
|
59114
59120
|
),
|
59115
|
-
a(str("flag"), (str("event") | str("flash") | str("kernel") | str("indirect") | str("task") | str("igp-frr") | str("igp-frr-extensive") | str("tunnel") | str("all")),
|
59121
|
+
a(str("flag"), enum(str("event") | str("flash") | str("kernel") | str("indirect") | str("task") | str("igp-frr") | str("igp-frr-extensive") | str("tunnel") | str("all")),
|
59116
59122
|
c(
|
59117
59123
|
str("send"),
|
59118
59124
|
str("receive"),
|
@@ -59152,7 +59158,7 @@ module Junoser
|
|
59152
59158
|
b(str("file"),
|
59153
59159
|
trace_file_type
|
59154
59160
|
),
|
59155
|
-
a(str("flag"), (str("parse") | str("config-internal") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
59161
|
+
a(str("flag"), enum(str("parse") | str("config-internal") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
59156
59162
|
c(
|
59157
59163
|
str("disable")
|
59158
59164
|
)
|
@@ -59230,7 +59236,7 @@ module Junoser
|
|
59230
59236
|
b(str("forwarding-cache"),
|
59231
59237
|
c(
|
59232
59238
|
str("allow-maximum"),
|
59233
|
-
a(str("family"), (str("inet6") | str("inet")),
|
59239
|
+
a(str("family"), enum(str("inet6") | str("inet")),
|
59234
59240
|
c(
|
59235
59241
|
b(str("threshold"),
|
59236
59242
|
c(
|
@@ -59309,7 +59315,7 @@ module Junoser
|
|
59309
59315
|
b(str("file"),
|
59310
59316
|
trace_file_type
|
59311
59317
|
),
|
59312
|
-
a(str("flag"), (str("export") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
59318
|
+
a(str("flag"), enum(str("export") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
59313
59319
|
c(
|
59314
59320
|
str("send"),
|
59315
59321
|
str("receive"),
|
@@ -59356,7 +59362,7 @@ module Junoser
|
|
59356
59362
|
b(str("file"),
|
59357
59363
|
trace_file_type
|
59358
59364
|
),
|
59359
|
-
a(str("flag"), (str("kernel") | str("tunnel") | str("task") | str("all")),
|
59365
|
+
a(str("flag"), enum(str("kernel") | str("tunnel") | str("task") | str("all")),
|
59360
59366
|
c(
|
59361
59367
|
str("send"),
|
59362
59368
|
str("receive"),
|
@@ -59379,7 +59385,7 @@ module Junoser
|
|
59379
59385
|
b(str("file"),
|
59380
59386
|
trace_file_type
|
59381
59387
|
),
|
59382
|
-
a(str("flag"), (str("debug") | str("parse") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
59388
|
+
a(str("flag"), enum(str("debug") | str("parse") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
59383
59389
|
c(
|
59384
59390
|
str("send"),
|
59385
59391
|
str("receive"),
|
@@ -59396,7 +59402,7 @@ module Junoser
|
|
59396
59402
|
),
|
59397
59403
|
b(str("topologies"),
|
59398
59404
|
c(
|
59399
|
-
a(str("family"), (str("inet6") | str("inet")),
|
59405
|
+
a(str("family"), enum(str("inet6") | str("inet")),
|
59400
59406
|
c(
|
59401
59407
|
a(str("topology"), arg)
|
59402
59408
|
)
|
@@ -59488,7 +59494,7 @@ module Junoser
|
|
59488
59494
|
b(str("file"),
|
59489
59495
|
trace_file_type
|
59490
59496
|
),
|
59491
|
-
a(str("flag"), (str("error") | str("packets") | str("keepalive") | str("update") | str("nsr-synchronization") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
59497
|
+
a(str("flag"), enum(str("error") | str("packets") | str("keepalive") | str("update") | str("nsr-synchronization") | str("state") | str("policy") | str("task") | str("timer") | str("all")),
|
59492
59498
|
c(
|
59493
59499
|
str("send"),
|
59494
59500
|
str("receive"),
|
@@ -59509,7 +59515,7 @@ module Junoser
|
|
59509
59515
|
b(str("file"),
|
59510
59516
|
trace_file_type
|
59511
59517
|
),
|
59512
|
-
a(str("flag"), (str("error") | str("packets") | str("keepalive") | str("update") | str("state") | str("task") | str("timer") | str("all")),
|
59518
|
+
a(str("flag"), enum(str("error") | str("packets") | str("keepalive") | str("update") | str("state") | str("task") | str("timer") | str("all")),
|
59513
59519
|
c(
|
59514
59520
|
str("send"),
|
59515
59521
|
str("receive"),
|
@@ -59814,7 +59820,7 @@ module Junoser
|
|
59814
59820
|
b(str("level"),
|
59815
59821
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
59816
59822
|
),
|
59817
|
-
a(str("flag"), (str("parse") | str("rtsock") | str("sm") | str("all"))).as(:oneline)
|
59823
|
+
a(str("flag"), enum(str("parse") | str("rtsock") | str("sm") | str("all"))).as(:oneline)
|
59818
59824
|
)
|
59819
59825
|
end
|
59820
59826
|
|
@@ -59826,7 +59832,7 @@ module Junoser
|
|
59826
59832
|
b(str("file"),
|
59827
59833
|
trace_file_type
|
59828
59834
|
),
|
59829
|
-
a(str("flag"), (str("dot1x-debug") | str("parse") | str("esw-if") | str("config-internal") | str("normal") | str("general") | str("state") | str("task") | str("timer") | str("all") | str("dot1x-ipc") | str("dot1x-event")),
|
59835
|
+
a(str("flag"), enum(str("dot1x-debug") | str("parse") | str("esw-if") | str("config-internal") | str("normal") | str("general") | str("state") | str("task") | str("timer") | str("all") | str("dot1x-ipc") | str("dot1x-event")),
|
59830
59836
|
c(
|
59831
59837
|
str("disable")
|
59832
59838
|
)
|
@@ -60129,7 +60135,7 @@ module Junoser
|
|
60129
60135
|
str("no-world-readable")
|
60130
60136
|
)
|
60131
60137
|
).as(:oneline),
|
60132
|
-
a(str("flag"), (str("all") | str("events") | str("config") | str("radius") | str("tacplus"))).as(:oneline)
|
60138
|
+
a(str("flag"), enum(str("all") | str("events") | str("config") | str("radius") | str("tacplus"))).as(:oneline)
|
60133
60139
|
)
|
60134
60140
|
),
|
60135
60141
|
b(str("destination"),
|
@@ -60404,7 +60410,7 @@ module Junoser
|
|
60404
60410
|
)
|
60405
60411
|
)
|
60406
60412
|
).as(:oneline),
|
60407
|
-
a(str("flag"), (str("timer") | str("timeouts") | str("routing-socket") | str("general") | str("config") | str("grpc") | str("notification") | str("all"))).as(:oneline)
|
60413
|
+
a(str("flag"), enum(str("timer") | str("timeouts") | str("routing-socket") | str("general") | str("config") | str("grpc") | str("notification") | str("all"))).as(:oneline)
|
60408
60414
|
)
|
60409
60415
|
)
|
60410
60416
|
)
|
@@ -60434,7 +60440,7 @@ module Junoser
|
|
60434
60440
|
)
|
60435
60441
|
)
|
60436
60442
|
).as(:oneline),
|
60437
|
-
a(str("flag"), (str("all") | str("incoming") | str("outgoing") | str("debug"))).as(:oneline),
|
60443
|
+
a(str("flag"), enum(str("all") | str("incoming") | str("outgoing") | str("debug"))).as(:oneline),
|
60438
60444
|
str("on-demand")
|
60439
60445
|
)
|
60440
60446
|
)
|
@@ -60543,7 +60549,7 @@ module Junoser
|
|
60543
60549
|
)
|
60544
60550
|
)
|
60545
60551
|
).as(:oneline),
|
60546
|
-
a(str("flag"), (str("beep") | str("profile") | str("application") | str("io") | str("all"))).as(:oneline)
|
60552
|
+
a(str("flag"), enum(str("beep") | str("profile") | str("application") | str("io") | str("all"))).as(:oneline)
|
60547
60553
|
)
|
60548
60554
|
)
|
60549
60555
|
)
|
@@ -60564,7 +60570,7 @@ module Junoser
|
|
60564
60570
|
)
|
60565
60571
|
)
|
60566
60572
|
).as(:oneline),
|
60567
|
-
a(str("flag"), (str("configuration") | str("connectivity") | str("all"))).as(:oneline)
|
60573
|
+
a(str("flag"), enum(str("configuration") | str("connectivity") | str("all"))).as(:oneline)
|
60568
60574
|
)
|
60569
60575
|
),
|
60570
60576
|
b(a(str("client"), arg),
|
@@ -61094,7 +61100,7 @@ module Junoser
|
|
61094
61100
|
)
|
61095
61101
|
)
|
61096
61102
|
),
|
61097
|
-
a(str("console"), (str("any") | str("authorization") | str("daemon") | str("ftp") | str("ntp") | str("security") | str("kernel") | str("user") | str("dfc") | str("external") | str("firewall") | str("pfe") | str("conflict-log") | str("change-log") | str("interactive-commands")),
|
61103
|
+
a(str("console"), enum(str("any") | str("authorization") | str("daemon") | str("ftp") | str("ntp") | str("security") | str("kernel") | str("user") | str("dfc") | str("external") | str("firewall") | str("pfe") | str("conflict-log") | str("change-log") | str("interactive-commands")),
|
61098
61104
|
c(
|
61099
61105
|
c(
|
61100
61106
|
str("any"),
|
@@ -61245,7 +61251,7 @@ module Junoser
|
|
61245
61251
|
str("microsecond-stamp")
|
61246
61252
|
)
|
61247
61253
|
).as(:oneline),
|
61248
|
-
a(str("flag"), (str("ephemeral-commit") | str("operational-command") | str("debug") | str("all"))).as(:oneline)
|
61254
|
+
a(str("flag"), enum(str("ephemeral-commit") | str("operational-command") | str("debug") | str("all"))).as(:oneline)
|
61249
61255
|
)
|
61250
61256
|
)
|
61251
61257
|
)
|
@@ -61281,7 +61287,7 @@ module Junoser
|
|
61281
61287
|
str("microsecond-stamp")
|
61282
61288
|
)
|
61283
61289
|
).as(:oneline),
|
61284
|
-
a(str("flag"), (str("all") | str("commit-server") | str("batch") | str("configuration"))).as(:oneline)
|
61290
|
+
a(str("flag"), enum(str("all") | str("commit-server") | str("batch") | str("configuration"))).as(:oneline)
|
61285
61291
|
)
|
61286
61292
|
)
|
61287
61293
|
)
|
@@ -61492,7 +61498,7 @@ module Junoser
|
|
61492
61498
|
)
|
61493
61499
|
)
|
61494
61500
|
),
|
61495
|
-
a(str("flag"), (str("configuration") | str("framework") | str("radius") | str("local-authentication") | str("ldap") | str("address-assignment") | str("jsrc") | str("gx-plus") | str("session-db") | str("profile-db") | str("lib-stats") | str("user-access") | str("nasreq") | str("all"))).as(:oneline)
|
61501
|
+
a(str("flag"), enum(str("configuration") | str("framework") | str("radius") | str("local-authentication") | str("ldap") | str("address-assignment") | str("jsrc") | str("gx-plus") | str("session-db") | str("profile-db") | str("lib-stats") | str("user-access") | str("nasreq") | str("all"))).as(:oneline)
|
61496
61502
|
)
|
61497
61503
|
)
|
61498
61504
|
)
|
@@ -61531,7 +61537,7 @@ module Junoser
|
|
61531
61537
|
b(str("level"),
|
61532
61538
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
61533
61539
|
),
|
61534
|
-
a(str("flag"), (str("framework") | str("all"))).as(:oneline)
|
61540
|
+
a(str("flag"), enum(str("framework") | str("all"))).as(:oneline)
|
61535
61541
|
)
|
61536
61542
|
)
|
61537
61543
|
)
|
@@ -61594,7 +61600,7 @@ module Junoser
|
|
61594
61600
|
b(str("level"),
|
61595
61601
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
61596
61602
|
),
|
61597
|
-
a(str("flag"), (str("framework") | str("configuration") | str("memory-management") | str("daemon") | str("application") | str("node") | str("diameter-instance") | str("dne") | str("peer") | str("messages") | str("all"))).as(:oneline)
|
61603
|
+
a(str("flag"), enum(str("framework") | str("configuration") | str("memory-management") | str("daemon") | str("application") | str("node") | str("diameter-instance") | str("dne") | str("peer") | str("messages") | str("all"))).as(:oneline)
|
61598
61604
|
)
|
61599
61605
|
)
|
61600
61606
|
)
|
@@ -61675,7 +61681,7 @@ module Junoser
|
|
61675
61681
|
b(str("level"),
|
61676
61682
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
61677
61683
|
),
|
61678
|
-
a(str("flag"), (str("configuration") | str("database") | str("general") | str("message") | str("rtsock") | str("statistics") | str("subscriber") | str("gres") | str("issu") | str("authentication") | str("profile") | str("all"))).as(:oneline)
|
61684
|
+
a(str("flag"), enum(str("configuration") | str("database") | str("general") | str("message") | str("rtsock") | str("statistics") | str("subscriber") | str("gres") | str("issu") | str("authentication") | str("profile") | str("all"))).as(:oneline)
|
61679
61685
|
)
|
61680
61686
|
)
|
61681
61687
|
)
|
@@ -61701,7 +61707,7 @@ module Junoser
|
|
61701
61707
|
b(str("level"),
|
61702
61708
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
61703
61709
|
),
|
61704
|
-
a(str("flag"), (str("authentication") | str("configuration") | str("database") | str("dictionary") | str("dynamic") | str("fsm") | str("general") | str("kernel") | str("op-script") | str("statistics") | str("all"))).as(:oneline)
|
61710
|
+
a(str("flag"), enum(str("authentication") | str("configuration") | str("database") | str("dictionary") | str("dynamic") | str("fsm") | str("general") | str("kernel") | str("op-script") | str("statistics") | str("all"))).as(:oneline)
|
61705
61711
|
)
|
61706
61712
|
)
|
61707
61713
|
)
|
@@ -79580,7 +79586,8 @@ module Junoser
|
|
79580
79586
|
(str("hmac-sha2-256") | str("hmac-sha1") | str("hmac-sha2-512"))
|
79581
79587
|
)
|
79582
79588
|
)
|
79583
|
-
)
|
79589
|
+
),
|
79590
|
+
str("dump-on-panic")
|
79584
79591
|
)
|
79585
79592
|
end
|
79586
79593
|
|
@@ -79651,7 +79658,7 @@ module Junoser
|
|
79651
79658
|
b(str("level"),
|
79652
79659
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
79653
79660
|
),
|
79654
|
-
a(str("flag"), (str("configuration") | str("interfaces") | str("io") | str("rtsock") | str("ui") | str("auth") | str("all"))).as(:oneline)
|
79661
|
+
a(str("flag"), enum(str("configuration") | str("interfaces") | str("io") | str("rtsock") | str("ui") | str("auth") | str("all"))).as(:oneline)
|
79655
79662
|
)
|
79656
79663
|
end
|
79657
79664
|
|
@@ -79672,7 +79679,7 @@ module Junoser
|
|
79672
79679
|
b(str("level"),
|
79673
79680
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
79674
79681
|
),
|
79675
|
-
a(str("flag"), (str("config") | str("main") | str("interface") | str("rpd") | str("service") | str("net") | str("autoconf") | str("demux") | str("session") | str("io") | str("vbf") | str("dhcp") | str("cpcd") | str("pppoe") | str("ppp") | str("rtsock") | str("ui") | str("l2tp") | str("dprof") | str("auth") | str("stats") | str("ucac") | str("snmp") | str("ancp") | str("jssc") | str("gre") | str("all"))).as(:oneline)
|
79682
|
+
a(str("flag"), enum(str("config") | str("main") | str("interface") | str("rpd") | str("service") | str("net") | str("autoconf") | str("demux") | str("session") | str("io") | str("vbf") | str("dhcp") | str("cpcd") | str("pppoe") | str("ppp") | str("rtsock") | str("ui") | str("l2tp") | str("dprof") | str("auth") | str("stats") | str("ucac") | str("snmp") | str("ancp") | str("jssc") | str("gre") | str("all"))).as(:oneline)
|
79676
79683
|
)
|
79677
79684
|
end
|
79678
79685
|
|
@@ -79698,7 +79705,7 @@ module Junoser
|
|
79698
79705
|
)
|
79699
79706
|
)
|
79700
79707
|
).as(:oneline),
|
79701
|
-
a(str("flag"), (str("database") | str("mirror") | str("replication") | str("ui") | str("general") | str("session-db") | str("server") | str("all"))).as(:oneline)
|
79708
|
+
a(str("flag"), enum(str("database") | str("mirror") | str("replication") | str("ui") | str("general") | str("session-db") | str("server") | str("all"))).as(:oneline)
|
79702
79709
|
)
|
79703
79710
|
end
|
79704
79711
|
|
@@ -79731,7 +79738,7 @@ module Junoser
|
|
79731
79738
|
b(str("level"),
|
79732
79739
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
79733
79740
|
),
|
79734
|
-
a(str("flag"), (str("datapath-traced-infrastructure") | str("datapath-traced-server") | str("client-management") | str("all"))).as(:oneline)
|
79741
|
+
a(str("flag"), enum(str("datapath-traced-infrastructure") | str("datapath-traced-server") | str("client-management") | str("all"))).as(:oneline)
|
79735
79742
|
)
|
79736
79743
|
end
|
79737
79744
|
|
@@ -79752,7 +79759,7 @@ module Junoser
|
|
79752
79759
|
b(str("level"),
|
79753
79760
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
79754
79761
|
),
|
79755
|
-
a(str("flag"), (str("config") | str("events") | str("gres") | str("init") | str("memory") | str("protocol") | str("rtsock") | str("signal") | str("state") | str("timer") | str("ui") | str("ipc") | str("socket") | str("all"))).as(:oneline)
|
79762
|
+
a(str("flag"), enum(str("config") | str("events") | str("gres") | str("init") | str("memory") | str("protocol") | str("rtsock") | str("signal") | str("state") | str("timer") | str("ui") | str("ipc") | str("socket") | str("all"))).as(:oneline)
|
79756
79763
|
)
|
79757
79764
|
end
|
79758
79765
|
|
@@ -79773,7 +79780,7 @@ module Junoser
|
|
79773
79780
|
b(str("level"),
|
79774
79781
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
79775
79782
|
),
|
79776
|
-
a(str("flag"), (str("binding") | str("config") | str("conflict") | str("event") | str("ifdb") | str("io") | str("lease") | str("main") | str("misc") | str("option") | str("packet") | str("pool") | str("protocol") | str("relay") | str("rtsock") | str("scope") | str("signal") | str("trace") | str("ui") | str("all"))).as(:oneline)
|
79783
|
+
a(str("flag"), enum(str("binding") | str("config") | str("conflict") | str("event") | str("ifdb") | str("io") | str("lease") | str("main") | str("misc") | str("option") | str("packet") | str("pool") | str("protocol") | str("relay") | str("rtsock") | str("scope") | str("signal") | str("trace") | str("ui") | str("all"))).as(:oneline)
|
79777
79784
|
)
|
79778
79785
|
end
|
79779
79786
|
|
@@ -79800,7 +79807,7 @@ module Junoser
|
|
79800
79807
|
b(str("level"),
|
79801
79808
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
79802
79809
|
),
|
79803
|
-
a(str("flag"), (str("configuration") | str("mgd") | str("webauth") | str("dynamic-vpn") | str("init") | str("all"))).as(:oneline)
|
79810
|
+
a(str("flag"), enum(str("configuration") | str("mgd") | str("webauth") | str("dynamic-vpn") | str("init") | str("all"))).as(:oneline)
|
79804
79811
|
)
|
79805
79812
|
end
|
79806
79813
|
|
@@ -79821,7 +79828,7 @@ module Junoser
|
|
79821
79828
|
b(str("level"),
|
79822
79829
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
79823
79830
|
),
|
79824
|
-
a(str("flag"), (str("state") | str("packet") | str("flow") | str("packet-option") | str("dhcpv6-state") | str("dhcpv6-packet") | str("dhcpv6-packet-option") | str("all"))).as(:oneline)
|
79831
|
+
a(str("flag"), enum(str("state") | str("packet") | str("flow") | str("packet-option") | str("dhcpv6-state") | str("dhcpv6-packet") | str("dhcpv6-packet-option") | str("all"))).as(:oneline)
|
79825
79832
|
)
|
79826
79833
|
end
|
79827
79834
|
|
@@ -79842,7 +79849,7 @@ module Junoser
|
|
79842
79849
|
b(str("level"),
|
79843
79850
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
79844
79851
|
),
|
79845
|
-
a(str("flag"), (str("state") | str("packet") | str("flow") | str("packet-option") | str("dhcpv6-state") | str("dhcpv6-packet") | str("dhcpv6-packet-option") | str("all") | str("database") | str("persistent") | str("interface") | str("rtsock") | str("flow-notify") | str("io") | str("ha") | str("ui") | str("general") | str("fwd") | str("rpd") | str("auth") | str("profile") | str("session-db") | str("performance") | str("statistics") | str("dhcpv6-io") | str("dhcpv6-rpd") | str("dhcpv6-session-db") | str("dhcpv6-general") | str("liveness-detection") | str("security-persistence") | str("mclag"))).as(:oneline)
|
79852
|
+
a(str("flag"), enum(str("state") | str("packet") | str("flow") | str("packet-option") | str("dhcpv6-state") | str("dhcpv6-packet") | str("dhcpv6-packet-option") | str("all") | str("database") | str("persistent") | str("interface") | str("rtsock") | str("flow-notify") | str("io") | str("ha") | str("ui") | str("general") | str("fwd") | str("rpd") | str("auth") | str("profile") | str("session-db") | str("performance") | str("statistics") | str("dhcpv6-io") | str("dhcpv6-rpd") | str("dhcpv6-session-db") | str("dhcpv6-general") | str("liveness-detection") | str("security-persistence") | str("mclag"))).as(:oneline)
|
79846
79853
|
)
|
79847
79854
|
end
|
79848
79855
|
|
@@ -79880,7 +79887,7 @@ module Junoser
|
|
79880
79887
|
b(str("level"),
|
79881
79888
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
79882
79889
|
),
|
79883
|
-
a(str("flag"), (str("configuration") | str("general") | str("rtsock") | str("peer") | str("pic") | str("radius") | str("session") | str("all"))).as(:oneline)
|
79890
|
+
a(str("flag"), enum(str("configuration") | str("general") | str("rtsock") | str("peer") | str("pic") | str("radius") | str("session") | str("all"))).as(:oneline)
|
79884
79891
|
)
|
79885
79892
|
end
|
79886
79893
|
|
@@ -79901,7 +79908,7 @@ module Junoser
|
|
79901
79908
|
b(str("level"),
|
79902
79909
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
79903
79910
|
),
|
79904
|
-
a(str("flag"), (str("rtsock") | str("general") | str("firewall") | str("database") | str("all"))).as(:oneline)
|
79911
|
+
a(str("flag"), enum(str("rtsock") | str("general") | str("firewall") | str("database") | str("all"))).as(:oneline)
|
79905
79912
|
)
|
79906
79913
|
end
|
79907
79914
|
|
@@ -80304,7 +80311,7 @@ module Junoser
|
|
80304
80311
|
b(str("file"),
|
80305
80312
|
vchassis_trace_file_type
|
80306
80313
|
),
|
80307
|
-
a(str("flag"), (str("parse") | str("hello") | str("psn") | str("csn") | str("lsp") | str("normal") | str("task") | str("krt") | str("spf") | str("me") | str("packets") | str("lsp-generation") | str("error") | str("route") | str("state") | str("auto-configuration") | str("graceful-restart") | str("dcp-infra") | str("dcp-dev-state") | str("heartbeat") | str("all")),
|
80314
|
+
a(str("flag"), enum(str("parse") | str("hello") | str("psn") | str("csn") | str("lsp") | str("normal") | str("task") | str("krt") | str("spf") | str("me") | str("packets") | str("lsp-generation") | str("error") | str("route") | str("state") | str("auto-configuration") | str("graceful-restart") | str("dcp-infra") | str("dcp-dev-state") | str("heartbeat") | str("all")),
|
80308
80315
|
c(
|
80309
80316
|
str("send"),
|
80310
80317
|
str("receive"),
|
@@ -80682,7 +80689,7 @@ module Junoser
|
|
80682
80689
|
b(str("level"),
|
80683
80690
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
80684
80691
|
),
|
80685
|
-
a(str("flag"), (str("main") | str("vpn-localization-config") | str("vpn-localization-replay") | str("all"))).as(:oneline)
|
80692
|
+
a(str("flag"), enum(str("main") | str("vpn-localization-config") | str("vpn-localization-replay") | str("all"))).as(:oneline)
|
80686
80693
|
)
|
80687
80694
|
end
|
80688
80695
|
|
@@ -80721,7 +80728,7 @@ module Junoser
|
|
80721
80728
|
rule(:l2tp_interface_traceoptions) do
|
80722
80729
|
b(arg.as(:arg),
|
80723
80730
|
c(
|
80724
|
-
a(str("flag"), (str("ipc") | str("protocol") | str("packet-dump") | str("system") | str("all"))).as(:oneline),
|
80731
|
+
a(str("flag"), enum(str("ipc") | str("protocol") | str("packet-dump") | str("system") | str("all"))).as(:oneline),
|
80725
80732
|
b(str("debug-level"),
|
80726
80733
|
(str("error") | str("detail") | str("extensive"))
|
80727
80734
|
)
|
@@ -80885,7 +80892,7 @@ module Junoser
|
|
80885
80892
|
)
|
80886
80893
|
)
|
80887
80894
|
).as(:oneline),
|
80888
|
-
a(str("flag"), (str("all") | str("events") | str("config"))).as(:oneline)
|
80895
|
+
a(str("flag"), enum(str("all") | str("events") | str("config"))).as(:oneline)
|
80889
80896
|
)
|
80890
80897
|
),
|
80891
80898
|
b(str("keys"),
|
@@ -81001,7 +81008,7 @@ module Junoser
|
|
81001
81008
|
rule(:lr_interfaces_type) do
|
81002
81009
|
b(arg.as(:arg),
|
81003
81010
|
c(
|
81004
|
-
a(str("unit"), (arg | arg | arg),
|
81011
|
+
a(str("unit"), enum(arg | arg | arg),
|
81005
81012
|
c(
|
81006
81013
|
b(str("policer-overhead"),
|
81007
81014
|
ca(
|
@@ -81089,10 +81096,10 @@ module Junoser
|
|
81089
81096
|
),
|
81090
81097
|
str("actual-transit-statistics"),
|
81091
81098
|
b(str("demux-source"),
|
81092
|
-
((str("inet6") | str("inet")))
|
81099
|
+
enum((str("inet6") | str("inet")))
|
81093
81100
|
),
|
81094
81101
|
b(str("demux-destination"),
|
81095
|
-
((str("inet6") | str("inet")))
|
81102
|
+
enum((str("inet6") | str("inet")))
|
81096
81103
|
),
|
81097
81104
|
b(str("encapsulation"),
|
81098
81105
|
(str("atm-nlpid") | str("atm-cisco-nlpid") | str("atm-snap") | str("atm-vc-mux") | str("atm-ccc-vc-mux") | str("atm-tcc-vc-mux") | str("atm-tcc-snap") | str("atm-ccc-cell-relay") | str("vlan-vci-ccc") | str("ether-over-atm-llc") | str("ether-vpls-over-atm-llc") | str("ppp-over-ether-over-atm-llc") | str("ppp-over-ether") | str("atm-ppp-vc-mux") | str("atm-ppp-llc") | str("atm-mlppp-llc") | str("frame-relay-ppp") | str("frame-relay-ccc") | str("frame-relay") | str("frame-relay-tcc") | str("frame-relay-ether-type") | str("frame-relay-ether-type-tcc") | str("ether-vpls-fr") | str("vlan-ccc") | str("ethernet-ccc") | str("vlan-vpls") | str("vlan-bridge") | str("dix") | str("ethernet-vpls") | str("ethernet-bridge") | str("ethernet") | str("vlan") | str("vlan-tcc") | str("multilink-ppp") | str("multilink-frame-relay-end-to-end") | str("ppp-ccc"))
|
@@ -81665,7 +81672,7 @@ module Junoser
|
|
81665
81672
|
b(str("client-type"),
|
81666
81673
|
(str("stateful") | str("autoconfig"))
|
81667
81674
|
),
|
81668
|
-
a(str("client-ia-type"), (str("ia-na") | str("ia-pd"))),
|
81675
|
+
a(str("client-ia-type"), enum(str("ia-na") | str("ia-pd"))),
|
81669
81676
|
str("rapid-commit"),
|
81670
81677
|
b(str("client-identifier"),
|
81671
81678
|
c(
|
@@ -81674,7 +81681,7 @@ module Junoser
|
|
81674
81681
|
)
|
81675
81682
|
)
|
81676
81683
|
).as(:oneline),
|
81677
|
-
a(str("req-option"), (str("dns-server") | str("domain") | str("ntp-server") | str("time-zone") | str("sip-server") | str("sip-domain") | str("nis-server") | str("nis-domain") | str("fqdn") | str("vendor-spec"))),
|
81684
|
+
a(str("req-option"), enum(str("dns-server") | str("domain") | str("ntp-server") | str("time-zone") | str("sip-server") | str("sip-domain") | str("nis-server") | str("nis-domain") | str("fqdn") | str("vendor-spec"))),
|
81678
81685
|
a(str("retransmission-attempt"), arg),
|
81679
81686
|
str("no-dns-propagation"),
|
81680
81687
|
b(str("update-router-advertisement"),
|
@@ -82142,10 +82149,10 @@ module Junoser
|
|
82142
82149
|
b(str("hash-keys"),
|
82143
82150
|
c(
|
82144
82151
|
b(str("ingress-key"),
|
82145
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
82152
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("iif")))
|
82146
82153
|
),
|
82147
82154
|
b(str("egress-key"),
|
82148
|
-
((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
82155
|
+
enum((str("source-ip") | str("destination-ip") | str("protocol") | str("oif")))
|
82149
82156
|
)
|
82150
82157
|
)
|
82151
82158
|
)
|
@@ -83296,7 +83303,7 @@ module Junoser
|
|
83296
83303
|
b(str("level"),
|
83297
83304
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
83298
83305
|
),
|
83299
|
-
a(str("flag"), (str("error") | str("warning") | str("debug") | str("encode") | str("decode") | str("config") | str("events") | str("packet-io") | str("tracker") | str("peer") | str("pathfailure") | str("all"))).as(:oneline)
|
83306
|
+
a(str("flag"), enum(str("error") | str("warning") | str("debug") | str("encode") | str("decode") | str("config") | str("events") | str("packet-io") | str("tracker") | str("peer") | str("pathfailure") | str("all"))).as(:oneline)
|
83300
83307
|
)
|
83301
83308
|
end
|
83302
83309
|
|
@@ -83328,7 +83335,7 @@ module Junoser
|
|
83328
83335
|
b(str("level"),
|
83329
83336
|
(str("critical") | str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
83330
83337
|
),
|
83331
|
-
a(str("flag"), (str("init") | str("config") | str("ctxt") | str("svcpic") | str("fsm") | str("ha") | str("waitq") | str("pfem") | str("stats") | str("bulkjob") | str("cos-cac") | str("all"))).as(:oneline)
|
83338
|
+
a(str("flag"), enum(str("init") | str("config") | str("ctxt") | str("svcpic") | str("fsm") | str("ha") | str("waitq") | str("pfem") | str("stats") | str("bulkjob") | str("cos-cac") | str("all"))).as(:oneline)
|
83332
83339
|
)
|
83333
83340
|
end
|
83334
83341
|
|
@@ -83676,7 +83683,7 @@ module Junoser
|
|
83676
83683
|
b(str("file"),
|
83677
83684
|
trace_file_type
|
83678
83685
|
),
|
83679
|
-
a(str("flag"), (str("events") | str("pdu") | str("timers") | str("state-machine") | str("socket") | str("error") | str("all")),
|
83686
|
+
a(str("flag"), enum(str("events") | str("pdu") | str("timers") | str("state-machine") | str("socket") | str("error") | str("all")),
|
83680
83687
|
c(
|
83681
83688
|
str("disable")
|
83682
83689
|
)
|
@@ -84868,7 +84875,7 @@ module Junoser
|
|
84868
84875
|
)
|
84869
84876
|
)
|
84870
84877
|
).as(:oneline),
|
84871
|
-
a(str("flag"), (str("pccd-main") | str("pccd-config") | str("pccd-core") | str("pccd-ui") | str("pccd-rpd") | str("pccd-functions") | str("all"))).as(:oneline)
|
84878
|
+
a(str("flag"), enum(str("pccd-main") | str("pccd-config") | str("pccd-core") | str("pccd-ui") | str("pccd-rpd") | str("pccd-functions") | str("all"))).as(:oneline)
|
84872
84879
|
)
|
84873
84880
|
end
|
84874
84881
|
|
@@ -85105,14 +85112,14 @@ module Junoser
|
|
85105
85112
|
b(str("file"),
|
85106
85113
|
trace_file_type
|
85107
85114
|
),
|
85108
|
-
a(str("flag"), (str("init") | str("error") | str("event") | str("general") | str("packet") | str("timer") | str("all"))).as(:oneline)
|
85115
|
+
a(str("flag"), enum(str("init") | str("error") | str("event") | str("general") | str("packet") | str("timer") | str("all"))).as(:oneline)
|
85109
85116
|
)
|
85110
85117
|
),
|
85111
85118
|
b(str("querier"),
|
85112
85119
|
c(
|
85113
85120
|
b(str("loss"),
|
85114
85121
|
c(
|
85115
|
-
a(str("traffic-class"), (str("tc-0") | str("tc-1") | str("tc-2") | str("tc-3") | str("tc-4") | str("tc-5") | str("tc-6") | str("tc-7") | str("all") | str("none")),
|
85122
|
+
a(str("traffic-class"), enum(str("tc-0") | str("tc-1") | str("tc-2") | str("tc-3") | str("tc-4") | str("tc-5") | str("tc-6") | str("tc-7") | str("all") | str("none")),
|
85116
85123
|
c(
|
85117
85124
|
a(str("query-interval"), arg),
|
85118
85125
|
b(str("measurement-quantity"),
|
@@ -85127,7 +85134,7 @@ module Junoser
|
|
85127
85134
|
),
|
85128
85135
|
b(str("delay"),
|
85129
85136
|
c(
|
85130
|
-
a(str("traffic-class"), (str("tc-0") | str("tc-1") | str("tc-2") | str("tc-3") | str("tc-4") | str("tc-5") | str("tc-6") | str("tc-7") | str("all")),
|
85137
|
+
a(str("traffic-class"), enum(str("tc-0") | str("tc-1") | str("tc-2") | str("tc-3") | str("tc-4") | str("tc-5") | str("tc-6") | str("tc-7") | str("all")),
|
85131
85138
|
c(
|
85132
85139
|
a(str("query-interval"), arg),
|
85133
85140
|
a(str("padding-size"), arg),
|
@@ -85140,7 +85147,7 @@ module Junoser
|
|
85140
85147
|
),
|
85141
85148
|
b(str("loss-delay"),
|
85142
85149
|
c(
|
85143
|
-
a(str("traffic-class"), (str("tc-0") | str("tc-1") | str("tc-2") | str("tc-3") | str("tc-4") | str("tc-5") | str("tc-6") | str("tc-7") | str("all") | str("none")),
|
85150
|
+
a(str("traffic-class"), enum(str("tc-0") | str("tc-1") | str("tc-2") | str("tc-3") | str("tc-4") | str("tc-5") | str("tc-6") | str("tc-7") | str("all") | str("none")),
|
85144
85151
|
c(
|
85145
85152
|
a(str("query-interval"), arg),
|
85146
85153
|
b(str("measurement-quantity"),
|
@@ -85190,7 +85197,7 @@ module Junoser
|
|
85190
85197
|
)
|
85191
85198
|
)
|
85192
85199
|
).as(:oneline),
|
85193
|
-
a(str("flag"), (str("configuration") | str("pipe") | str("rpc-packet-details") | str("database") | str("network") | str("traceroute") | str("all"))).as(:oneline)
|
85200
|
+
a(str("flag"), enum(str("configuration") | str("pipe") | str("rpc-packet-details") | str("database") | str("network") | str("traceroute") | str("all"))).as(:oneline)
|
85194
85201
|
)
|
85195
85202
|
)
|
85196
85203
|
)
|
@@ -85620,7 +85627,7 @@ module Junoser
|
|
85620
85627
|
a(str("default"), arg),
|
85621
85628
|
a(str("minimum"), arg),
|
85622
85629
|
b(str("maximum"),
|
85623
|
-
(arg)
|
85630
|
+
enum(arg)
|
85624
85631
|
),
|
85625
85632
|
b(str("rtcp"),
|
85626
85633
|
pgcp_h248_rtcp_rate_units_object
|
@@ -85633,7 +85640,7 @@ module Junoser
|
|
85633
85640
|
a(str("default"), arg),
|
85634
85641
|
a(str("minimum"), arg),
|
85635
85642
|
b(str("maximum"),
|
85636
|
-
(arg)
|
85643
|
+
enum(arg)
|
85637
85644
|
),
|
85638
85645
|
b(str("rtcp"),
|
85639
85646
|
pgcp_h248_rtcp_rate_units_object
|
@@ -85645,7 +85652,7 @@ module Junoser
|
|
85645
85652
|
a(str("default"), arg),
|
85646
85653
|
a(str("minimum"), arg),
|
85647
85654
|
b(str("maximum"),
|
85648
|
-
(arg)
|
85655
|
+
enum(arg)
|
85649
85656
|
),
|
85650
85657
|
b(str("rtcp"),
|
85651
85658
|
pgcp_h248_rtcp_burst_units_object
|
@@ -85825,7 +85832,7 @@ module Junoser
|
|
85825
85832
|
b(str("level"),
|
85826
85833
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
85827
85834
|
),
|
85828
|
-
a(str("flag"), (str("events") | str("heartbeat") | str("process-tracking") | str("ui") | str("all"))).as(:oneline)
|
85835
|
+
a(str("flag"), enum(str("events") | str("heartbeat") | str("process-tracking") | str("ui") | str("all"))).as(:oneline)
|
85829
85836
|
)
|
85830
85837
|
end
|
85831
85838
|
|
@@ -85854,7 +85861,7 @@ module Junoser
|
|
85854
85861
|
b(str("level"),
|
85855
85862
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
85856
85863
|
),
|
85857
|
-
a(str("flag"), (str("access") | str("address-pool") | str("auth") | str("chap") | str("pap") | str("config") | str("ifdb") | str("lcp") | str("memory") | str("message") | str("mlppp") | str("ncp") | str("ppp") | str("radius") | str("redundancy") | str("rtsock") | str("session") | str("signal") | str("timer") | str("ui") | str("ci") | str("all"))).as(:oneline)
|
85864
|
+
a(str("flag"), enum(str("access") | str("address-pool") | str("auth") | str("chap") | str("pap") | str("config") | str("ifdb") | str("lcp") | str("memory") | str("message") | str("mlppp") | str("ncp") | str("ppp") | str("radius") | str("redundancy") | str("rtsock") | str("session") | str("signal") | str("timer") | str("ui") | str("ci") | str("all"))).as(:oneline)
|
85858
85865
|
)
|
85859
85866
|
end
|
85860
85867
|
|
@@ -85946,7 +85953,7 @@ module Junoser
|
|
85946
85953
|
b(str("level"),
|
85947
85954
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
85948
85955
|
),
|
85949
|
-
a(str("flag"), (str("config") | str("events") | str("gres") | str("init") | str("interface-db") | str("memory") | str("protocol") | str("rtsock") | str("session-db") | str("signal") | str("state") | str("stats") | str("timer") | str("ui") | str("all"))).as(:oneline),
|
85956
|
+
a(str("flag"), enum(str("config") | str("events") | str("gres") | str("init") | str("interface-db") | str("memory") | str("protocol") | str("rtsock") | str("session-db") | str("signal") | str("state") | str("stats") | str("timer") | str("ui") | str("all"))).as(:oneline),
|
85950
85957
|
b(str("filter"),
|
85951
85958
|
c(
|
85952
85959
|
a(str("aci"), arg),
|
@@ -86054,7 +86061,7 @@ module Junoser
|
|
86054
86061
|
b(str("file"),
|
86055
86062
|
trace_file_type
|
86056
86063
|
),
|
86057
|
-
a(str("flag"), (str("client") | str("japi") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all"))).as(:oneline)
|
86064
|
+
a(str("flag"), enum(str("client") | str("japi") | str("route") | str("normal") | str("general") | str("state") | str("policy") | str("task") | str("timer") | str("all"))).as(:oneline)
|
86058
86065
|
)
|
86059
86066
|
),
|
86060
86067
|
a(str("purge-timeout"), arg)
|
@@ -86297,7 +86304,7 @@ module Junoser
|
|
86297
86304
|
b(str("level"),
|
86298
86305
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
86299
86306
|
),
|
86300
|
-
a(str("flag"), (str("configuration") | str("event") | str("interface") | str("node") | str("packet") | str("rtsock") | str("session") | str("socket") | str("timer") | str("virtual-channel") | str("all"))).as(:oneline)
|
86307
|
+
a(str("flag"), enum(str("configuration") | str("event") | str("interface") | str("node") | str("packet") | str("rtsock") | str("session") | str("socket") | str("timer") | str("virtual-channel") | str("all"))).as(:oneline)
|
86301
86308
|
)
|
86302
86309
|
end
|
86303
86310
|
|
@@ -86350,7 +86357,7 @@ module Junoser
|
|
86350
86357
|
b(str("level"),
|
86351
86358
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
86352
86359
|
),
|
86353
|
-
a(str("flag"), (str("send") | str("send-detail") | str("receive") | str("receive-detail") | str("timeout") | str("state") | str("all"))).as(:oneline),
|
86360
|
+
a(str("flag"), enum(str("send") | str("send-detail") | str("receive") | str("receive-detail") | str("timeout") | str("state") | str("all"))).as(:oneline),
|
86354
86361
|
a(str("server"), arg),
|
86355
86362
|
a(str("client"), arg),
|
86356
86363
|
a(str("snoop-segment"), arg)
|
@@ -86459,7 +86466,7 @@ module Junoser
|
|
86459
86466
|
)
|
86460
86467
|
)
|
86461
86468
|
).as(:oneline),
|
86462
|
-
a(str("flag"), (str("error") | str("event") | str("packet") | str("pipe") | str("pipe-detail") | str("all"))).as(:oneline)
|
86469
|
+
a(str("flag"), enum(str("error") | str("event") | str("packet") | str("pipe") | str("pipe-detail") | str("all"))).as(:oneline)
|
86463
86470
|
)
|
86464
86471
|
)
|
86465
86472
|
)
|
@@ -86785,15 +86792,15 @@ module Junoser
|
|
86785
86792
|
b(str("level"),
|
86786
86793
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
86787
86794
|
),
|
86788
|
-
a(str("flag"), (str("events") | str("gencfg") | str("module") | str("sysvsem") | str("sysvshm") | str("tracking") | str("ui") | str("all"))).as(:oneline)
|
86795
|
+
a(str("flag"), enum(str("events") | str("gencfg") | str("module") | str("sysvsem") | str("sysvshm") | str("tracking") | str("ui") | str("all"))).as(:oneline)
|
86789
86796
|
)
|
86790
86797
|
end
|
86791
86798
|
|
86792
86799
|
rule(:resource_monitor_type) do
|
86793
86800
|
c(
|
86794
|
-
a(str("resource-category"), (str("jtree")),
|
86801
|
+
a(str("resource-category"), enum(str("jtree")),
|
86795
86802
|
c(
|
86796
|
-
a(str("resource-type"), (str("free-pages") | str("free-dwords") | str("contiguous-pages")),
|
86803
|
+
a(str("resource-type"), enum(str("free-pages") | str("free-dwords") | str("contiguous-pages")),
|
86797
86804
|
c(
|
86798
86805
|
a(str("low-watermark"), arg),
|
86799
86806
|
a(str("high-watermark"), arg)
|
@@ -86827,7 +86834,7 @@ module Junoser
|
|
86827
86834
|
)
|
86828
86835
|
)
|
86829
86836
|
).as(:oneline),
|
86830
|
-
a(str("flag"), (str("all"))).as(:oneline)
|
86837
|
+
a(str("flag"), enum(str("all"))).as(:oneline)
|
86831
86838
|
)
|
86832
86839
|
end
|
86833
86840
|
|
@@ -87035,7 +87042,7 @@ module Junoser
|
|
87035
87042
|
b(str("level"),
|
87036
87043
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
87037
87044
|
),
|
87038
|
-
a(str("flag"), (str("configuration") | str("ipc") | str("ppm") | str("statistics") | str("error") | str("all"))).as(:oneline)
|
87045
|
+
a(str("flag"), enum(str("configuration") | str("ipc") | str("ppm") | str("statistics") | str("error") | str("all"))).as(:oneline)
|
87039
87046
|
)
|
87040
87047
|
end
|
87041
87048
|
|
@@ -87056,7 +87063,7 @@ module Junoser
|
|
87056
87063
|
b(str("level"),
|
87057
87064
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
87058
87065
|
),
|
87059
|
-
a(str("flag"), (str("infra") | str("memory") | str("communication") | str("resource-tables") | str("info-tables") | str("redundancy") | str("all"))).as(:oneline)
|
87066
|
+
a(str("flag"), enum(str("infra") | str("memory") | str("communication") | str("resource-tables") | str("info-tables") | str("redundancy") | str("all"))).as(:oneline)
|
87060
87067
|
)
|
87061
87068
|
end
|
87062
87069
|
|
@@ -87077,7 +87084,7 @@ module Junoser
|
|
87077
87084
|
b(str("level"),
|
87078
87085
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
87079
87086
|
),
|
87080
|
-
a(str("flag"), (str("config") | str("gres") | str("init") | str("memory") | str("communication") | str("license-management") | str("signal") | str("state") | str("timer") | str("ui") | str("resource-manager") | str("info-manager") | str("packet-steering") | str("all"))).as(:oneline)
|
87087
|
+
a(str("flag"), enum(str("config") | str("gres") | str("init") | str("memory") | str("communication") | str("license-management") | str("signal") | str("state") | str("timer") | str("ui") | str("resource-manager") | str("info-manager") | str("packet-steering") | str("all"))).as(:oneline)
|
87081
87088
|
)
|
87082
87089
|
end
|
87083
87090
|
|
@@ -87386,7 +87393,7 @@ module Junoser
|
|
87386
87393
|
b(str("level"),
|
87387
87394
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
87388
87395
|
),
|
87389
|
-
a(str("flag"), (str("parse") | str("all"))).as(:oneline)
|
87396
|
+
a(str("flag"), enum(str("parse") | str("all"))).as(:oneline)
|
87390
87397
|
)
|
87391
87398
|
end
|
87392
87399
|
|
@@ -88310,7 +88317,7 @@ module Junoser
|
|
88310
88317
|
str("no-world-readable")
|
88311
88318
|
)
|
88312
88319
|
).as(:oneline),
|
88313
|
-
a(str("flag"), (str("all") | str("events") | str("input") | str("offline") | str("output") | str("rpc") | str("xslt"))).as(:oneline)
|
88320
|
+
a(str("flag"), enum(str("all") | str("events") | str("input") | str("offline") | str("output") | str("rpc") | str("xslt"))).as(:oneline)
|
88314
88321
|
)
|
88315
88322
|
end
|
88316
88323
|
|
@@ -88467,7 +88474,7 @@ module Junoser
|
|
88467
88474
|
b(str("level"),
|
88468
88475
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
88469
88476
|
),
|
88470
|
-
a(str("flag"), (str("service-infrastructure") | str("routing-instance") | str("config-handling") | str("command-handling") | str("cli-show-commands") | str("all"))).as(:oneline)
|
88477
|
+
a(str("flag"), enum(str("service-infrastructure") | str("routing-instance") | str("config-handling") | str("command-handling") | str("cli-show-commands") | str("all"))).as(:oneline)
|
88471
88478
|
)
|
88472
88479
|
end
|
88473
88480
|
|
@@ -88488,7 +88495,7 @@ module Junoser
|
|
88488
88495
|
b(str("level"),
|
88489
88496
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
88490
88497
|
),
|
88491
|
-
a(str("flag"), (str("init") | str("configuration") | str("ccif") | str("pxe") | str("platform") | str("heartbeat") | str("routing-instances") | str("snmp") | str("miscellaneous") | str("all"))).as(:oneline)
|
88498
|
+
a(str("flag"), enum(str("init") | str("configuration") | str("ccif") | str("pxe") | str("platform") | str("heartbeat") | str("routing-instances") | str("snmp") | str("miscellaneous") | str("all"))).as(:oneline)
|
88492
88499
|
)
|
88493
88500
|
end
|
88494
88501
|
|
@@ -88628,7 +88635,7 @@ module Junoser
|
|
88628
88635
|
b(str("level"),
|
88629
88636
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
88630
88637
|
),
|
88631
|
-
a(str("flag"), (str("timer") | str("routing-socket") | str("parse") | str("config") | str("ike") | str("policy-manager") | str("general") | str("database") | str("certificates") | str("snmp") | str("thread") | str("high-availability") | str("next-hop-tunnels") | str("all"))).as(:oneline),
|
88638
|
+
a(str("flag"), enum(str("timer") | str("routing-socket") | str("parse") | str("config") | str("ike") | str("policy-manager") | str("general") | str("database") | str("certificates") | str("snmp") | str("thread") | str("high-availability") | str("next-hop-tunnels") | str("all"))).as(:oneline),
|
88632
88639
|
b(str("gateway-filter"),
|
88633
88640
|
c(
|
88634
88641
|
b(str("local-address"),
|
@@ -89018,7 +89025,7 @@ module Junoser
|
|
89018
89025
|
a(str("description"), quote | arg),
|
89019
89026
|
b(str("manual"),
|
89020
89027
|
c(
|
89021
|
-
a(str("direction"), (str("inbound") | str("outbound") | str("bidirectional")),
|
89028
|
+
a(str("direction"), enum(str("inbound") | str("outbound") | str("bidirectional")),
|
89022
89029
|
c(
|
89023
89030
|
b(str("protocol"),
|
89024
89031
|
(str("ah") | str("esp") | str("bundle"))
|
@@ -89109,7 +89116,7 @@ module Junoser
|
|
89109
89116
|
c(
|
89110
89117
|
b(str("manual"),
|
89111
89118
|
c(
|
89112
|
-
a(str("direction"), (str("inbound") | str("outbound") | str("bidirectional")),
|
89119
|
+
a(str("direction"), enum(str("inbound") | str("outbound") | str("bidirectional")),
|
89113
89120
|
c(
|
89114
89121
|
b(str("protocol"),
|
89115
89122
|
(str("ah") | str("esp") | str("bundle"))
|
@@ -89168,7 +89175,7 @@ module Junoser
|
|
89168
89175
|
a(str("description"), quote | arg),
|
89169
89176
|
b(str("manual"),
|
89170
89177
|
c(
|
89171
|
-
a(str("direction"), (str("inbound") | str("outbound") | str("bidirectional")),
|
89178
|
+
a(str("direction"), enum(str("inbound") | str("outbound") | str("bidirectional")),
|
89172
89179
|
c(
|
89173
89180
|
b(str("protocol"),
|
89174
89181
|
(str("ah") | str("esp") | str("bundle"))
|
@@ -89273,7 +89280,7 @@ module Junoser
|
|
89273
89280
|
a(str("cak"), arg)
|
89274
89281
|
)
|
89275
89282
|
),
|
89276
|
-
a(str("exclude-protocol"), (str("cdp") | str("lldp") | str("lacp"))).as(:oneline)
|
89283
|
+
a(str("exclude-protocol"), enum(str("cdp") | str("lldp") | str("lacp"))).as(:oneline)
|
89277
89284
|
)
|
89278
89285
|
),
|
89279
89286
|
b(a(str("interfaces"), arg),
|
@@ -89308,7 +89315,7 @@ module Junoser
|
|
89308
89315
|
b(str("file"),
|
89309
89316
|
trace_file_type
|
89310
89317
|
),
|
89311
|
-
a(str("flag"), (str("config") | str("debug") | str("normal") | str("all"))).as(:oneline)
|
89318
|
+
a(str("flag"), enum(str("config") | str("debug") | str("normal") | str("all"))).as(:oneline)
|
89312
89319
|
)
|
89313
89320
|
end
|
89314
89321
|
|
@@ -89317,14 +89324,14 @@ module Junoser
|
|
89317
89324
|
b(str("file"),
|
89318
89325
|
trace_file_type
|
89319
89326
|
),
|
89320
|
-
a(str("flag"), (str("mka-packets") | str("state") | str("to-secy") | str("keys") | str("normal") | str("all"))).as(:oneline)
|
89327
|
+
a(str("flag"), enum(str("mka-packets") | str("state") | str("to-secy") | str("keys") | str("normal") | str("all"))).as(:oneline)
|
89321
89328
|
)
|
89322
89329
|
end
|
89323
89330
|
|
89324
89331
|
rule(:security_model_access) do
|
89325
|
-
b(((str("any") | str("usm") | str("v1") | str("v2c"))).as(:arg),
|
89332
|
+
b(enum((str("any") | str("usm") | str("v1") | str("v2c"))).as(:arg),
|
89326
89333
|
c(
|
89327
|
-
a(str("security-level"), (str("none") | str("authentication") | str("privacy")),
|
89334
|
+
a(str("security-level"), enum(str("none") | str("authentication") | str("privacy")),
|
89328
89335
|
c(
|
89329
89336
|
b(str("context-match"),
|
89330
89337
|
(str("exact") | str("prefix"))
|
@@ -89526,7 +89533,7 @@ module Junoser
|
|
89526
89533
|
)
|
89527
89534
|
)
|
89528
89535
|
).as(:oneline),
|
89529
|
-
a(str("flag"), (str("certificate-verification") | str("online-crl-check") | str("enrollment") | str("all"))).as(:oneline)
|
89536
|
+
a(str("flag"), enum(str("certificate-verification") | str("online-crl-check") | str("enrollment") | str("all"))).as(:oneline)
|
89530
89537
|
)
|
89531
89538
|
)
|
89532
89539
|
)
|
@@ -89553,7 +89560,7 @@ module Junoser
|
|
89553
89560
|
a(str("pic"), arg)
|
89554
89561
|
)
|
89555
89562
|
),
|
89556
|
-
a(str("flag"), (str("timer") | str("routing-socket") | str("parse") | str("config") | str("ike") | str("policy-manager") | str("general") | str("database") | str("certificates") | str("snmp") | str("thread") | str("high-availability") | str("next-hop-tunnels") | str("all") | str("ams") | str("lic"))).as(:oneline),
|
89563
|
+
a(str("flag"), enum(str("timer") | str("routing-socket") | str("parse") | str("config") | str("ike") | str("policy-manager") | str("general") | str("database") | str("certificates") | str("snmp") | str("thread") | str("high-availability") | str("next-hop-tunnels") | str("all") | str("ams") | str("lic"))).as(:oneline),
|
89557
89564
|
b(str("level"),
|
89558
89565
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
89559
89566
|
)
|
@@ -90021,7 +90028,7 @@ module Junoser
|
|
90021
90028
|
b(str("level"),
|
90022
90029
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
90023
90030
|
),
|
90024
|
-
a(str("flag"), (str("init") | str("config") | str("general") | str("high-availability") | str("debug") | str("fsm") | str("tftmgr") | str("all"))).as(:oneline)
|
90031
|
+
a(str("flag"), enum(str("init") | str("config") | str("general") | str("high-availability") | str("debug") | str("fsm") | str("tftmgr") | str("all"))).as(:oneline)
|
90025
90032
|
)
|
90026
90033
|
end
|
90027
90034
|
|
@@ -90626,7 +90633,7 @@ module Junoser
|
|
90626
90633
|
)
|
90627
90634
|
)
|
90628
90635
|
),
|
90629
|
-
a(str("log-type"), (str("debug") | str("info") | str("notice")),
|
90636
|
+
a(str("log-type"), enum(str("debug") | str("info") | str("notice")),
|
90630
90637
|
c(
|
90631
90638
|
c(
|
90632
90639
|
str("none"),
|
@@ -90669,7 +90676,7 @@ module Junoser
|
|
90669
90676
|
)
|
90670
90677
|
)
|
90671
90678
|
).as(:oneline),
|
90672
|
-
a(str("flag"), (str("database") | str("ui") | str("general") | str("session-db") | str("server") | str("issu") | str("all"))).as(:oneline)
|
90679
|
+
a(str("flag"), enum(str("database") | str("ui") | str("general") | str("session-db") | str("server") | str("issu") | str("all"))).as(:oneline)
|
90673
90680
|
)
|
90674
90681
|
end
|
90675
90682
|
|
@@ -90695,7 +90702,7 @@ module Junoser
|
|
90695
90702
|
)
|
90696
90703
|
)
|
90697
90704
|
).as(:oneline),
|
90698
|
-
a(str("flag"), (str("sdb") | str("general") | str("ui") | str("snmp") | str("all"))).as(:oneline)
|
90705
|
+
a(str("flag"), enum(str("sdb") | str("general") | str("ui") | str("snmp") | str("all"))).as(:oneline)
|
90699
90706
|
)
|
90700
90707
|
end
|
90701
90708
|
|
@@ -90910,7 +90917,7 @@ module Junoser
|
|
90910
90917
|
b(str("level"),
|
90911
90918
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
90912
90919
|
),
|
90913
|
-
a(str("flag"), (str("ager") | str("commands") | str("configuration") | str("flow") | str("init") | str("ipv6-router-advertisement") | str("memory") | str("redundancy") | str("reassembly") | str("buffering") | str("all"))).as(:oneline)
|
90920
|
+
a(str("flag"), enum(str("ager") | str("commands") | str("configuration") | str("flow") | str("init") | str("ipv6-router-advertisement") | str("memory") | str("redundancy") | str("reassembly") | str("buffering") | str("all"))).as(:oneline)
|
90914
90921
|
)
|
90915
90922
|
end
|
90916
90923
|
|
@@ -91549,7 +91556,7 @@ module Junoser
|
|
91549
91556
|
b(str("level"),
|
91550
91557
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
91551
91558
|
),
|
91552
|
-
a(str("flag"), (str("config") | str("connect") | str("route") | str("ssd") | str("snmp") | str("system") | str("opcmd") | str("state-machine") | str("kcom") | str("database") | str("swithover") | str("stateful-sync") | str("redundancy-group") | str("all"))).as(:oneline)
|
91559
|
+
a(str("flag"), enum(str("config") | str("connect") | str("route") | str("ssd") | str("snmp") | str("system") | str("opcmd") | str("state-machine") | str("kcom") | str("database") | str("swithover") | str("stateful-sync") | str("redundancy-group") | str("all"))).as(:oneline)
|
91553
91560
|
)
|
91554
91561
|
end
|
91555
91562
|
|
@@ -91570,7 +91577,7 @@ module Junoser
|
|
91570
91577
|
b(str("level"),
|
91571
91578
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
91572
91579
|
),
|
91573
|
-
a(str("flag"), (str("infrastructure") | str("server") | str("routing-instance") | str("client-management") | str("interfaces-management") | str("route-management") | str("nexthop-management") | str("firewall-management") | str("nexthop-group-management") | str("cli") | str("cfg") | str("all"))).as(:oneline)
|
91580
|
+
a(str("flag"), enum(str("infrastructure") | str("server") | str("routing-instance") | str("client-management") | str("interfaces-management") | str("route-management") | str("nexthop-management") | str("firewall-management") | str("nexthop-group-management") | str("cli") | str("cfg") | str("all"))).as(:oneline)
|
91574
91581
|
)
|
91575
91582
|
end
|
91576
91583
|
|
@@ -91713,7 +91720,7 @@ module Junoser
|
|
91713
91720
|
b(str("level"),
|
91714
91721
|
(str("brief") | str("detail") | str("extensive") | str("verbose"))
|
91715
91722
|
),
|
91716
|
-
a(str("flag"), (str("cli-configuration") | str("termination") | str("initiation") | str("proxy") | str("selected-profile") | str("all"))).as(:oneline)
|
91723
|
+
a(str("flag"), enum(str("cli-configuration") | str("termination") | str("initiation") | str("proxy") | str("selected-profile") | str("all"))).as(:oneline)
|
91717
91724
|
)
|
91718
91725
|
end
|
91719
91726
|
|
@@ -91744,7 +91751,7 @@ module Junoser
|
|
91744
91751
|
b(str("file"),
|
91745
91752
|
trace_file_type
|
91746
91753
|
),
|
91747
|
-
a(str("flag"), (str("events") | str("bpdu") | str("timers") | str("port-information-state-machine") | str("port-receive-state-machine") | str("port-role-select-state-machine") | str("port-role-transit-state-machine") | str("port-state-transit-state-machine") | str("port-migration-state-machine") | str("port-transmit-state-machine") | str("topology-change-state-machine") | str("bridge-detection-state-machine") | str("state-machine-variables") | str("ppmd") | str("all-failures") | str("all")),
|
91754
|
+
a(str("flag"), enum(str("events") | str("bpdu") | str("timers") | str("port-information-state-machine") | str("port-receive-state-machine") | str("port-role-select-state-machine") | str("port-role-transit-state-machine") | str("port-state-transit-state-machine") | str("port-migration-state-machine") | str("port-transmit-state-machine") | str("topology-change-state-machine") | str("bridge-detection-state-machine") | str("state-machine-variables") | str("ppmd") | str("all-failures") | str("all")),
|
91748
91755
|
c(
|
91749
91756
|
str("disable")
|
91750
91757
|
)
|
@@ -91844,7 +91851,7 @@ module Junoser
|
|
91844
91851
|
end
|
91845
91852
|
|
91846
91853
|
rule(:syslog_object) do
|
91847
|
-
b(((str("any") | str("authorization") | str("daemon") | str("ftp") | str("ntp") | str("security") | str("kernel") | str("user") | str("dfc") | str("external") | str("firewall") | str("pfe") | str("conflict-log") | str("change-log") | str("interactive-commands"))).as(:arg),
|
91854
|
+
b(enum((str("any") | str("authorization") | str("daemon") | str("ftp") | str("ntp") | str("security") | str("kernel") | str("user") | str("dfc") | str("external") | str("firewall") | str("pfe") | str("conflict-log") | str("change-log") | str("interactive-commands"))).as(:arg),
|
91848
91855
|
c(
|
91849
91856
|
c(
|
91850
91857
|
str("any"),
|
@@ -92054,7 +92061,7 @@ module Junoser
|
|
92054
92061
|
b(str("level"),
|
92055
92062
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
92056
92063
|
),
|
92057
|
-
a(str("flag"), (str("all-real-services") | str("messages") | str("probe") | str("inter-thread") | str("database") | str("file-descriptor-queue") | str("probe-infra") | str("all"))).as(:oneline),
|
92064
|
+
a(str("flag"), enum(str("all-real-services") | str("messages") | str("probe") | str("inter-thread") | str("database") | str("file-descriptor-queue") | str("probe-infra") | str("all"))).as(:oneline),
|
92058
92065
|
b(a(str("monitor"), arg),
|
92059
92066
|
c(
|
92060
92067
|
a(str("group-name"), arg),
|
@@ -92168,7 +92175,7 @@ module Junoser
|
|
92168
92175
|
b(str("level"),
|
92169
92176
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
92170
92177
|
),
|
92171
|
-
a(str("flag"), (str("normal") | str("config") | str("connect") | str("health") | str("parse") | str("probe") | str("route") | str("snmp") | str("statistics") | str("system") | str("operational-commands") | str("filter") | str("all"))).as(:oneline)
|
92178
|
+
a(str("flag"), enum(str("normal") | str("config") | str("connect") | str("health") | str("parse") | str("probe") | str("route") | str("snmp") | str("statistics") | str("system") | str("operational-commands") | str("filter") | str("all"))).as(:oneline)
|
92172
92179
|
)
|
92173
92180
|
end
|
92174
92181
|
|
@@ -92344,7 +92351,7 @@ module Junoser
|
|
92344
92351
|
end
|
92345
92352
|
|
92346
92353
|
rule(:transaction_method_type) do
|
92347
|
-
((str("method-invite") | str("method-options") | str("method-refer") | str("method-subscribe") | str("method-publish") | str("method-message") | str("method-register"))).as(:arg)
|
92354
|
+
enum((str("method-invite") | str("method-options") | str("method-refer") | str("method-subscribe") | str("method-publish") | str("method-message") | str("method-register"))).as(:arg)
|
92348
92355
|
end
|
92349
92356
|
|
92350
92357
|
rule(:transaction_policy_type) do
|
@@ -92587,7 +92594,7 @@ module Junoser
|
|
92587
92594
|
)
|
92588
92595
|
)
|
92589
92596
|
).as(:oneline),
|
92590
|
-
a(str("flag"), (str("configuration") | str("protocol") | str("init") | str("error") | str("all")),
|
92597
|
+
a(str("flag"), enum(str("configuration") | str("protocol") | str("init") | str("error") | str("all")),
|
92591
92598
|
c(
|
92592
92599
|
str("send"),
|
92593
92600
|
str("receive"),
|
@@ -93372,7 +93379,7 @@ module Junoser
|
|
93372
93379
|
b(str("level"),
|
93373
93380
|
(str("error") | str("warning") | str("notice") | str("info") | str("verbose") | str("all"))
|
93374
93381
|
),
|
93375
|
-
a(str("flag"), (str("normal") | str("config") | str("dns") | str("timer") | str("connect") | str("parse") | str("statistics") | str("system") | str("operational-commands") | str("filter") | str("gencfg") | str("routing") | str("snmp") | str("all"))).as(:oneline)
|
93382
|
+
a(str("flag"), enum(str("normal") | str("config") | str("dns") | str("timer") | str("connect") | str("parse") | str("statistics") | str("system") | str("operational-commands") | str("filter") | str("gencfg") | str("routing") | str("snmp") | str("all"))).as(:oneline)
|
93376
93383
|
)
|
93377
93384
|
end
|
93378
93385
|
|