junoser 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +0 -1
- data/Rakefile +9 -0
- data/example/vsrx-12.1.x47.rb +610 -492
- data/exe/junoser +4 -3
- data/junoser.gemspec +2 -1
- data/lib/junoser/cli.rb +5 -8
- data/lib/junoser/display/set.rb +10 -4
- data/lib/junoser/display/structure.rb +4 -5
- data/lib/junoser/input.rb +34 -0
- data/lib/junoser/parser.rb +625 -513
- data/lib/junoser/ruler.rb +17 -4
- data/lib/junoser/transformer.rb +15 -1
- data/lib/junoser/version.rb +1 -1
- data/lib/junoser/xsd/base.rb +1 -1
- metadata +18 -4
- data/lib/junoser/display/base.rb +0 -40
data/lib/junoser/parser.rb
CHANGED
@@ -32,13 +32,17 @@ module Junoser
|
|
32
32
|
rule(:space) { match('\s').repeat(1) }
|
33
33
|
rule(:any) { match('.').repeat(1) }
|
34
34
|
rule(:eos) { match('$') }
|
35
|
-
rule(:dotted) { match('[^. \t\n\r\f]').repeat(1) >>
|
36
|
-
rule(:quote) {
|
35
|
+
rule(:dotted) { match('[^. \t\n\r\f]').repeat(1) >> str('.') >> match('[^. \t\n\r\f]').repeat(1) }
|
36
|
+
rule(:quote) { str('"') >> match('[^"]').repeat(1) >> str('"') }
|
37
37
|
rule(:address) { match('[0-9a-fA-F:.]').repeat(1) }
|
38
|
-
rule(:prefix ) { address >> (
|
38
|
+
rule(:prefix ) { address >> (str('/') >> match('[0-9]').repeat(1)).maybe }
|
39
39
|
|
40
40
|
root(:set)
|
41
|
-
rule(:set) { (str('set') | str('deactivate')) >> space >> configuration.as(:config) }
|
41
|
+
rule(:set) { (str('set') | str('deactivate')) >> space >> configuration.as(:config) >> comment.maybe }
|
42
|
+
|
43
|
+
rule(:comment) { space.maybe >> (hash_comment | slash_asterisk) }
|
44
|
+
rule(:hash_comment) { str('#') >> any.maybe }
|
45
|
+
rule(:slash_asterisk) { str('/*') >> match('(?!\*\/).').repeat(0) >> str('*/') }
|
42
46
|
|
43
47
|
rule(:undocumented) do
|
44
48
|
s(
|
@@ -135,7 +139,7 @@ module Junoser
|
|
135
139
|
end
|
136
140
|
|
137
141
|
rule(:regular_expression) do
|
138
|
-
|
142
|
+
(quote | arg).as(:arg)
|
139
143
|
end
|
140
144
|
|
141
145
|
rule(:group_glob) do
|
@@ -416,7 +420,7 @@ module Junoser
|
|
416
420
|
a(str("threshold"), arg),
|
417
421
|
a(str("sample-period"), arg)
|
418
422
|
)
|
419
|
-
)
|
423
|
+
),
|
420
424
|
c(
|
421
425
|
a(str("jitter-buffer-packets"), arg),
|
422
426
|
a(str("jitter-buffer-latency"), arg),
|
@@ -424,9 +428,9 @@ module Junoser
|
|
424
428
|
),
|
425
429
|
a(str("bit-rate"), arg)
|
426
430
|
)
|
427
|
-
)
|
428
|
-
str("ima-group-options")
|
429
|
-
str("ima-link-options")
|
431
|
+
),
|
432
|
+
str("ima-group-options"),
|
433
|
+
str("ima-link-options"),
|
430
434
|
b(str("multi-chassis-protection"),
|
431
435
|
multi_chassis_protection_group
|
432
436
|
),
|
@@ -888,7 +892,7 @@ module Junoser
|
|
888
892
|
interface_device
|
889
893
|
)
|
890
894
|
)
|
891
|
-
)
|
895
|
+
),
|
892
896
|
b(str("802.3ad"),
|
893
897
|
sc(
|
894
898
|
arg,
|
@@ -907,7 +911,7 @@ module Junoser
|
|
907
911
|
str("backup")
|
908
912
|
)
|
909
913
|
)
|
910
|
-
)
|
914
|
+
),
|
911
915
|
b(str("ethernet-switch-profile"),
|
912
916
|
sc(
|
913
917
|
a(str("tag-protocol-id"), arg),
|
@@ -977,7 +981,7 @@ module Junoser
|
|
977
981
|
interface_device
|
978
982
|
)
|
979
983
|
)
|
980
|
-
)
|
984
|
+
),
|
981
985
|
b(str("802.3ad"),
|
982
986
|
sc(
|
983
987
|
arg,
|
@@ -995,7 +999,7 @@ module Junoser
|
|
995
999
|
str("backup")
|
996
1000
|
)
|
997
1001
|
)
|
998
|
-
)
|
1002
|
+
),
|
999
1003
|
b(str("mpls"),
|
1000
1004
|
mpls_ifd_options
|
1001
1005
|
),
|
@@ -1193,12 +1197,12 @@ module Junoser
|
|
1193
1197
|
interface_unit
|
1194
1198
|
)
|
1195
1199
|
)
|
1196
|
-
)
|
1200
|
+
),
|
1197
1201
|
b(str("interface-shared-with"),
|
1198
1202
|
sc(
|
1199
1203
|
a(str("psd-name"), arg)
|
1200
1204
|
)
|
1201
|
-
)
|
1205
|
+
),
|
1202
1206
|
c(
|
1203
1207
|
str("disable")
|
1204
1208
|
),
|
@@ -1206,7 +1210,7 @@ module Junoser
|
|
1206
1210
|
str("per-session-scheduler"),
|
1207
1211
|
str("clear-dont-fragment-bit"),
|
1208
1212
|
str("reassemble-packets"),
|
1209
|
-
str("rpm")
|
1213
|
+
str("rpm"),
|
1210
1214
|
a(str("description"), quote | arg),
|
1211
1215
|
a(str("metadata"), arg),
|
1212
1216
|
str("dial-options"),
|
@@ -1271,10 +1275,10 @@ module Junoser
|
|
1271
1275
|
),
|
1272
1276
|
b(str("input-vlan-map"),
|
1273
1277
|
vlan_map
|
1274
|
-
)
|
1278
|
+
),
|
1275
1279
|
b(str("output-vlan-map"),
|
1276
1280
|
vlan_map
|
1277
|
-
)
|
1281
|
+
),
|
1278
1282
|
str("swap-by-poppush"),
|
1279
1283
|
a(str("receive-lsp"), arg),
|
1280
1284
|
a(str("transmit-lsp"), arg),
|
@@ -1466,7 +1470,7 @@ module Junoser
|
|
1466
1470
|
)
|
1467
1471
|
).as(:oneline)
|
1468
1472
|
)
|
1469
|
-
)
|
1473
|
+
),
|
1470
1474
|
a(str("mtu"), arg),
|
1471
1475
|
str("no-redirects"),
|
1472
1476
|
str("no-neighbor-learn"),
|
@@ -1474,8 +1478,8 @@ module Junoser
|
|
1474
1478
|
str("multicast-only"),
|
1475
1479
|
str("primary"),
|
1476
1480
|
a(str("ipsec-sa"), arg),
|
1477
|
-
str("demux-source")
|
1478
|
-
str("demux-destination")
|
1481
|
+
str("demux-source"),
|
1482
|
+
str("demux-destination"),
|
1479
1483
|
b(str("filter"),
|
1480
1484
|
sc(
|
1481
1485
|
c(
|
@@ -1531,7 +1535,7 @@ module Junoser
|
|
1531
1535
|
sc(
|
1532
1536
|
a(str("ipsec-vpn"), arg)
|
1533
1537
|
)
|
1534
|
-
)
|
1538
|
+
),
|
1535
1539
|
b(a(str("address"), arg),
|
1536
1540
|
sc(
|
1537
1541
|
b(str("destination"),
|
@@ -1575,7 +1579,7 @@ module Junoser
|
|
1575
1579
|
epd_threshold_config
|
1576
1580
|
).as(:oneline)
|
1577
1581
|
)
|
1578
|
-
)
|
1582
|
+
),
|
1579
1583
|
b(a(str("arp"), arg),
|
1580
1584
|
sc(
|
1581
1585
|
b(str("l2-interface"),
|
@@ -1598,7 +1602,7 @@ module Junoser
|
|
1598
1602
|
str("https"),
|
1599
1603
|
str("redirect-to-https")
|
1600
1604
|
)
|
1601
|
-
)
|
1605
|
+
),
|
1602
1606
|
b(str("vrrp-group"),
|
1603
1607
|
vrrp_group
|
1604
1608
|
)
|
@@ -1660,7 +1664,7 @@ module Junoser
|
|
1660
1664
|
)
|
1661
1665
|
).as(:oneline)
|
1662
1666
|
)
|
1663
|
-
)
|
1667
|
+
),
|
1664
1668
|
b(str("accounting"),
|
1665
1669
|
sc(
|
1666
1670
|
b(str("source-class-usage"),
|
@@ -1754,11 +1758,11 @@ module Junoser
|
|
1754
1758
|
str("https"),
|
1755
1759
|
str("redirect-to-https")
|
1756
1760
|
)
|
1757
|
-
)
|
1761
|
+
)
|
1758
1762
|
)
|
1759
1763
|
),
|
1760
|
-
str("demux-source")
|
1761
|
-
str("demux-destination")
|
1764
|
+
str("demux-source"),
|
1765
|
+
str("demux-destination"),
|
1762
1766
|
b(str("unnumbered-address"),
|
1763
1767
|
sc(
|
1764
1768
|
b(str("source"),
|
@@ -1993,7 +1997,7 @@ module Junoser
|
|
1993
1997
|
)
|
1994
1998
|
).as(:oneline)
|
1995
1999
|
)
|
1996
|
-
)
|
2000
|
+
),
|
1997
2001
|
c(
|
1998
2002
|
a(str("isid-list"), arg)
|
1999
2003
|
)
|
@@ -2149,7 +2153,7 @@ module Junoser
|
|
2149
2153
|
)
|
2150
2154
|
).as(:oneline)
|
2151
2155
|
)
|
2152
|
-
)
|
2156
|
+
),
|
2153
2157
|
b(str("attributes-match"),
|
2154
2158
|
s(
|
2155
2159
|
b(str("from-event-attribute"),
|
@@ -2231,7 +2235,7 @@ module Junoser
|
|
2231
2235
|
)
|
2232
2236
|
).as(:oneline)
|
2233
2237
|
)
|
2234
|
-
)
|
2238
|
+
),
|
2235
2239
|
a(str("output-format"), arg)
|
2236
2240
|
)
|
2237
2241
|
),
|
@@ -2254,7 +2258,7 @@ module Junoser
|
|
2254
2258
|
)
|
2255
2259
|
).as(:oneline)
|
2256
2260
|
)
|
2257
|
-
)
|
2261
|
+
),
|
2258
2262
|
a(str("output-format"), arg)
|
2259
2263
|
)
|
2260
2264
|
),
|
@@ -2291,7 +2295,7 @@ module Junoser
|
|
2291
2295
|
a(str("sha1"), arg),
|
2292
2296
|
a(str("sha-256"), arg)
|
2293
2297
|
)
|
2294
|
-
)
|
2298
|
+
),
|
2295
2299
|
b(a(str("remote-execution"), arg),
|
2296
2300
|
sc(
|
2297
2301
|
a(str("username"), arg),
|
@@ -2561,7 +2565,7 @@ module Junoser
|
|
2561
2565
|
)
|
2562
2566
|
)
|
2563
2567
|
)
|
2564
|
-
)
|
2568
|
+
),
|
2565
2569
|
str("enterprise-oid"),
|
2566
2570
|
b(a(str("routing-instance"), arg),
|
2567
2571
|
sc(
|
@@ -2574,7 +2578,7 @@ module Junoser
|
|
2574
2578
|
)
|
2575
2579
|
)
|
2576
2580
|
)
|
2577
|
-
)
|
2581
|
+
)
|
2578
2582
|
)
|
2579
2583
|
),
|
2580
2584
|
b(a(str("logical-system"), arg),
|
@@ -2590,7 +2594,7 @@ module Junoser
|
|
2590
2594
|
)
|
2591
2595
|
)
|
2592
2596
|
)
|
2593
|
-
)
|
2597
|
+
)
|
2594
2598
|
)
|
2595
2599
|
)
|
2596
2600
|
)
|
@@ -3253,7 +3257,7 @@ module Junoser
|
|
3253
3257
|
)
|
3254
3258
|
)
|
3255
3259
|
)
|
3256
|
-
)
|
3260
|
+
),
|
3257
3261
|
b(str("ftp"),
|
3258
3262
|
sc(
|
3259
3263
|
str("disable"),
|
@@ -3316,7 +3320,7 @@ module Junoser
|
|
3316
3320
|
)
|
3317
3321
|
)
|
3318
3322
|
)
|
3319
|
-
)
|
3323
|
+
),
|
3320
3324
|
b(str("mgcp"),
|
3321
3325
|
sc(
|
3322
3326
|
str("disable"),
|
@@ -3360,7 +3364,7 @@ module Junoser
|
|
3360
3364
|
)
|
3361
3365
|
)
|
3362
3366
|
)
|
3363
|
-
)
|
3367
|
+
),
|
3364
3368
|
b(str("msrpc"),
|
3365
3369
|
sc(
|
3366
3370
|
str("disable"),
|
@@ -3461,7 +3465,7 @@ module Junoser
|
|
3461
3465
|
)
|
3462
3466
|
)
|
3463
3467
|
)
|
3464
|
-
)
|
3468
|
+
),
|
3465
3469
|
b(str("sip"),
|
3466
3470
|
sc(
|
3467
3471
|
str("disable"),
|
@@ -3513,7 +3517,7 @@ module Junoser
|
|
3513
3517
|
)
|
3514
3518
|
)
|
3515
3519
|
)
|
3516
|
-
)
|
3520
|
+
),
|
3517
3521
|
b(str("sql"),
|
3518
3522
|
sc(
|
3519
3523
|
str("disable"),
|
@@ -4874,7 +4878,7 @@ module Junoser
|
|
4874
4878
|
a(str("next"), arg)
|
4875
4879
|
)
|
4876
4880
|
)
|
4877
|
-
)
|
4881
|
+
)
|
4878
4882
|
)
|
4879
4883
|
)
|
4880
4884
|
)
|
@@ -4909,7 +4913,7 @@ module Junoser
|
|
4909
4913
|
term_object
|
4910
4914
|
)
|
4911
4915
|
)
|
4912
|
-
)
|
4916
|
+
)
|
4913
4917
|
end
|
4914
4918
|
|
4915
4919
|
rule(:application_set_object) do
|
@@ -4989,7 +4993,7 @@ module Junoser
|
|
4989
4993
|
b(str("accept"),
|
4990
4994
|
(str("inet") | str("inet6") | str("pppoe") | str("dhcp-v4") | str("dhcp-v6") | str("any"))
|
4991
4995
|
),
|
4992
|
-
a(str("ranges"), arg)
|
4996
|
+
a(str("ranges"), arg)
|
4993
4997
|
)
|
4994
4998
|
),
|
4995
4999
|
b(str("override"),
|
@@ -5019,7 +5023,7 @@ module Junoser
|
|
5019
5023
|
b(str("accept"),
|
5020
5024
|
(str("inet") | str("inet6") | str("pppoe") | str("dhcp-v4") | str("dhcp-v6") | str("any"))
|
5021
5025
|
),
|
5022
|
-
a(str("ranges"), arg)
|
5026
|
+
a(str("ranges"), arg)
|
5023
5027
|
)
|
5024
5028
|
),
|
5025
5029
|
b(str("override"),
|
@@ -5028,7 +5032,7 @@ module Junoser
|
|
5028
5032
|
sc(
|
5029
5033
|
a(str("dynamic-profile"), arg)
|
5030
5034
|
)
|
5031
|
-
)
|
5035
|
+
)
|
5032
5036
|
)
|
5033
5037
|
),
|
5034
5038
|
b(str("authentication"),
|
@@ -5283,7 +5287,7 @@ module Junoser
|
|
5283
5287
|
str("port-mirror"),
|
5284
5288
|
a(str("next-hop-group"), arg)
|
5285
5289
|
)
|
5286
|
-
)
|
5290
|
+
)
|
5287
5291
|
)
|
5288
5292
|
)
|
5289
5293
|
)
|
@@ -5366,7 +5370,7 @@ module Junoser
|
|
5366
5370
|
a(str("next"), arg)
|
5367
5371
|
)
|
5368
5372
|
)
|
5369
|
-
)
|
5373
|
+
)
|
5370
5374
|
)
|
5371
5375
|
)
|
5372
5376
|
)
|
@@ -5465,7 +5469,7 @@ module Junoser
|
|
5465
5469
|
)
|
5466
5470
|
),
|
5467
5471
|
str("member"),
|
5468
|
-
str("fabric")
|
5472
|
+
str("fabric"),
|
5469
5473
|
str("synchronization"),
|
5470
5474
|
str("lcd-menu"),
|
5471
5475
|
a(str("fru-poweron-sequence"), arg),
|
@@ -5546,6 +5550,12 @@ module Junoser
|
|
5546
5550
|
)
|
5547
5551
|
)
|
5548
5552
|
)
|
5553
|
+
),
|
5554
|
+
b(str("forwarding-options"),
|
5555
|
+
sc(
|
5556
|
+
a(str("num-65-127-prefix"), arg),
|
5557
|
+
str("lpm-profile prefix-65-127-disable")
|
5558
|
+
)
|
5549
5559
|
)
|
5550
5560
|
)
|
5551
5561
|
end
|
@@ -5683,7 +5693,9 @@ module Junoser
|
|
5683
5693
|
|
5684
5694
|
rule(:chassis_feb_type) do
|
5685
5695
|
sc(
|
5686
|
-
str("slot")
|
5696
|
+
b(a(str("slot"), arg),
|
5697
|
+
a(str("sampling-instance"), arg)
|
5698
|
+
)
|
5687
5699
|
)
|
5688
5700
|
end
|
5689
5701
|
|
@@ -5706,7 +5718,7 @@ module Junoser
|
|
5706
5718
|
str("offline"),
|
5707
5719
|
str("offline-on-fabric-bandwidth-reduction"),
|
5708
5720
|
str("port-mirror-instance"),
|
5709
|
-
str("sampling-instance"),
|
5721
|
+
a(str("sampling-instance"), arg),
|
5710
5722
|
b(str("inline-services"),
|
5711
5723
|
a(str("bandwidth"), str("1g") | str("10g"))
|
5712
5724
|
),
|
@@ -5746,8 +5758,8 @@ module Junoser
|
|
5746
5758
|
),
|
5747
5759
|
str("no-mcast-replication"),
|
5748
5760
|
a(str("framing"), arg),
|
5749
|
-
str("synchronization")
|
5750
|
-
str("recovered-clock")
|
5761
|
+
str("synchronization"),
|
5762
|
+
str("recovered-clock"),
|
5751
5763
|
a(str("vtmapping"), arg),
|
5752
5764
|
str("no-concatenate"),
|
5753
5765
|
str("no-multi-rate"),
|
@@ -5838,7 +5850,7 @@ module Junoser
|
|
5838
5850
|
),
|
5839
5851
|
b(str("fibre-channel"),
|
5840
5852
|
chassis_fibre_channel_type
|
5841
|
-
)
|
5853
|
+
),
|
5842
5854
|
str("sfpplus"),
|
5843
5855
|
str("hash-key"),
|
5844
5856
|
a(str("ingress-policer-overhead"), arg),
|
@@ -5873,7 +5885,7 @@ module Junoser
|
|
5873
5885
|
)
|
5874
5886
|
)
|
5875
5887
|
)
|
5876
|
-
)
|
5888
|
+
)
|
5877
5889
|
end
|
5878
5890
|
|
5879
5891
|
rule(:chassis_pic_port_framing) do
|
@@ -5937,7 +5949,7 @@ module Junoser
|
|
5937
5949
|
sc(
|
5938
5950
|
str("on-loss-of-keepalives"),
|
5939
5951
|
str("on-disk-failure")
|
5940
|
-
)
|
5952
|
+
)
|
5941
5953
|
end
|
5942
5954
|
|
5943
5955
|
rule(:chassis_rdd_id_type) do
|
@@ -6998,8 +7010,8 @@ module Junoser
|
|
6998
7010
|
sc(
|
6999
7011
|
a(str("interval"), arg)
|
7000
7012
|
)
|
7001
|
-
)
|
7002
|
-
)
|
7013
|
+
)
|
7014
|
+
)
|
7003
7015
|
end
|
7004
7016
|
|
7005
7017
|
rule(:epd_threshold_config) do
|
@@ -7145,7 +7157,7 @@ module Junoser
|
|
7145
7157
|
a(str("forwarding-class"), arg),
|
7146
7158
|
str("out-of-profile")
|
7147
7159
|
)
|
7148
|
-
)
|
7160
|
+
)
|
7149
7161
|
)
|
7150
7162
|
)
|
7151
7163
|
end
|
@@ -7646,7 +7658,7 @@ module Junoser
|
|
7646
7658
|
str("ignore")
|
7647
7659
|
)
|
7648
7660
|
)
|
7649
|
-
)
|
7661
|
+
)
|
7650
7662
|
)
|
7651
7663
|
)
|
7652
7664
|
)
|
@@ -7857,7 +7869,7 @@ module Junoser
|
|
7857
7869
|
).as(:oneline)
|
7858
7870
|
)
|
7859
7871
|
)
|
7860
|
-
)
|
7872
|
+
)
|
7861
7873
|
)
|
7862
7874
|
)
|
7863
7875
|
)
|
@@ -7878,29 +7890,29 @@ module Junoser
|
|
7878
7890
|
sc(
|
7879
7891
|
b(str("source-address"),
|
7880
7892
|
firewall_addr6_simple_object
|
7881
|
-
)
|
7893
|
+
),
|
7882
7894
|
b(str("destination-address"),
|
7883
7895
|
firewall_addr6_simple_object
|
7884
|
-
)
|
7896
|
+
),
|
7885
7897
|
c(
|
7886
7898
|
b(str("source-port"),
|
7887
7899
|
match_simple_port_value
|
7888
|
-
)
|
7900
|
+
)
|
7889
7901
|
),
|
7890
7902
|
c(
|
7891
7903
|
b(str("destination-port"),
|
7892
7904
|
match_simple_port_value
|
7893
|
-
)
|
7905
|
+
)
|
7894
7906
|
),
|
7895
7907
|
c(
|
7896
7908
|
b(str("next-header"),
|
7897
7909
|
match_simple_protocol_value
|
7898
|
-
)
|
7910
|
+
)
|
7899
7911
|
),
|
7900
7912
|
c(
|
7901
7913
|
b(str("traffic-class"),
|
7902
7914
|
match_simple_dscp_value
|
7903
|
-
)
|
7915
|
+
)
|
7904
7916
|
),
|
7905
7917
|
a(str("match-terms"), arg)
|
7906
7918
|
)
|
@@ -7928,7 +7940,7 @@ module Junoser
|
|
7928
7940
|
).as(:oneline)
|
7929
7941
|
)
|
7930
7942
|
)
|
7931
|
-
)
|
7943
|
+
)
|
7932
7944
|
)
|
7933
7945
|
)
|
7934
7946
|
)
|
@@ -7940,7 +7952,7 @@ module Junoser
|
|
7940
7952
|
b(str("address"),
|
7941
7953
|
ipv6prefix
|
7942
7954
|
)
|
7943
|
-
)
|
7955
|
+
)
|
7944
7956
|
end
|
7945
7957
|
|
7946
7958
|
rule(:inet6_service_filter) do
|
@@ -8026,7 +8038,7 @@ module Junoser
|
|
8026
8038
|
str("skip")
|
8027
8039
|
)
|
8028
8040
|
)
|
8029
|
-
)
|
8041
|
+
)
|
8030
8042
|
)
|
8031
8043
|
)
|
8032
8044
|
)
|
@@ -8169,7 +8181,7 @@ module Junoser
|
|
8169
8181
|
str("ignore")
|
8170
8182
|
)
|
8171
8183
|
)
|
8172
|
-
)
|
8184
|
+
)
|
8173
8185
|
)
|
8174
8186
|
)
|
8175
8187
|
)
|
@@ -8368,7 +8380,7 @@ module Junoser
|
|
8368
8380
|
sc(
|
8369
8381
|
a(str("accounting"), arg)
|
8370
8382
|
)
|
8371
|
-
)
|
8383
|
+
),
|
8372
8384
|
a(str("next"), arg),
|
8373
8385
|
b(str("logical-system"),
|
8374
8386
|
s(
|
@@ -8423,7 +8435,7 @@ module Junoser
|
|
8423
8435
|
a(str("dscp"), arg),
|
8424
8436
|
a(str("prefix-action"), arg)
|
8425
8437
|
)
|
8426
|
-
)
|
8438
|
+
)
|
8427
8439
|
)
|
8428
8440
|
)
|
8429
8441
|
)
|
@@ -8444,29 +8456,29 @@ module Junoser
|
|
8444
8456
|
sc(
|
8445
8457
|
b(str("source-address"),
|
8446
8458
|
firewall_addr_simple_object
|
8447
|
-
)
|
8459
|
+
),
|
8448
8460
|
b(str("destination-address"),
|
8449
8461
|
firewall_addr_simple_object
|
8450
|
-
)
|
8462
|
+
),
|
8451
8463
|
c(
|
8452
8464
|
b(str("source-port"),
|
8453
8465
|
match_simple_port_value
|
8454
|
-
)
|
8466
|
+
)
|
8455
8467
|
),
|
8456
8468
|
c(
|
8457
8469
|
b(str("destination-port"),
|
8458
8470
|
match_simple_port_value
|
8459
|
-
)
|
8471
|
+
)
|
8460
8472
|
),
|
8461
8473
|
c(
|
8462
8474
|
b(str("protocol"),
|
8463
8475
|
match_simple_protocol_value
|
8464
|
-
)
|
8476
|
+
)
|
8465
8477
|
),
|
8466
8478
|
c(
|
8467
8479
|
b(str("dscp"),
|
8468
8480
|
match_simple_dscp_value
|
8469
|
-
)
|
8481
|
+
)
|
8470
8482
|
),
|
8471
8483
|
a(str("match-terms"), arg)
|
8472
8484
|
)
|
@@ -8494,7 +8506,7 @@ module Junoser
|
|
8494
8506
|
).as(:oneline)
|
8495
8507
|
)
|
8496
8508
|
)
|
8497
|
-
)
|
8509
|
+
)
|
8498
8510
|
)
|
8499
8511
|
)
|
8500
8512
|
)
|
@@ -8506,7 +8518,7 @@ module Junoser
|
|
8506
8518
|
b(str("address"),
|
8507
8519
|
ipv4prefix
|
8508
8520
|
)
|
8509
|
-
)
|
8521
|
+
)
|
8510
8522
|
end
|
8511
8523
|
|
8512
8524
|
rule(:inet_service_filter) do
|
@@ -8615,7 +8627,7 @@ module Junoser
|
|
8615
8627
|
str("skip")
|
8616
8628
|
)
|
8617
8629
|
)
|
8618
|
-
)
|
8630
|
+
)
|
8619
8631
|
)
|
8620
8632
|
)
|
8621
8633
|
)
|
@@ -8673,7 +8685,7 @@ module Junoser
|
|
8673
8685
|
str("discard"),
|
8674
8686
|
str("accept")
|
8675
8687
|
)
|
8676
|
-
)
|
8688
|
+
)
|
8677
8689
|
)
|
8678
8690
|
)
|
8679
8691
|
)
|
@@ -8768,7 +8780,7 @@ module Junoser
|
|
8768
8780
|
a(str("threshold"), arg),
|
8769
8781
|
a(str("sample-period"), arg)
|
8770
8782
|
)
|
8771
|
-
)
|
8783
|
+
),
|
8772
8784
|
c(
|
8773
8785
|
a(str("jitter-buffer-packets"), arg),
|
8774
8786
|
a(str("jitter-buffer-latency"), arg),
|
@@ -8776,9 +8788,9 @@ module Junoser
|
|
8776
8788
|
),
|
8777
8789
|
a(str("bit-rate"), arg)
|
8778
8790
|
)
|
8779
|
-
)
|
8780
|
-
str("ima-group-options")
|
8781
|
-
str("ima-link-options")
|
8791
|
+
),
|
8792
|
+
str("ima-group-options"),
|
8793
|
+
str("ima-link-options"),
|
8782
8794
|
b(str("multi-chassis-protection"),
|
8783
8795
|
multi_chassis_protection_group
|
8784
8796
|
),
|
@@ -9240,7 +9252,7 @@ module Junoser
|
|
9240
9252
|
interface_device
|
9241
9253
|
)
|
9242
9254
|
)
|
9243
|
-
)
|
9255
|
+
),
|
9244
9256
|
b(str("802.3ad"),
|
9245
9257
|
sc(
|
9246
9258
|
arg,
|
@@ -9259,7 +9271,7 @@ module Junoser
|
|
9259
9271
|
str("backup")
|
9260
9272
|
)
|
9261
9273
|
)
|
9262
|
-
)
|
9274
|
+
),
|
9263
9275
|
b(str("ethernet-switch-profile"),
|
9264
9276
|
sc(
|
9265
9277
|
a(str("tag-protocol-id"), arg),
|
@@ -9329,7 +9341,7 @@ module Junoser
|
|
9329
9341
|
interface_device
|
9330
9342
|
)
|
9331
9343
|
)
|
9332
|
-
)
|
9344
|
+
),
|
9333
9345
|
b(str("802.3ad"),
|
9334
9346
|
sc(
|
9335
9347
|
arg,
|
@@ -9347,7 +9359,7 @@ module Junoser
|
|
9347
9359
|
str("backup")
|
9348
9360
|
)
|
9349
9361
|
)
|
9350
|
-
)
|
9362
|
+
),
|
9351
9363
|
b(str("mpls"),
|
9352
9364
|
mpls_ifd_options
|
9353
9365
|
),
|
@@ -9545,12 +9557,12 @@ module Junoser
|
|
9545
9557
|
interface_unit
|
9546
9558
|
)
|
9547
9559
|
)
|
9548
|
-
)
|
9560
|
+
),
|
9549
9561
|
b(str("interface-shared-with"),
|
9550
9562
|
sc(
|
9551
9563
|
a(str("psd-name"), arg)
|
9552
9564
|
)
|
9553
|
-
)
|
9565
|
+
),
|
9554
9566
|
c(
|
9555
9567
|
str("disable")
|
9556
9568
|
),
|
@@ -9558,7 +9570,7 @@ module Junoser
|
|
9558
9570
|
str("per-session-scheduler"),
|
9559
9571
|
str("clear-dont-fragment-bit"),
|
9560
9572
|
str("reassemble-packets"),
|
9561
|
-
str("rpm")
|
9573
|
+
str("rpm"),
|
9562
9574
|
a(str("description"), quote | arg),
|
9563
9575
|
a(str("metadata"), arg),
|
9564
9576
|
str("dial-options"),
|
@@ -9623,10 +9635,10 @@ module Junoser
|
|
9623
9635
|
),
|
9624
9636
|
b(str("input-vlan-map"),
|
9625
9637
|
vlan_map
|
9626
|
-
)
|
9638
|
+
),
|
9627
9639
|
b(str("output-vlan-map"),
|
9628
9640
|
vlan_map
|
9629
|
-
)
|
9641
|
+
),
|
9630
9642
|
str("swap-by-poppush"),
|
9631
9643
|
a(str("receive-lsp"), arg),
|
9632
9644
|
a(str("transmit-lsp"), arg),
|
@@ -9818,7 +9830,7 @@ module Junoser
|
|
9818
9830
|
)
|
9819
9831
|
).as(:oneline)
|
9820
9832
|
)
|
9821
|
-
)
|
9833
|
+
),
|
9822
9834
|
a(str("mtu"), arg),
|
9823
9835
|
str("no-redirects"),
|
9824
9836
|
str("no-neighbor-learn"),
|
@@ -9826,8 +9838,8 @@ module Junoser
|
|
9826
9838
|
str("multicast-only"),
|
9827
9839
|
str("primary"),
|
9828
9840
|
a(str("ipsec-sa"), arg),
|
9829
|
-
str("demux-source")
|
9830
|
-
str("demux-destination")
|
9841
|
+
str("demux-source"),
|
9842
|
+
str("demux-destination"),
|
9831
9843
|
b(str("filter"),
|
9832
9844
|
sc(
|
9833
9845
|
c(
|
@@ -9883,7 +9895,7 @@ module Junoser
|
|
9883
9895
|
sc(
|
9884
9896
|
a(str("ipsec-vpn"), arg)
|
9885
9897
|
)
|
9886
|
-
)
|
9898
|
+
),
|
9887
9899
|
b(a(str("address"), arg),
|
9888
9900
|
sc(
|
9889
9901
|
b(str("destination"),
|
@@ -9927,7 +9939,7 @@ module Junoser
|
|
9927
9939
|
epd_threshold_config
|
9928
9940
|
).as(:oneline)
|
9929
9941
|
)
|
9930
|
-
)
|
9942
|
+
),
|
9931
9943
|
b(a(str("arp"), arg),
|
9932
9944
|
sc(
|
9933
9945
|
b(str("l2-interface"),
|
@@ -9950,7 +9962,7 @@ module Junoser
|
|
9950
9962
|
str("https"),
|
9951
9963
|
str("redirect-to-https")
|
9952
9964
|
)
|
9953
|
-
)
|
9965
|
+
),
|
9954
9966
|
b(str("vrrp-group"),
|
9955
9967
|
vrrp_group
|
9956
9968
|
)
|
@@ -10012,7 +10024,7 @@ module Junoser
|
|
10012
10024
|
)
|
10013
10025
|
).as(:oneline)
|
10014
10026
|
)
|
10015
|
-
)
|
10027
|
+
),
|
10016
10028
|
b(str("accounting"),
|
10017
10029
|
sc(
|
10018
10030
|
b(str("source-class-usage"),
|
@@ -10106,11 +10118,11 @@ module Junoser
|
|
10106
10118
|
str("https"),
|
10107
10119
|
str("redirect-to-https")
|
10108
10120
|
)
|
10109
|
-
)
|
10121
|
+
)
|
10110
10122
|
)
|
10111
10123
|
),
|
10112
|
-
str("demux-source")
|
10113
|
-
str("demux-destination")
|
10124
|
+
str("demux-source"),
|
10125
|
+
str("demux-destination"),
|
10114
10126
|
b(str("unnumbered-address"),
|
10115
10127
|
sc(
|
10116
10128
|
b(str("source"),
|
@@ -10345,7 +10357,7 @@ module Junoser
|
|
10345
10357
|
)
|
10346
10358
|
).as(:oneline)
|
10347
10359
|
)
|
10348
|
-
)
|
10360
|
+
),
|
10349
10361
|
c(
|
10350
10362
|
a(str("isid-list"), arg)
|
10351
10363
|
)
|
@@ -10478,7 +10490,7 @@ module Junoser
|
|
10478
10490
|
)
|
10479
10491
|
)
|
10480
10492
|
)
|
10481
|
-
)
|
10493
|
+
)
|
10482
10494
|
end
|
10483
10495
|
|
10484
10496
|
rule(:jsrc_partition_definition) do
|
@@ -10841,7 +10853,7 @@ module Junoser
|
|
10841
10853
|
a(str("domain-name"), arg),
|
10842
10854
|
a(str("separator"), arg),
|
10843
10855
|
a(str("count"), arg)
|
10844
|
-
)
|
10856
|
+
)
|
10845
10857
|
end
|
10846
10858
|
|
10847
10859
|
rule(:access_client_object) do
|
@@ -10874,7 +10886,7 @@ module Junoser
|
|
10874
10886
|
)
|
10875
10887
|
)
|
10876
10888
|
)
|
10877
|
-
)
|
10889
|
+
)
|
10878
10890
|
end
|
10879
10891
|
|
10880
10892
|
rule(:access_ldap_options) do
|
@@ -10927,7 +10939,7 @@ module Junoser
|
|
10927
10939
|
),
|
10928
10940
|
a(str("routing-instance"), arg)
|
10929
10941
|
)
|
10930
|
-
)
|
10942
|
+
)
|
10931
10943
|
end
|
10932
10944
|
|
10933
10945
|
rule(:address_assignment_type) do
|
@@ -11008,7 +11020,7 @@ module Junoser
|
|
11008
11020
|
),
|
11009
11021
|
a(str("prefix-length"), arg)
|
11010
11022
|
)
|
11011
|
-
)
|
11023
|
+
),
|
11012
11024
|
b(str("dhcp-attributes"),
|
11013
11025
|
dhcp_attribute_type
|
11014
11026
|
)
|
@@ -11089,9 +11101,9 @@ module Junoser
|
|
11089
11101
|
)
|
11090
11102
|
).as(:oneline)
|
11091
11103
|
)
|
11092
|
-
)
|
11104
|
+
)
|
11093
11105
|
)
|
11094
|
-
)
|
11106
|
+
),
|
11095
11107
|
a(str("maximum-lease-time"), arg),
|
11096
11108
|
b(str("next-server"),
|
11097
11109
|
ipv4addr
|
@@ -11178,7 +11190,7 @@ module Junoser
|
|
11178
11190
|
sc(
|
11179
11191
|
a(str("aaa-routing-instance"), arg)
|
11180
11192
|
)
|
11181
|
-
)
|
11193
|
+
)
|
11182
11194
|
),
|
11183
11195
|
a(str("access-profile"), arg),
|
11184
11196
|
a(str("address-pool"), arg),
|
@@ -11197,7 +11209,7 @@ module Junoser
|
|
11197
11209
|
sc(
|
11198
11210
|
a(str("target-routing-instance"), arg)
|
11199
11211
|
)
|
11200
|
-
)
|
11212
|
+
)
|
11201
11213
|
),
|
11202
11214
|
str("strip-domain"),
|
11203
11215
|
a(str("tunnel-profile"), arg)
|
@@ -11591,7 +11603,7 @@ module Junoser
|
|
11591
11603
|
).as(:oneline),
|
11592
11604
|
a(str("service-profile"), arg)
|
11593
11605
|
)
|
11594
|
-
)
|
11606
|
+
)
|
11595
11607
|
)
|
11596
11608
|
)
|
11597
11609
|
end
|
@@ -12110,7 +12122,7 @@ module Junoser
|
|
12110
12122
|
str("rate-limit")
|
12111
12123
|
)
|
12112
12124
|
)
|
12113
|
-
)
|
12125
|
+
),
|
12114
12126
|
str("excess-rate").as(:oneline),
|
12115
12127
|
b(str("shaping-rate"),
|
12116
12128
|
sc(
|
@@ -12136,7 +12148,7 @@ module Junoser
|
|
12136
12148
|
str("exact")
|
12137
12149
|
)
|
12138
12150
|
)
|
12139
|
-
)
|
12151
|
+
),
|
12140
12152
|
a(str("priority"), arg),
|
12141
12153
|
a(str("excess-priority"), arg),
|
12142
12154
|
b(str("drop-profile-map"),
|
@@ -12344,7 +12356,7 @@ module Junoser
|
|
12344
12356
|
a(str("rewrite-rule-name"), arg),
|
12345
12357
|
a(str("vlan-tag"), arg)
|
12346
12358
|
)
|
12347
|
-
)
|
12359
|
+
)
|
12348
12360
|
)
|
12349
12361
|
),
|
12350
12362
|
str("loss-priority-rewrites"),
|
@@ -12400,37 +12412,37 @@ module Junoser
|
|
12400
12412
|
a(str("proportion"), arg),
|
12401
12413
|
a(str("percent"), arg)
|
12402
12414
|
)
|
12403
|
-
)
|
12415
|
+
),
|
12404
12416
|
b(str("cos-excess-rate-high"),
|
12405
12417
|
sc(
|
12406
12418
|
a(str("proportion"), arg),
|
12407
12419
|
a(str("percent"), arg)
|
12408
12420
|
)
|
12409
|
-
)
|
12421
|
+
),
|
12410
12422
|
b(str("cos-excess-rate-low"),
|
12411
12423
|
sc(
|
12412
12424
|
a(str("proportion"), arg),
|
12413
12425
|
a(str("percent"), arg)
|
12414
12426
|
)
|
12415
|
-
)
|
12427
|
+
),
|
12416
12428
|
b(str("cos-scheduler-tx"),
|
12417
12429
|
sc(
|
12418
12430
|
a(str("rate"), arg),
|
12419
12431
|
a(str("percent"), arg)
|
12420
12432
|
)
|
12421
|
-
)
|
12433
|
+
),
|
12422
12434
|
b(str("cos-scheduler-bs"),
|
12423
12435
|
sc(
|
12424
12436
|
a(str("percent"), arg),
|
12425
12437
|
a(str("temporal"), arg)
|
12426
12438
|
)
|
12427
|
-
)
|
12439
|
+
),
|
12428
12440
|
b(str("cos-scheduler-shaping-rate"),
|
12429
12441
|
sc(
|
12430
12442
|
a(str("rate"), arg),
|
12431
12443
|
a(str("percent"), arg)
|
12432
12444
|
)
|
12433
|
-
)
|
12445
|
+
),
|
12434
12446
|
b(str("other-variables"),
|
12435
12447
|
base_default_variable_object
|
12436
12448
|
)
|
@@ -12642,7 +12654,7 @@ module Junoser
|
|
12642
12654
|
)
|
12643
12655
|
)
|
12644
12656
|
)
|
12645
|
-
)
|
12657
|
+
),
|
12646
12658
|
b(a(str("iso-route"), arg),
|
12647
12659
|
sc(
|
12648
12660
|
c(
|
@@ -12765,7 +12777,7 @@ module Junoser
|
|
12765
12777
|
)
|
12766
12778
|
)
|
12767
12779
|
)
|
12768
|
-
)
|
12780
|
+
)
|
12769
12781
|
)
|
12770
12782
|
),
|
12771
12783
|
b(str("martians"),
|
@@ -12808,7 +12820,7 @@ module Junoser
|
|
12808
12820
|
).as(:oneline),
|
12809
12821
|
str("as-path-compare")
|
12810
12822
|
)
|
12811
|
-
)
|
12823
|
+
),
|
12812
12824
|
b(str("label"),
|
12813
12825
|
sc(
|
12814
12826
|
b(str("allocation"),
|
@@ -12818,7 +12830,7 @@ module Junoser
|
|
12818
12830
|
policy_algebra
|
12819
12831
|
)
|
12820
12832
|
)
|
12821
|
-
)
|
12833
|
+
),
|
12822
12834
|
b(str("access"),
|
12823
12835
|
sc(
|
12824
12836
|
b(a(str("route"), arg),
|
@@ -12833,7 +12845,7 @@ module Junoser
|
|
12833
12845
|
a(str("preference"), arg),
|
12834
12846
|
a(str("tag"), arg)
|
12835
12847
|
)
|
12836
|
-
)
|
12848
|
+
)
|
12837
12849
|
)
|
12838
12850
|
),
|
12839
12851
|
b(str("access-internal"),
|
@@ -12847,7 +12859,7 @@ module Junoser
|
|
12847
12859
|
qualified_nh_obj
|
12848
12860
|
)
|
12849
12861
|
)
|
12850
|
-
)
|
12862
|
+
)
|
12851
12863
|
)
|
12852
12864
|
)
|
12853
12865
|
)
|
@@ -12866,7 +12878,7 @@ module Junoser
|
|
12866
12878
|
a(str("preference"), arg),
|
12867
12879
|
a(str("tag"), arg)
|
12868
12880
|
)
|
12869
|
-
)
|
12881
|
+
)
|
12870
12882
|
)
|
12871
12883
|
),
|
12872
12884
|
b(str("access-internal"),
|
@@ -12880,7 +12892,7 @@ module Junoser
|
|
12880
12892
|
qualified_nh_obj
|
12881
12893
|
)
|
12882
12894
|
)
|
12883
|
-
)
|
12895
|
+
)
|
12884
12896
|
)
|
12885
12897
|
),
|
12886
12898
|
b(str("multicast"),
|
@@ -13127,7 +13139,7 @@ module Junoser
|
|
13127
13139
|
a(str("threshold"), arg),
|
13128
13140
|
a(str("sample-period"), arg)
|
13129
13141
|
)
|
13130
|
-
)
|
13142
|
+
),
|
13131
13143
|
c(
|
13132
13144
|
a(str("jitter-buffer-packets"), arg),
|
13133
13145
|
a(str("jitter-buffer-latency"), arg),
|
@@ -13135,9 +13147,9 @@ module Junoser
|
|
13135
13147
|
),
|
13136
13148
|
a(str("bit-rate"), arg)
|
13137
13149
|
)
|
13138
|
-
)
|
13139
|
-
str("ima-group-options")
|
13140
|
-
str("ima-link-options")
|
13150
|
+
),
|
13151
|
+
str("ima-group-options"),
|
13152
|
+
str("ima-link-options"),
|
13141
13153
|
b(str("multi-chassis-protection"),
|
13142
13154
|
multi_chassis_protection_group
|
13143
13155
|
),
|
@@ -13599,7 +13611,7 @@ module Junoser
|
|
13599
13611
|
interface_device
|
13600
13612
|
)
|
13601
13613
|
)
|
13602
|
-
)
|
13614
|
+
),
|
13603
13615
|
b(str("802.3ad"),
|
13604
13616
|
sc(
|
13605
13617
|
arg,
|
@@ -13618,7 +13630,7 @@ module Junoser
|
|
13618
13630
|
str("backup")
|
13619
13631
|
)
|
13620
13632
|
)
|
13621
|
-
)
|
13633
|
+
),
|
13622
13634
|
b(str("ethernet-switch-profile"),
|
13623
13635
|
sc(
|
13624
13636
|
a(str("tag-protocol-id"), arg),
|
@@ -13688,7 +13700,7 @@ module Junoser
|
|
13688
13700
|
interface_device
|
13689
13701
|
)
|
13690
13702
|
)
|
13691
|
-
)
|
13703
|
+
),
|
13692
13704
|
b(str("802.3ad"),
|
13693
13705
|
sc(
|
13694
13706
|
arg,
|
@@ -13706,7 +13718,7 @@ module Junoser
|
|
13706
13718
|
str("backup")
|
13707
13719
|
)
|
13708
13720
|
)
|
13709
|
-
)
|
13721
|
+
),
|
13710
13722
|
b(str("mpls"),
|
13711
13723
|
mpls_ifd_options
|
13712
13724
|
),
|
@@ -13904,12 +13916,12 @@ module Junoser
|
|
13904
13916
|
interface_unit
|
13905
13917
|
)
|
13906
13918
|
)
|
13907
|
-
)
|
13919
|
+
),
|
13908
13920
|
b(str("interface-shared-with"),
|
13909
13921
|
sc(
|
13910
13922
|
a(str("psd-name"), arg)
|
13911
13923
|
)
|
13912
|
-
)
|
13924
|
+
),
|
13913
13925
|
c(
|
13914
13926
|
str("disable")
|
13915
13927
|
),
|
@@ -13917,7 +13929,7 @@ module Junoser
|
|
13917
13929
|
str("per-session-scheduler"),
|
13918
13930
|
str("clear-dont-fragment-bit"),
|
13919
13931
|
str("reassemble-packets"),
|
13920
|
-
str("rpm")
|
13932
|
+
str("rpm"),
|
13921
13933
|
a(str("description"), quote | arg),
|
13922
13934
|
a(str("metadata"), arg),
|
13923
13935
|
str("dial-options"),
|
@@ -13982,10 +13994,10 @@ module Junoser
|
|
13982
13994
|
),
|
13983
13995
|
b(str("input-vlan-map"),
|
13984
13996
|
vlan_map
|
13985
|
-
)
|
13997
|
+
),
|
13986
13998
|
b(str("output-vlan-map"),
|
13987
13999
|
vlan_map
|
13988
|
-
)
|
14000
|
+
),
|
13989
14001
|
str("swap-by-poppush"),
|
13990
14002
|
a(str("receive-lsp"), arg),
|
13991
14003
|
a(str("transmit-lsp"), arg),
|
@@ -14177,7 +14189,7 @@ module Junoser
|
|
14177
14189
|
)
|
14178
14190
|
).as(:oneline)
|
14179
14191
|
)
|
14180
|
-
)
|
14192
|
+
),
|
14181
14193
|
a(str("mtu"), arg),
|
14182
14194
|
str("no-redirects"),
|
14183
14195
|
str("no-neighbor-learn"),
|
@@ -14185,8 +14197,8 @@ module Junoser
|
|
14185
14197
|
str("multicast-only"),
|
14186
14198
|
str("primary"),
|
14187
14199
|
a(str("ipsec-sa"), arg),
|
14188
|
-
str("demux-source")
|
14189
|
-
str("demux-destination")
|
14200
|
+
str("demux-source"),
|
14201
|
+
str("demux-destination"),
|
14190
14202
|
b(str("filter"),
|
14191
14203
|
sc(
|
14192
14204
|
c(
|
@@ -14242,7 +14254,7 @@ module Junoser
|
|
14242
14254
|
sc(
|
14243
14255
|
a(str("ipsec-vpn"), arg)
|
14244
14256
|
)
|
14245
|
-
)
|
14257
|
+
),
|
14246
14258
|
b(a(str("address"), arg),
|
14247
14259
|
sc(
|
14248
14260
|
b(str("destination"),
|
@@ -14286,7 +14298,7 @@ module Junoser
|
|
14286
14298
|
epd_threshold_config
|
14287
14299
|
).as(:oneline)
|
14288
14300
|
)
|
14289
|
-
)
|
14301
|
+
),
|
14290
14302
|
b(a(str("arp"), arg),
|
14291
14303
|
sc(
|
14292
14304
|
b(str("l2-interface"),
|
@@ -14309,7 +14321,7 @@ module Junoser
|
|
14309
14321
|
str("https"),
|
14310
14322
|
str("redirect-to-https")
|
14311
14323
|
)
|
14312
|
-
)
|
14324
|
+
),
|
14313
14325
|
b(str("vrrp-group"),
|
14314
14326
|
vrrp_group
|
14315
14327
|
)
|
@@ -14371,7 +14383,7 @@ module Junoser
|
|
14371
14383
|
)
|
14372
14384
|
).as(:oneline)
|
14373
14385
|
)
|
14374
|
-
)
|
14386
|
+
),
|
14375
14387
|
b(str("accounting"),
|
14376
14388
|
sc(
|
14377
14389
|
b(str("source-class-usage"),
|
@@ -14465,11 +14477,11 @@ module Junoser
|
|
14465
14477
|
str("https"),
|
14466
14478
|
str("redirect-to-https")
|
14467
14479
|
)
|
14468
|
-
)
|
14480
|
+
)
|
14469
14481
|
)
|
14470
14482
|
),
|
14471
|
-
str("demux-source")
|
14472
|
-
str("demux-destination")
|
14483
|
+
str("demux-source"),
|
14484
|
+
str("demux-destination"),
|
14473
14485
|
b(str("unnumbered-address"),
|
14474
14486
|
sc(
|
14475
14487
|
b(str("source"),
|
@@ -14704,7 +14716,7 @@ module Junoser
|
|
14704
14716
|
)
|
14705
14717
|
).as(:oneline)
|
14706
14718
|
)
|
14707
|
-
)
|
14719
|
+
),
|
14708
14720
|
c(
|
14709
14721
|
a(str("isid-list"), arg)
|
14710
14722
|
)
|
@@ -15502,7 +15514,7 @@ module Junoser
|
|
15502
15514
|
)
|
15503
15515
|
)
|
15504
15516
|
)
|
15505
|
-
)
|
15517
|
+
),
|
15506
15518
|
b(a(str("iso-route"), arg),
|
15507
15519
|
sc(
|
15508
15520
|
c(
|
@@ -15625,7 +15637,7 @@ module Junoser
|
|
15625
15637
|
)
|
15626
15638
|
)
|
15627
15639
|
)
|
15628
|
-
)
|
15640
|
+
)
|
15629
15641
|
)
|
15630
15642
|
),
|
15631
15643
|
b(str("martians"),
|
@@ -15668,7 +15680,7 @@ module Junoser
|
|
15668
15680
|
).as(:oneline),
|
15669
15681
|
str("as-path-compare")
|
15670
15682
|
)
|
15671
|
-
)
|
15683
|
+
),
|
15672
15684
|
b(str("label"),
|
15673
15685
|
sc(
|
15674
15686
|
b(str("allocation"),
|
@@ -15678,7 +15690,7 @@ module Junoser
|
|
15678
15690
|
policy_algebra
|
15679
15691
|
)
|
15680
15692
|
)
|
15681
|
-
)
|
15693
|
+
),
|
15682
15694
|
b(str("access"),
|
15683
15695
|
sc(
|
15684
15696
|
b(a(str("route"), arg),
|
@@ -15693,7 +15705,7 @@ module Junoser
|
|
15693
15705
|
a(str("preference"), arg),
|
15694
15706
|
a(str("tag"), arg)
|
15695
15707
|
)
|
15696
|
-
)
|
15708
|
+
)
|
15697
15709
|
)
|
15698
15710
|
),
|
15699
15711
|
b(str("access-internal"),
|
@@ -15707,7 +15719,7 @@ module Junoser
|
|
15707
15719
|
qualified_nh_obj
|
15708
15720
|
)
|
15709
15721
|
)
|
15710
|
-
)
|
15722
|
+
)
|
15711
15723
|
)
|
15712
15724
|
)
|
15713
15725
|
)
|
@@ -15726,7 +15738,7 @@ module Junoser
|
|
15726
15738
|
a(str("preference"), arg),
|
15727
15739
|
a(str("tag"), arg)
|
15728
15740
|
)
|
15729
|
-
)
|
15741
|
+
)
|
15730
15742
|
)
|
15731
15743
|
),
|
15732
15744
|
b(str("access-internal"),
|
@@ -15740,7 +15752,7 @@ module Junoser
|
|
15740
15752
|
qualified_nh_obj
|
15741
15753
|
)
|
15742
15754
|
)
|
15743
|
-
)
|
15755
|
+
)
|
15744
15756
|
)
|
15745
15757
|
),
|
15746
15758
|
b(str("multicast"),
|
@@ -15989,7 +16001,7 @@ module Junoser
|
|
15989
16001
|
sc(
|
15990
16002
|
a(str("default-value"), arg)
|
15991
16003
|
)
|
15992
|
-
)
|
16004
|
+
)
|
15993
16005
|
end
|
15994
16006
|
|
15995
16007
|
rule(:cfm_traceoptions) do
|
@@ -16045,7 +16057,7 @@ module Junoser
|
|
16045
16057
|
str("uid-reference"),
|
16046
16058
|
str("uid")
|
16047
16059
|
)
|
16048
|
-
)
|
16060
|
+
)
|
16049
16061
|
end
|
16050
16062
|
|
16051
16063
|
rule(:juniper_ethernet_options) do
|
@@ -16582,7 +16594,7 @@ module Junoser
|
|
16582
16594
|
).as(:oneline),
|
16583
16595
|
a(str("routing-instance"), arg)
|
16584
16596
|
)
|
16585
|
-
)
|
16597
|
+
),
|
16586
16598
|
a(str("maximum-hop-count"), arg),
|
16587
16599
|
a(str("minimum-wait-time"), arg),
|
16588
16600
|
a(str("client-response-ttl"), arg),
|
@@ -16602,7 +16614,7 @@ module Junoser
|
|
16602
16614
|
).as(:oneline),
|
16603
16615
|
a(str("routing-instance"), arg)
|
16604
16616
|
)
|
16605
|
-
)
|
16617
|
+
),
|
16606
16618
|
a(str("maximum-hop-count"), arg),
|
16607
16619
|
a(str("minimum-wait-time"), arg),
|
16608
16620
|
a(str("client-response-ttl"), arg),
|
@@ -16806,7 +16818,7 @@ module Junoser
|
|
16806
16818
|
)
|
16807
16819
|
)
|
16808
16820
|
),
|
16809
|
-
str("instance")
|
16821
|
+
str("instance")
|
16810
16822
|
)
|
16811
16823
|
)
|
16812
16824
|
)
|
@@ -17499,7 +17511,7 @@ module Junoser
|
|
17499
17511
|
)
|
17500
17512
|
)
|
17501
17513
|
)
|
17502
|
-
)
|
17514
|
+
),
|
17503
17515
|
b(str("ftp"),
|
17504
17516
|
sc(
|
17505
17517
|
str("disable"),
|
@@ -17562,7 +17574,7 @@ module Junoser
|
|
17562
17574
|
)
|
17563
17575
|
)
|
17564
17576
|
)
|
17565
|
-
)
|
17577
|
+
),
|
17566
17578
|
b(str("mgcp"),
|
17567
17579
|
sc(
|
17568
17580
|
str("disable"),
|
@@ -17606,7 +17618,7 @@ module Junoser
|
|
17606
17618
|
)
|
17607
17619
|
)
|
17608
17620
|
)
|
17609
|
-
)
|
17621
|
+
),
|
17610
17622
|
b(str("msrpc"),
|
17611
17623
|
sc(
|
17612
17624
|
str("disable"),
|
@@ -17707,7 +17719,7 @@ module Junoser
|
|
17707
17719
|
)
|
17708
17720
|
)
|
17709
17721
|
)
|
17710
|
-
)
|
17722
|
+
),
|
17711
17723
|
b(str("sip"),
|
17712
17724
|
sc(
|
17713
17725
|
str("disable"),
|
@@ -17759,7 +17771,7 @@ module Junoser
|
|
17759
17771
|
)
|
17760
17772
|
)
|
17761
17773
|
)
|
17762
|
-
)
|
17774
|
+
),
|
17763
17775
|
b(str("sql"),
|
17764
17776
|
sc(
|
17765
17777
|
str("disable"),
|
@@ -18817,7 +18829,7 @@ module Junoser
|
|
18817
18829
|
community_count_type
|
18818
18830
|
)
|
18819
18831
|
)
|
18820
|
-
)
|
18832
|
+
),
|
18821
18833
|
b(str("to"),
|
18822
18834
|
sc(
|
18823
18835
|
a(str("instance"), arg),
|
@@ -18859,7 +18871,7 @@ module Junoser
|
|
18859
18871
|
policy_algebra
|
18860
18872
|
)
|
18861
18873
|
)
|
18862
|
-
)
|
18874
|
+
),
|
18863
18875
|
b(str("then"),
|
18864
18876
|
sc(
|
18865
18877
|
b(str("metric"),
|
@@ -18880,10 +18892,10 @@ module Junoser
|
|
18880
18892
|
).as(:oneline),
|
18881
18893
|
b(str("expression"),
|
18882
18894
|
metric_expression_type
|
18883
|
-
)
|
18895
|
+
)
|
18884
18896
|
)
|
18885
18897
|
)
|
18886
|
-
)
|
18898
|
+
),
|
18887
18899
|
b(str("metric2"),
|
18888
18900
|
sc(
|
18889
18901
|
c(
|
@@ -18892,7 +18904,7 @@ module Junoser
|
|
18892
18904
|
a(str("subtract"), arg)
|
18893
18905
|
)
|
18894
18906
|
)
|
18895
|
-
)
|
18907
|
+
),
|
18896
18908
|
b(str("metric3"),
|
18897
18909
|
sc(
|
18898
18910
|
c(
|
@@ -18901,7 +18913,7 @@ module Junoser
|
|
18901
18913
|
a(str("subtract"), arg)
|
18902
18914
|
)
|
18903
18915
|
)
|
18904
|
-
)
|
18916
|
+
),
|
18905
18917
|
b(str("metric4"),
|
18906
18918
|
sc(
|
18907
18919
|
c(
|
@@ -18910,7 +18922,7 @@ module Junoser
|
|
18910
18922
|
a(str("subtract"), arg)
|
18911
18923
|
)
|
18912
18924
|
)
|
18913
|
-
)
|
18925
|
+
),
|
18914
18926
|
b(str("tag"),
|
18915
18927
|
sc(
|
18916
18928
|
c(
|
@@ -18919,7 +18931,7 @@ module Junoser
|
|
18919
18931
|
a(str("subtract"), arg)
|
18920
18932
|
)
|
18921
18933
|
)
|
18922
|
-
)
|
18934
|
+
),
|
18923
18935
|
b(str("tag2"),
|
18924
18936
|
sc(
|
18925
18937
|
c(
|
@@ -18928,7 +18940,7 @@ module Junoser
|
|
18928
18940
|
a(str("subtract"), arg)
|
18929
18941
|
)
|
18930
18942
|
)
|
18931
|
-
)
|
18943
|
+
),
|
18932
18944
|
b(str("preference"),
|
18933
18945
|
sc(
|
18934
18946
|
c(
|
@@ -18937,7 +18949,7 @@ module Junoser
|
|
18937
18949
|
a(str("subtract"), arg)
|
18938
18950
|
)
|
18939
18951
|
)
|
18940
|
-
)
|
18952
|
+
),
|
18941
18953
|
b(str("preference2"),
|
18942
18954
|
sc(
|
18943
18955
|
c(
|
@@ -18946,7 +18958,7 @@ module Junoser
|
|
18946
18958
|
a(str("subtract"), arg)
|
18947
18959
|
)
|
18948
18960
|
)
|
18949
|
-
)
|
18961
|
+
),
|
18950
18962
|
b(str("color"),
|
18951
18963
|
sc(
|
18952
18964
|
c(
|
@@ -18955,7 +18967,7 @@ module Junoser
|
|
18955
18967
|
a(str("subtract"), arg)
|
18956
18968
|
)
|
18957
18969
|
)
|
18958
|
-
)
|
18970
|
+
),
|
18959
18971
|
b(str("color2"),
|
18960
18972
|
sc(
|
18961
18973
|
c(
|
@@ -18964,7 +18976,7 @@ module Junoser
|
|
18964
18976
|
a(str("subtract"), arg)
|
18965
18977
|
)
|
18966
18978
|
)
|
18967
|
-
)
|
18979
|
+
),
|
18968
18980
|
b(str("local-preference"),
|
18969
18981
|
sc(
|
18970
18982
|
c(
|
@@ -18973,7 +18985,7 @@ module Junoser
|
|
18973
18985
|
a(str("subtract"), arg)
|
18974
18986
|
)
|
18975
18987
|
)
|
18976
|
-
)
|
18988
|
+
),
|
18977
18989
|
a(str("priority"), arg),
|
18978
18990
|
a(str("label-allocation"), arg),
|
18979
18991
|
a(str("origin"), arg),
|
@@ -19028,9 +19040,7 @@ module Junoser
|
|
19028
19040
|
c(
|
19029
19041
|
str("self"),
|
19030
19042
|
str("peer-address"),
|
19031
|
-
|
19032
|
-
ipaddr
|
19033
|
-
),
|
19043
|
+
ipaddr,
|
19034
19044
|
str("reject"),
|
19035
19045
|
str("discard"),
|
19036
19046
|
a(str("next-table"), arg)
|
@@ -19100,7 +19110,7 @@ module Junoser
|
|
19100
19110
|
str("reject")
|
19101
19111
|
)
|
19102
19112
|
)
|
19103
|
-
)
|
19113
|
+
)
|
19104
19114
|
)
|
19105
19115
|
),
|
19106
19116
|
b(str("from"),
|
@@ -19180,7 +19190,7 @@ module Junoser
|
|
19180
19190
|
community_count_type
|
19181
19191
|
)
|
19182
19192
|
)
|
19183
|
-
)
|
19193
|
+
),
|
19184
19194
|
b(str("to"),
|
19185
19195
|
sc(
|
19186
19196
|
a(str("instance"), arg),
|
@@ -19222,7 +19232,7 @@ module Junoser
|
|
19222
19232
|
policy_algebra
|
19223
19233
|
)
|
19224
19234
|
)
|
19225
|
-
)
|
19235
|
+
),
|
19226
19236
|
b(str("then"),
|
19227
19237
|
sc(
|
19228
19238
|
b(str("metric"),
|
@@ -19243,10 +19253,10 @@ module Junoser
|
|
19243
19253
|
).as(:oneline),
|
19244
19254
|
b(str("expression"),
|
19245
19255
|
metric_expression_type
|
19246
|
-
)
|
19256
|
+
)
|
19247
19257
|
)
|
19248
19258
|
)
|
19249
|
-
)
|
19259
|
+
),
|
19250
19260
|
b(str("metric2"),
|
19251
19261
|
sc(
|
19252
19262
|
c(
|
@@ -19255,7 +19265,7 @@ module Junoser
|
|
19255
19265
|
a(str("subtract"), arg)
|
19256
19266
|
)
|
19257
19267
|
)
|
19258
|
-
)
|
19268
|
+
),
|
19259
19269
|
b(str("metric3"),
|
19260
19270
|
sc(
|
19261
19271
|
c(
|
@@ -19264,7 +19274,7 @@ module Junoser
|
|
19264
19274
|
a(str("subtract"), arg)
|
19265
19275
|
)
|
19266
19276
|
)
|
19267
|
-
)
|
19277
|
+
),
|
19268
19278
|
b(str("metric4"),
|
19269
19279
|
sc(
|
19270
19280
|
c(
|
@@ -19273,7 +19283,7 @@ module Junoser
|
|
19273
19283
|
a(str("subtract"), arg)
|
19274
19284
|
)
|
19275
19285
|
)
|
19276
|
-
)
|
19286
|
+
),
|
19277
19287
|
b(str("tag"),
|
19278
19288
|
sc(
|
19279
19289
|
c(
|
@@ -19282,7 +19292,7 @@ module Junoser
|
|
19282
19292
|
a(str("subtract"), arg)
|
19283
19293
|
)
|
19284
19294
|
)
|
19285
|
-
)
|
19295
|
+
),
|
19286
19296
|
b(str("tag2"),
|
19287
19297
|
sc(
|
19288
19298
|
c(
|
@@ -19291,7 +19301,7 @@ module Junoser
|
|
19291
19301
|
a(str("subtract"), arg)
|
19292
19302
|
)
|
19293
19303
|
)
|
19294
|
-
)
|
19304
|
+
),
|
19295
19305
|
b(str("preference"),
|
19296
19306
|
sc(
|
19297
19307
|
c(
|
@@ -19300,7 +19310,7 @@ module Junoser
|
|
19300
19310
|
a(str("subtract"), arg)
|
19301
19311
|
)
|
19302
19312
|
)
|
19303
|
-
)
|
19313
|
+
),
|
19304
19314
|
b(str("preference2"),
|
19305
19315
|
sc(
|
19306
19316
|
c(
|
@@ -19309,7 +19319,7 @@ module Junoser
|
|
19309
19319
|
a(str("subtract"), arg)
|
19310
19320
|
)
|
19311
19321
|
)
|
19312
|
-
)
|
19322
|
+
),
|
19313
19323
|
b(str("color"),
|
19314
19324
|
sc(
|
19315
19325
|
c(
|
@@ -19318,7 +19328,7 @@ module Junoser
|
|
19318
19328
|
a(str("subtract"), arg)
|
19319
19329
|
)
|
19320
19330
|
)
|
19321
|
-
)
|
19331
|
+
),
|
19322
19332
|
b(str("color2"),
|
19323
19333
|
sc(
|
19324
19334
|
c(
|
@@ -19327,7 +19337,7 @@ module Junoser
|
|
19327
19337
|
a(str("subtract"), arg)
|
19328
19338
|
)
|
19329
19339
|
)
|
19330
|
-
)
|
19340
|
+
),
|
19331
19341
|
b(str("local-preference"),
|
19332
19342
|
sc(
|
19333
19343
|
c(
|
@@ -19336,7 +19346,7 @@ module Junoser
|
|
19336
19346
|
a(str("subtract"), arg)
|
19337
19347
|
)
|
19338
19348
|
)
|
19339
|
-
)
|
19349
|
+
),
|
19340
19350
|
a(str("priority"), arg),
|
19341
19351
|
a(str("label-allocation"), arg),
|
19342
19352
|
a(str("origin"), arg),
|
@@ -19391,9 +19401,7 @@ module Junoser
|
|
19391
19401
|
c(
|
19392
19402
|
str("self"),
|
19393
19403
|
str("peer-address"),
|
19394
|
-
|
19395
|
-
ipaddr
|
19396
|
-
),
|
19404
|
+
ipaddr,
|
19397
19405
|
str("reject"),
|
19398
19406
|
str("discard"),
|
19399
19407
|
a(str("next-table"), arg)
|
@@ -19463,7 +19471,7 @@ module Junoser
|
|
19463
19471
|
str("reject")
|
19464
19472
|
)
|
19465
19473
|
)
|
19466
|
-
)
|
19474
|
+
)
|
19467
19475
|
)
|
19468
19476
|
),
|
19469
19477
|
b(a(str("community"), arg),
|
@@ -19471,13 +19479,13 @@ module Junoser
|
|
19471
19479
|
str("invert-match"),
|
19472
19480
|
a(str("members"), arg)
|
19473
19481
|
)
|
19474
|
-
)
|
19482
|
+
),
|
19475
19483
|
b(a(str("as-path"), arg),
|
19476
19484
|
sc(
|
19477
19485
|
quote,
|
19478
19486
|
arg
|
19479
19487
|
)
|
19480
|
-
)
|
19488
|
+
),
|
19481
19489
|
b(a(str("as-path-group"), arg),
|
19482
19490
|
sc(
|
19483
19491
|
b(a(str("as-path"), arg),
|
@@ -19513,7 +19521,7 @@ module Junoser
|
|
19513
19521
|
)
|
19514
19522
|
)
|
19515
19523
|
)
|
19516
|
-
)
|
19524
|
+
),
|
19517
19525
|
b(str("application-maps"),
|
19518
19526
|
application_map_object
|
19519
19527
|
)
|
@@ -19579,10 +19587,10 @@ module Junoser
|
|
19579
19587
|
).as(:oneline),
|
19580
19588
|
b(str("expression"),
|
19581
19589
|
metric_expression_type
|
19582
|
-
)
|
19590
|
+
)
|
19583
19591
|
)
|
19584
19592
|
)
|
19585
|
-
)
|
19593
|
+
),
|
19586
19594
|
b(str("metric2"),
|
19587
19595
|
sc(
|
19588
19596
|
c(
|
@@ -19591,7 +19599,7 @@ module Junoser
|
|
19591
19599
|
a(str("subtract"), arg)
|
19592
19600
|
)
|
19593
19601
|
)
|
19594
|
-
)
|
19602
|
+
),
|
19595
19603
|
b(str("metric3"),
|
19596
19604
|
sc(
|
19597
19605
|
c(
|
@@ -19600,7 +19608,7 @@ module Junoser
|
|
19600
19608
|
a(str("subtract"), arg)
|
19601
19609
|
)
|
19602
19610
|
)
|
19603
|
-
)
|
19611
|
+
),
|
19604
19612
|
b(str("metric4"),
|
19605
19613
|
sc(
|
19606
19614
|
c(
|
@@ -19609,7 +19617,7 @@ module Junoser
|
|
19609
19617
|
a(str("subtract"), arg)
|
19610
19618
|
)
|
19611
19619
|
)
|
19612
|
-
)
|
19620
|
+
),
|
19613
19621
|
b(str("tag"),
|
19614
19622
|
sc(
|
19615
19623
|
c(
|
@@ -19618,7 +19626,7 @@ module Junoser
|
|
19618
19626
|
a(str("subtract"), arg)
|
19619
19627
|
)
|
19620
19628
|
)
|
19621
|
-
)
|
19629
|
+
),
|
19622
19630
|
b(str("tag2"),
|
19623
19631
|
sc(
|
19624
19632
|
c(
|
@@ -19627,7 +19635,7 @@ module Junoser
|
|
19627
19635
|
a(str("subtract"), arg)
|
19628
19636
|
)
|
19629
19637
|
)
|
19630
|
-
)
|
19638
|
+
),
|
19631
19639
|
b(str("preference"),
|
19632
19640
|
sc(
|
19633
19641
|
c(
|
@@ -19636,7 +19644,7 @@ module Junoser
|
|
19636
19644
|
a(str("subtract"), arg)
|
19637
19645
|
)
|
19638
19646
|
)
|
19639
|
-
)
|
19647
|
+
),
|
19640
19648
|
b(str("preference2"),
|
19641
19649
|
sc(
|
19642
19650
|
c(
|
@@ -19645,7 +19653,7 @@ module Junoser
|
|
19645
19653
|
a(str("subtract"), arg)
|
19646
19654
|
)
|
19647
19655
|
)
|
19648
|
-
)
|
19656
|
+
),
|
19649
19657
|
b(str("color"),
|
19650
19658
|
sc(
|
19651
19659
|
c(
|
@@ -19654,7 +19662,7 @@ module Junoser
|
|
19654
19662
|
a(str("subtract"), arg)
|
19655
19663
|
)
|
19656
19664
|
)
|
19657
|
-
)
|
19665
|
+
),
|
19658
19666
|
b(str("color2"),
|
19659
19667
|
sc(
|
19660
19668
|
c(
|
@@ -19663,7 +19671,7 @@ module Junoser
|
|
19663
19671
|
a(str("subtract"), arg)
|
19664
19672
|
)
|
19665
19673
|
)
|
19666
|
-
)
|
19674
|
+
),
|
19667
19675
|
b(str("local-preference"),
|
19668
19676
|
sc(
|
19669
19677
|
c(
|
@@ -19672,7 +19680,7 @@ module Junoser
|
|
19672
19680
|
a(str("subtract"), arg)
|
19673
19681
|
)
|
19674
19682
|
)
|
19675
|
-
)
|
19683
|
+
),
|
19676
19684
|
a(str("priority"), arg),
|
19677
19685
|
a(str("label-allocation"), arg),
|
19678
19686
|
a(str("origin"), arg),
|
@@ -19727,9 +19735,7 @@ module Junoser
|
|
19727
19735
|
c(
|
19728
19736
|
str("self"),
|
19729
19737
|
str("peer-address"),
|
19730
|
-
|
19731
|
-
ipaddr
|
19732
|
-
),
|
19738
|
+
ipaddr,
|
19733
19739
|
str("reject"),
|
19734
19740
|
str("discard"),
|
19735
19741
|
a(str("next-table"), arg)
|
@@ -19799,7 +19805,7 @@ module Junoser
|
|
19799
19805
|
str("reject")
|
19800
19806
|
)
|
19801
19807
|
)
|
19802
|
-
)
|
19808
|
+
)
|
19803
19809
|
end
|
19804
19810
|
|
19805
19811
|
rule(:control_prefix_list_type) do
|
@@ -19851,10 +19857,10 @@ module Junoser
|
|
19851
19857
|
).as(:oneline),
|
19852
19858
|
b(str("expression"),
|
19853
19859
|
metric_expression_type
|
19854
|
-
)
|
19860
|
+
)
|
19855
19861
|
)
|
19856
19862
|
)
|
19857
|
-
)
|
19863
|
+
),
|
19858
19864
|
b(str("metric2"),
|
19859
19865
|
sc(
|
19860
19866
|
c(
|
@@ -19863,7 +19869,7 @@ module Junoser
|
|
19863
19869
|
a(str("subtract"), arg)
|
19864
19870
|
)
|
19865
19871
|
)
|
19866
|
-
)
|
19872
|
+
),
|
19867
19873
|
b(str("metric3"),
|
19868
19874
|
sc(
|
19869
19875
|
c(
|
@@ -19872,7 +19878,7 @@ module Junoser
|
|
19872
19878
|
a(str("subtract"), arg)
|
19873
19879
|
)
|
19874
19880
|
)
|
19875
|
-
)
|
19881
|
+
),
|
19876
19882
|
b(str("metric4"),
|
19877
19883
|
sc(
|
19878
19884
|
c(
|
@@ -19881,7 +19887,7 @@ module Junoser
|
|
19881
19887
|
a(str("subtract"), arg)
|
19882
19888
|
)
|
19883
19889
|
)
|
19884
|
-
)
|
19890
|
+
),
|
19885
19891
|
b(str("tag"),
|
19886
19892
|
sc(
|
19887
19893
|
c(
|
@@ -19890,7 +19896,7 @@ module Junoser
|
|
19890
19896
|
a(str("subtract"), arg)
|
19891
19897
|
)
|
19892
19898
|
)
|
19893
|
-
)
|
19899
|
+
),
|
19894
19900
|
b(str("tag2"),
|
19895
19901
|
sc(
|
19896
19902
|
c(
|
@@ -19899,7 +19905,7 @@ module Junoser
|
|
19899
19905
|
a(str("subtract"), arg)
|
19900
19906
|
)
|
19901
19907
|
)
|
19902
|
-
)
|
19908
|
+
),
|
19903
19909
|
b(str("preference"),
|
19904
19910
|
sc(
|
19905
19911
|
c(
|
@@ -19908,7 +19914,7 @@ module Junoser
|
|
19908
19914
|
a(str("subtract"), arg)
|
19909
19915
|
)
|
19910
19916
|
)
|
19911
|
-
)
|
19917
|
+
),
|
19912
19918
|
b(str("preference2"),
|
19913
19919
|
sc(
|
19914
19920
|
c(
|
@@ -19917,7 +19923,7 @@ module Junoser
|
|
19917
19923
|
a(str("subtract"), arg)
|
19918
19924
|
)
|
19919
19925
|
)
|
19920
|
-
)
|
19926
|
+
),
|
19921
19927
|
b(str("color"),
|
19922
19928
|
sc(
|
19923
19929
|
c(
|
@@ -19926,7 +19932,7 @@ module Junoser
|
|
19926
19932
|
a(str("subtract"), arg)
|
19927
19933
|
)
|
19928
19934
|
)
|
19929
|
-
)
|
19935
|
+
),
|
19930
19936
|
b(str("color2"),
|
19931
19937
|
sc(
|
19932
19938
|
c(
|
@@ -19935,7 +19941,7 @@ module Junoser
|
|
19935
19941
|
a(str("subtract"), arg)
|
19936
19942
|
)
|
19937
19943
|
)
|
19938
|
-
)
|
19944
|
+
),
|
19939
19945
|
b(str("local-preference"),
|
19940
19946
|
sc(
|
19941
19947
|
c(
|
@@ -19944,7 +19950,7 @@ module Junoser
|
|
19944
19950
|
a(str("subtract"), arg)
|
19945
19951
|
)
|
19946
19952
|
)
|
19947
|
-
)
|
19953
|
+
),
|
19948
19954
|
a(str("priority"), arg),
|
19949
19955
|
a(str("label-allocation"), arg),
|
19950
19956
|
a(str("origin"), arg),
|
@@ -19999,9 +20005,7 @@ module Junoser
|
|
19999
20005
|
c(
|
20000
20006
|
str("self"),
|
20001
20007
|
str("peer-address"),
|
20002
|
-
|
20003
|
-
ipaddr
|
20004
|
-
),
|
20008
|
+
ipaddr,
|
20005
20009
|
str("reject"),
|
20006
20010
|
str("discard"),
|
20007
20011
|
a(str("next-table"), arg)
|
@@ -20071,7 +20075,7 @@ module Junoser
|
|
20071
20075
|
str("reject")
|
20072
20076
|
)
|
20073
20077
|
)
|
20074
|
-
)
|
20078
|
+
)
|
20075
20079
|
end
|
20076
20080
|
|
20077
20081
|
rule(:control_source_address_filter_type) do
|
@@ -20116,10 +20120,10 @@ module Junoser
|
|
20116
20120
|
).as(:oneline),
|
20117
20121
|
b(str("expression"),
|
20118
20122
|
metric_expression_type
|
20119
|
-
)
|
20123
|
+
)
|
20120
20124
|
)
|
20121
20125
|
)
|
20122
|
-
)
|
20126
|
+
),
|
20123
20127
|
b(str("metric2"),
|
20124
20128
|
sc(
|
20125
20129
|
c(
|
@@ -20128,7 +20132,7 @@ module Junoser
|
|
20128
20132
|
a(str("subtract"), arg)
|
20129
20133
|
)
|
20130
20134
|
)
|
20131
|
-
)
|
20135
|
+
),
|
20132
20136
|
b(str("metric3"),
|
20133
20137
|
sc(
|
20134
20138
|
c(
|
@@ -20137,7 +20141,7 @@ module Junoser
|
|
20137
20141
|
a(str("subtract"), arg)
|
20138
20142
|
)
|
20139
20143
|
)
|
20140
|
-
)
|
20144
|
+
),
|
20141
20145
|
b(str("metric4"),
|
20142
20146
|
sc(
|
20143
20147
|
c(
|
@@ -20146,7 +20150,7 @@ module Junoser
|
|
20146
20150
|
a(str("subtract"), arg)
|
20147
20151
|
)
|
20148
20152
|
)
|
20149
|
-
)
|
20153
|
+
),
|
20150
20154
|
b(str("tag"),
|
20151
20155
|
sc(
|
20152
20156
|
c(
|
@@ -20155,7 +20159,7 @@ module Junoser
|
|
20155
20159
|
a(str("subtract"), arg)
|
20156
20160
|
)
|
20157
20161
|
)
|
20158
|
-
)
|
20162
|
+
),
|
20159
20163
|
b(str("tag2"),
|
20160
20164
|
sc(
|
20161
20165
|
c(
|
@@ -20164,7 +20168,7 @@ module Junoser
|
|
20164
20168
|
a(str("subtract"), arg)
|
20165
20169
|
)
|
20166
20170
|
)
|
20167
|
-
)
|
20171
|
+
),
|
20168
20172
|
b(str("preference"),
|
20169
20173
|
sc(
|
20170
20174
|
c(
|
@@ -20173,7 +20177,7 @@ module Junoser
|
|
20173
20177
|
a(str("subtract"), arg)
|
20174
20178
|
)
|
20175
20179
|
)
|
20176
|
-
)
|
20180
|
+
),
|
20177
20181
|
b(str("preference2"),
|
20178
20182
|
sc(
|
20179
20183
|
c(
|
@@ -20182,7 +20186,7 @@ module Junoser
|
|
20182
20186
|
a(str("subtract"), arg)
|
20183
20187
|
)
|
20184
20188
|
)
|
20185
|
-
)
|
20189
|
+
),
|
20186
20190
|
b(str("color"),
|
20187
20191
|
sc(
|
20188
20192
|
c(
|
@@ -20191,7 +20195,7 @@ module Junoser
|
|
20191
20195
|
a(str("subtract"), arg)
|
20192
20196
|
)
|
20193
20197
|
)
|
20194
|
-
)
|
20198
|
+
),
|
20195
20199
|
b(str("color2"),
|
20196
20200
|
sc(
|
20197
20201
|
c(
|
@@ -20200,7 +20204,7 @@ module Junoser
|
|
20200
20204
|
a(str("subtract"), arg)
|
20201
20205
|
)
|
20202
20206
|
)
|
20203
|
-
)
|
20207
|
+
),
|
20204
20208
|
b(str("local-preference"),
|
20205
20209
|
sc(
|
20206
20210
|
c(
|
@@ -20209,7 +20213,7 @@ module Junoser
|
|
20209
20213
|
a(str("subtract"), arg)
|
20210
20214
|
)
|
20211
20215
|
)
|
20212
|
-
)
|
20216
|
+
),
|
20213
20217
|
a(str("priority"), arg),
|
20214
20218
|
a(str("label-allocation"), arg),
|
20215
20219
|
a(str("origin"), arg),
|
@@ -20264,9 +20268,7 @@ module Junoser
|
|
20264
20268
|
c(
|
20265
20269
|
str("self"),
|
20266
20270
|
str("peer-address"),
|
20267
|
-
|
20268
|
-
ipaddr
|
20269
|
-
),
|
20271
|
+
ipaddr,
|
20270
20272
|
str("reject"),
|
20271
20273
|
str("discard"),
|
20272
20274
|
a(str("next-table"), arg)
|
@@ -20336,7 +20338,7 @@ module Junoser
|
|
20336
20338
|
str("reject")
|
20337
20339
|
)
|
20338
20340
|
)
|
20339
|
-
)
|
20341
|
+
)
|
20340
20342
|
end
|
20341
20343
|
|
20342
20344
|
rule(:juniper_port_mirror_options) do
|
@@ -20383,7 +20385,7 @@ module Junoser
|
|
20383
20385
|
)
|
20384
20386
|
)
|
20385
20387
|
),
|
20386
|
-
str("instance")
|
20388
|
+
str("instance")
|
20387
20389
|
)
|
20388
20390
|
end
|
20389
20391
|
|
@@ -20681,7 +20683,7 @@ module Junoser
|
|
20681
20683
|
a(str("maximum-helper-restart-time"), arg),
|
20682
20684
|
a(str("maximum-helper-recovery-time"), arg)
|
20683
20685
|
)
|
20684
|
-
)
|
20686
|
+
),
|
20685
20687
|
b(str("tunnel-services"),
|
20686
20688
|
sc(
|
20687
20689
|
b(str("devices"),
|
@@ -20703,12 +20705,12 @@ module Junoser
|
|
20703
20705
|
sc(
|
20704
20706
|
a(str("optimize-timer"), arg)
|
20705
20707
|
)
|
20706
|
-
)
|
20708
|
+
),
|
20707
20709
|
b(str("load-balance"),
|
20708
20710
|
sc(
|
20709
20711
|
str("bandwidth")
|
20710
20712
|
)
|
20711
|
-
)
|
20713
|
+
),
|
20712
20714
|
b(str("traceoptions"),
|
20713
20715
|
sc(
|
20714
20716
|
b(str("file"),
|
@@ -20739,9 +20741,9 @@ module Junoser
|
|
20739
20741
|
sc(
|
20740
20742
|
a(str("cleanup-timer"), arg)
|
20741
20743
|
)
|
20742
|
-
)
|
20744
|
+
)
|
20743
20745
|
)
|
20744
|
-
)
|
20746
|
+
),
|
20745
20747
|
b(a(str("interface"), arg),
|
20746
20748
|
sc(
|
20747
20749
|
c(
|
@@ -20757,7 +20759,7 @@ module Junoser
|
|
20757
20759
|
a(str("hello-interval"), arg),
|
20758
20760
|
b(str("subscription"),
|
20759
20761
|
subscription_type
|
20760
|
-
)
|
20762
|
+
),
|
20761
20763
|
a(str("bandwidth"), arg),
|
20762
20764
|
a(str("update-threshold"), arg),
|
20763
20765
|
b(str("link-protection"),
|
@@ -20767,7 +20769,7 @@ module Junoser
|
|
20767
20769
|
),
|
20768
20770
|
b(str("bandwidth"),
|
20769
20771
|
bandwidth_type
|
20770
|
-
)
|
20772
|
+
),
|
20771
20773
|
a(str("max-bypasses"), arg),
|
20772
20774
|
a(str("subscription"), arg),
|
20773
20775
|
str("no-node-protection"),
|
@@ -20792,7 +20794,7 @@ module Junoser
|
|
20792
20794
|
).as(:oneline),
|
20793
20795
|
b(str("admin-group"),
|
20794
20796
|
admin_group_include_exclude
|
20795
|
-
)
|
20797
|
+
),
|
20796
20798
|
b(a(str("bypass"), arg),
|
20797
20799
|
sc(
|
20798
20800
|
b(str("to"),
|
@@ -20800,7 +20802,7 @@ module Junoser
|
|
20800
20802
|
),
|
20801
20803
|
b(str("bandwidth"),
|
20802
20804
|
bandwidth_type
|
20803
|
-
)
|
20805
|
+
),
|
20804
20806
|
a(str("description"), quote | arg),
|
20805
20807
|
b(str("priority"),
|
20806
20808
|
sc(
|
@@ -20822,7 +20824,7 @@ module Junoser
|
|
20822
20824
|
).as(:oneline),
|
20823
20825
|
b(str("admin-group"),
|
20824
20826
|
admin_group_include_exclude
|
20825
|
-
)
|
20827
|
+
)
|
20826
20828
|
)
|
20827
20829
|
)
|
20828
20830
|
)
|
@@ -20851,7 +20853,7 @@ module Junoser
|
|
20851
20853
|
),
|
20852
20854
|
b(str("match-criteria"),
|
20853
20855
|
lsp_set_match_type
|
20854
|
-
)
|
20856
|
+
),
|
20855
20857
|
b(str("traceoptions"),
|
20856
20858
|
sc(
|
20857
20859
|
b(str("file"),
|
@@ -20883,7 +20885,7 @@ module Junoser
|
|
20883
20885
|
sc(
|
20884
20886
|
str("mtu-signaling")
|
20885
20887
|
)
|
20886
|
-
)
|
20888
|
+
)
|
20887
20889
|
)
|
20888
20890
|
),
|
20889
20891
|
b(str("diffserv-te"),
|
@@ -20929,7 +20931,7 @@ module Junoser
|
|
20929
20931
|
str("loss-priority-low")
|
20930
20932
|
)
|
20931
20933
|
)
|
20932
|
-
)
|
20934
|
+
)
|
20933
20935
|
)
|
20934
20936
|
),
|
20935
20937
|
b(str("statistics"),
|
@@ -20972,7 +20974,7 @@ module Junoser
|
|
20972
20974
|
sc(
|
20973
20975
|
a(str("group-value"), arg)
|
20974
20976
|
)
|
20975
|
-
)
|
20977
|
+
),
|
20976
20978
|
a(str("advertisement-hold-time"), arg),
|
20977
20979
|
a(str("rsvp-error-hold-time"), arg),
|
20978
20980
|
str("optimize-aggressive"),
|
@@ -20988,7 +20990,7 @@ module Junoser
|
|
20988
20990
|
str("mib-mpls-show-p2mp"),
|
20989
20991
|
b(str("bandwidth"),
|
20990
20992
|
bandwidth_type
|
20991
|
-
)
|
20993
|
+
),
|
20992
20994
|
a(str("class-of-service"), arg),
|
20993
20995
|
str("no-decrement-ttl"),
|
20994
20996
|
a(str("hop-limit"), arg),
|
@@ -21008,13 +21010,13 @@ module Junoser
|
|
21008
21010
|
str("exclude-srlg"),
|
21009
21011
|
b(str("admin-group"),
|
21010
21012
|
admin_group_include_exclude
|
21011
|
-
)
|
21013
|
+
),
|
21012
21014
|
b(str("admin-group-extended"),
|
21013
21015
|
admin_group_include_exclude
|
21014
|
-
)
|
21016
|
+
),
|
21015
21017
|
b(str("oam"),
|
21016
21018
|
periodic_oam
|
21017
|
-
)
|
21019
|
+
),
|
21018
21020
|
b(a(str("label-switched-path"), arg),
|
21019
21021
|
sc(
|
21020
21022
|
c(
|
@@ -21061,7 +21063,7 @@ module Junoser
|
|
21061
21063
|
a(str("optimize-hold-dead-delay"), arg),
|
21062
21064
|
b(str("bandwidth"),
|
21063
21065
|
bandwidth_type
|
21064
|
-
)
|
21066
|
+
),
|
21065
21067
|
a(str("class-of-service"), arg),
|
21066
21068
|
str("no-decrement-ttl"),
|
21067
21069
|
a(str("hop-limit"), arg),
|
@@ -21081,13 +21083,13 @@ module Junoser
|
|
21081
21083
|
str("exclude-srlg"),
|
21082
21084
|
b(str("admin-group"),
|
21083
21085
|
admin_group_include_exclude
|
21084
|
-
)
|
21086
|
+
),
|
21085
21087
|
b(str("admin-group-extended"),
|
21086
21088
|
admin_group_include_exclude
|
21087
|
-
)
|
21089
|
+
),
|
21088
21090
|
b(str("oam"),
|
21089
21091
|
periodic_oam
|
21090
|
-
)
|
21092
|
+
),
|
21091
21093
|
c(
|
21092
21094
|
str("random"),
|
21093
21095
|
str("least-fill"),
|
@@ -21148,7 +21150,7 @@ module Junoser
|
|
21148
21150
|
sc(
|
21149
21151
|
b(str("bandwidth"),
|
21150
21152
|
bandwidth_type
|
21151
|
-
)
|
21153
|
+
),
|
21152
21154
|
a(str("class-of-service"), arg),
|
21153
21155
|
str("no-decrement-ttl"),
|
21154
21156
|
a(str("hop-limit"), arg),
|
@@ -21168,13 +21170,13 @@ module Junoser
|
|
21168
21170
|
str("exclude-srlg"),
|
21169
21171
|
b(str("admin-group"),
|
21170
21172
|
admin_group_include_exclude
|
21171
|
-
)
|
21173
|
+
),
|
21172
21174
|
b(str("admin-group-extended"),
|
21173
21175
|
admin_group_include_exclude
|
21174
|
-
)
|
21176
|
+
),
|
21175
21177
|
b(str("oam"),
|
21176
21178
|
periodic_oam
|
21177
|
-
)
|
21179
|
+
),
|
21178
21180
|
str("adaptive"),
|
21179
21181
|
a(str("select"), arg)
|
21180
21182
|
)
|
@@ -21183,7 +21185,7 @@ module Junoser
|
|
21183
21185
|
sc(
|
21184
21186
|
b(str("bandwidth"),
|
21185
21187
|
bandwidth_type
|
21186
|
-
)
|
21188
|
+
),
|
21187
21189
|
a(str("class-of-service"), arg),
|
21188
21190
|
str("no-decrement-ttl"),
|
21189
21191
|
a(str("hop-limit"), arg),
|
@@ -21203,13 +21205,13 @@ module Junoser
|
|
21203
21205
|
str("exclude-srlg"),
|
21204
21206
|
b(str("admin-group"),
|
21205
21207
|
admin_group_include_exclude
|
21206
|
-
)
|
21208
|
+
),
|
21207
21209
|
b(str("admin-group-extended"),
|
21208
21210
|
admin_group_include_exclude
|
21209
|
-
)
|
21211
|
+
),
|
21210
21212
|
b(str("oam"),
|
21211
21213
|
periodic_oam
|
21212
|
-
)
|
21214
|
+
),
|
21213
21215
|
str("adaptive"),
|
21214
21216
|
a(str("select"), arg)
|
21215
21217
|
)
|
@@ -21463,10 +21465,10 @@ module Junoser
|
|
21463
21465
|
str("no-install"),
|
21464
21466
|
str("downstream-paths-only")
|
21465
21467
|
)
|
21466
|
-
)
|
21468
|
+
),
|
21467
21469
|
a(str("prefix-export-limit"), arg)
|
21468
21470
|
)
|
21469
|
-
)
|
21471
|
+
),
|
21470
21472
|
b(str("spf-options"),
|
21471
21473
|
sc(
|
21472
21474
|
a(str("delay"), arg),
|
@@ -21481,14 +21483,14 @@ module Junoser
|
|
21481
21483
|
str("no-install"),
|
21482
21484
|
str("downstream-paths-only")
|
21483
21485
|
)
|
21484
|
-
)
|
21486
|
+
),
|
21485
21487
|
a(str("prefix-export-limit"), arg),
|
21486
21488
|
a(str("rib-group"), arg),
|
21487
21489
|
b(str("overload"),
|
21488
21490
|
sc(
|
21489
21491
|
a(str("timeout"), arg)
|
21490
21492
|
)
|
21491
|
-
)
|
21493
|
+
),
|
21492
21494
|
b(str("database-protection"),
|
21493
21495
|
sc(
|
21494
21496
|
a(str("maximum-lsa"), arg),
|
@@ -21498,7 +21500,7 @@ module Junoser
|
|
21498
21500
|
a(str("ignore-time"), arg),
|
21499
21501
|
a(str("reset-time"), arg)
|
21500
21502
|
)
|
21501
|
-
)
|
21503
|
+
),
|
21502
21504
|
b(str("graceful-restart"),
|
21503
21505
|
sc(
|
21504
21506
|
c(
|
@@ -21517,7 +21519,7 @@ module Junoser
|
|
21517
21519
|
),
|
21518
21520
|
str("no-strict-lsa-checking")
|
21519
21521
|
)
|
21520
|
-
)
|
21522
|
+
),
|
21521
21523
|
b(str("traffic-engineering"),
|
21522
21524
|
sc(
|
21523
21525
|
str("no-topology"),
|
@@ -21527,11 +21529,11 @@ module Junoser
|
|
21527
21529
|
sc(
|
21528
21530
|
str("lsp-metric-into-summary")
|
21529
21531
|
)
|
21530
|
-
)
|
21532
|
+
),
|
21531
21533
|
str("advertise-unnumbered-interfaces"),
|
21532
21534
|
str("credibility-protocol-preference")
|
21533
21535
|
)
|
21534
|
-
)
|
21536
|
+
),
|
21535
21537
|
a(str("route-type-community"), arg),
|
21536
21538
|
b(str("domain-id"),
|
21537
21539
|
sc(
|
@@ -21564,7 +21566,7 @@ module Junoser
|
|
21564
21566
|
ipaddr
|
21565
21567
|
)
|
21566
21568
|
)
|
21567
|
-
)
|
21569
|
+
),
|
21568
21570
|
b(a(str("area"), arg),
|
21569
21571
|
sc(
|
21570
21572
|
c(
|
@@ -21583,7 +21585,7 @@ module Junoser
|
|
21583
21585
|
a(str("metric-type"), arg),
|
21584
21586
|
str("type-7")
|
21585
21587
|
)
|
21586
|
-
)
|
21588
|
+
),
|
21587
21589
|
str("summaries"),
|
21588
21590
|
str("no-summaries"),
|
21589
21591
|
b(a(str("area-range"), arg),
|
@@ -21595,11 +21597,11 @@ module Junoser
|
|
21595
21597
|
a(str("metric"), arg),
|
21596
21598
|
a(str("metric-type"), arg)
|
21597
21599
|
)
|
21598
|
-
)
|
21600
|
+
)
|
21599
21601
|
)
|
21600
|
-
)
|
21602
|
+
)
|
21601
21603
|
)
|
21602
|
-
)
|
21604
|
+
)
|
21603
21605
|
),
|
21604
21606
|
b(a(str("area-range"), arg),
|
21605
21607
|
sc(
|
@@ -21607,7 +21609,7 @@ module Junoser
|
|
21607
21609
|
str("exact"),
|
21608
21610
|
a(str("override-metric"), arg)
|
21609
21611
|
)
|
21610
|
-
)
|
21612
|
+
),
|
21611
21613
|
b(str("network-summary-export"),
|
21612
21614
|
policy_algebra
|
21613
21615
|
),
|
@@ -21659,7 +21661,7 @@ module Junoser
|
|
21659
21661
|
)
|
21660
21662
|
)
|
21661
21663
|
)
|
21662
|
-
)
|
21664
|
+
)
|
21663
21665
|
)
|
21664
21666
|
)
|
21665
21667
|
),
|
@@ -21683,9 +21685,9 @@ module Junoser
|
|
21683
21685
|
)
|
21684
21686
|
)
|
21685
21687
|
)
|
21686
|
-
)
|
21688
|
+
)
|
21687
21689
|
)
|
21688
|
-
)
|
21690
|
+
),
|
21689
21691
|
b(a(str("interface"), arg),
|
21690
21692
|
sc(
|
21691
21693
|
c(
|
@@ -21752,7 +21754,7 @@ module Junoser
|
|
21752
21754
|
)
|
21753
21755
|
)
|
21754
21756
|
)
|
21755
|
-
)
|
21757
|
+
),
|
21756
21758
|
b(str("bfd-liveness-detection"),
|
21757
21759
|
sc(
|
21758
21760
|
a(str("version"), arg),
|
@@ -21815,7 +21817,7 @@ module Junoser
|
|
21815
21817
|
)
|
21816
21818
|
)
|
21817
21819
|
)
|
21818
|
-
)
|
21820
|
+
)
|
21819
21821
|
)
|
21820
21822
|
),
|
21821
21823
|
b(a(str("peer-interface"), arg),
|
@@ -21879,10 +21881,10 @@ module Junoser
|
|
21879
21881
|
str("no-install"),
|
21880
21882
|
str("downstream-paths-only")
|
21881
21883
|
)
|
21882
|
-
)
|
21884
|
+
),
|
21883
21885
|
a(str("prefix-export-limit"), arg)
|
21884
21886
|
)
|
21885
|
-
)
|
21887
|
+
),
|
21886
21888
|
b(str("spf-options"),
|
21887
21889
|
sc(
|
21888
21890
|
a(str("delay"), arg),
|
@@ -21897,14 +21899,14 @@ module Junoser
|
|
21897
21899
|
str("no-install"),
|
21898
21900
|
str("downstream-paths-only")
|
21899
21901
|
)
|
21900
|
-
)
|
21902
|
+
),
|
21901
21903
|
a(str("prefix-export-limit"), arg),
|
21902
21904
|
a(str("rib-group"), arg),
|
21903
21905
|
b(str("overload"),
|
21904
21906
|
sc(
|
21905
21907
|
a(str("timeout"), arg)
|
21906
21908
|
)
|
21907
|
-
)
|
21909
|
+
),
|
21908
21910
|
b(str("database-protection"),
|
21909
21911
|
sc(
|
21910
21912
|
a(str("maximum-lsa"), arg),
|
@@ -21914,7 +21916,7 @@ module Junoser
|
|
21914
21916
|
a(str("ignore-time"), arg),
|
21915
21917
|
a(str("reset-time"), arg)
|
21916
21918
|
)
|
21917
|
-
)
|
21919
|
+
),
|
21918
21920
|
b(str("graceful-restart"),
|
21919
21921
|
sc(
|
21920
21922
|
c(
|
@@ -21933,7 +21935,7 @@ module Junoser
|
|
21933
21935
|
),
|
21934
21936
|
str("no-strict-lsa-checking")
|
21935
21937
|
)
|
21936
|
-
)
|
21938
|
+
),
|
21937
21939
|
b(str("traffic-engineering"),
|
21938
21940
|
sc(
|
21939
21941
|
str("no-topology"),
|
@@ -21943,11 +21945,11 @@ module Junoser
|
|
21943
21945
|
sc(
|
21944
21946
|
str("lsp-metric-into-summary")
|
21945
21947
|
)
|
21946
|
-
)
|
21948
|
+
),
|
21947
21949
|
str("advertise-unnumbered-interfaces"),
|
21948
21950
|
str("credibility-protocol-preference")
|
21949
21951
|
)
|
21950
|
-
)
|
21952
|
+
),
|
21951
21953
|
a(str("route-type-community"), arg),
|
21952
21954
|
b(str("domain-id"),
|
21953
21955
|
sc(
|
@@ -21980,7 +21982,7 @@ module Junoser
|
|
21980
21982
|
ipaddr
|
21981
21983
|
)
|
21982
21984
|
)
|
21983
|
-
)
|
21985
|
+
),
|
21984
21986
|
b(a(str("area"), arg),
|
21985
21987
|
sc(
|
21986
21988
|
c(
|
@@ -21999,7 +22001,7 @@ module Junoser
|
|
21999
22001
|
a(str("metric-type"), arg),
|
22000
22002
|
str("type-7")
|
22001
22003
|
)
|
22002
|
-
)
|
22004
|
+
),
|
22003
22005
|
str("summaries"),
|
22004
22006
|
str("no-summaries"),
|
22005
22007
|
b(a(str("area-range"), arg),
|
@@ -22011,11 +22013,11 @@ module Junoser
|
|
22011
22013
|
a(str("metric"), arg),
|
22012
22014
|
a(str("metric-type"), arg)
|
22013
22015
|
)
|
22014
|
-
)
|
22016
|
+
)
|
22015
22017
|
)
|
22016
|
-
)
|
22018
|
+
)
|
22017
22019
|
)
|
22018
|
-
)
|
22020
|
+
)
|
22019
22021
|
),
|
22020
22022
|
b(a(str("area-range"), arg),
|
22021
22023
|
sc(
|
@@ -22023,7 +22025,7 @@ module Junoser
|
|
22023
22025
|
str("exact"),
|
22024
22026
|
a(str("override-metric"), arg)
|
22025
22027
|
)
|
22026
|
-
)
|
22028
|
+
),
|
22027
22029
|
b(str("network-summary-export"),
|
22028
22030
|
policy_algebra
|
22029
22031
|
),
|
@@ -22075,7 +22077,7 @@ module Junoser
|
|
22075
22077
|
)
|
22076
22078
|
)
|
22077
22079
|
)
|
22078
|
-
)
|
22080
|
+
)
|
22079
22081
|
)
|
22080
22082
|
)
|
22081
22083
|
),
|
@@ -22099,9 +22101,9 @@ module Junoser
|
|
22099
22101
|
)
|
22100
22102
|
)
|
22101
22103
|
)
|
22102
|
-
)
|
22104
|
+
)
|
22103
22105
|
)
|
22104
|
-
)
|
22106
|
+
),
|
22105
22107
|
b(a(str("interface"), arg),
|
22106
22108
|
sc(
|
22107
22109
|
c(
|
@@ -22168,7 +22170,7 @@ module Junoser
|
|
22168
22170
|
)
|
22169
22171
|
)
|
22170
22172
|
)
|
22171
|
-
)
|
22173
|
+
),
|
22172
22174
|
b(str("bfd-liveness-detection"),
|
22173
22175
|
sc(
|
22174
22176
|
a(str("version"), arg),
|
@@ -22231,7 +22233,7 @@ module Junoser
|
|
22231
22233
|
)
|
22232
22234
|
)
|
22233
22235
|
)
|
22234
|
-
)
|
22236
|
+
)
|
22235
22237
|
)
|
22236
22238
|
),
|
22237
22239
|
b(a(str("peer-interface"), arg),
|
@@ -22384,7 +22386,7 @@ module Junoser
|
|
22384
22386
|
str("no-revert"),
|
22385
22387
|
b(str("bandwidth"),
|
22386
22388
|
bandwidth_type
|
22387
|
-
)
|
22389
|
+
),
|
22388
22390
|
str("pseudowire-status-tlv"),
|
22389
22391
|
a(str("switchover-delay"), arg),
|
22390
22392
|
a(str("revert-time"), arg),
|
@@ -23124,6 +23126,9 @@ module Junoser
|
|
23124
23126
|
),
|
23125
23127
|
b(str("mld-snooping"),
|
23126
23128
|
juniper_protocols_mld_snooping
|
23129
|
+
),
|
23130
|
+
b(str("layer2-control"),
|
23131
|
+
juniper_protocols_layer2_control
|
23127
23132
|
)
|
23128
23133
|
)
|
23129
23134
|
end
|
@@ -23139,7 +23144,7 @@ module Junoser
|
|
23139
23144
|
c(
|
23140
23145
|
a(str("exclude"), arg)
|
23141
23146
|
)
|
23142
|
-
)
|
23147
|
+
)
|
23143
23148
|
end
|
23144
23149
|
|
23145
23150
|
rule(:bandwidth_type) do
|
@@ -23149,7 +23154,7 @@ module Junoser
|
|
23149
23154
|
a(str("ct1"), arg),
|
23150
23155
|
a(str("ct2"), arg),
|
23151
23156
|
a(str("ct3"), arg)
|
23152
|
-
)
|
23157
|
+
)
|
23153
23158
|
end
|
23154
23159
|
|
23155
23160
|
rule(:civic_address_elements) do
|
@@ -23294,7 +23299,7 @@ module Junoser
|
|
23294
23299
|
str("external-router-id"),
|
23295
23300
|
str("as-path-ignore")
|
23296
23301
|
)
|
23297
|
-
)
|
23302
|
+
),
|
23298
23303
|
b(str("traceoptions"),
|
23299
23304
|
sc(
|
23300
23305
|
b(str("file"),
|
@@ -23554,7 +23559,7 @@ module Junoser
|
|
23554
23559
|
)
|
23555
23560
|
)
|
23556
23561
|
)
|
23557
|
-
)
|
23562
|
+
),
|
23558
23563
|
a(str("tcp-mss"), arg),
|
23559
23564
|
b(str("bfd-liveness-detection"),
|
23560
23565
|
sc(
|
@@ -23849,7 +23854,7 @@ module Junoser
|
|
23849
23854
|
)
|
23850
23855
|
)
|
23851
23856
|
)
|
23852
|
-
)
|
23857
|
+
),
|
23853
23858
|
a(str("tcp-mss"), arg),
|
23854
23859
|
b(str("bfd-liveness-detection"),
|
23855
23860
|
sc(
|
@@ -24153,7 +24158,7 @@ module Junoser
|
|
24153
24158
|
)
|
24154
24159
|
)
|
24155
24160
|
)
|
24156
|
-
)
|
24161
|
+
),
|
24157
24162
|
a(str("tcp-mss"), arg),
|
24158
24163
|
b(str("bfd-liveness-detection"),
|
24159
24164
|
sc(
|
@@ -24738,21 +24743,21 @@ module Junoser
|
|
24738
24743
|
a(str("holddown"), arg),
|
24739
24744
|
a(str("rapid-runs"), arg)
|
24740
24745
|
)
|
24741
|
-
)
|
24746
|
+
),
|
24742
24747
|
b(str("topologies"),
|
24743
24748
|
sc(
|
24744
24749
|
str("ipv4-multicast"),
|
24745
24750
|
str("ipv6-unicast"),
|
24746
24751
|
str("ipv6-multicast")
|
24747
24752
|
)
|
24748
|
-
)
|
24753
|
+
),
|
24749
24754
|
b(str("overload"),
|
24750
24755
|
sc(
|
24751
24756
|
a(str("timeout"), arg),
|
24752
24757
|
str("advertise-high-metrics"),
|
24753
24758
|
str("allow-route-leaking")
|
24754
24759
|
)
|
24755
|
-
)
|
24760
|
+
),
|
24756
24761
|
b(str("traffic-engineering"),
|
24757
24762
|
sc(
|
24758
24763
|
c(
|
@@ -24775,7 +24780,7 @@ module Junoser
|
|
24775
24780
|
)
|
24776
24781
|
)
|
24777
24782
|
)
|
24778
|
-
)
|
24783
|
+
),
|
24779
24784
|
b(str("graceful-restart"),
|
24780
24785
|
sc(
|
24781
24786
|
c(
|
@@ -24803,7 +24808,7 @@ module Junoser
|
|
24803
24808
|
a(str("external-preference"), arg),
|
24804
24809
|
a(str("prefix-export-limit"), arg)
|
24805
24810
|
)
|
24806
|
-
)
|
24811
|
+
),
|
24807
24812
|
b(a(str("interface"), arg),
|
24808
24813
|
sc(
|
24809
24814
|
c(
|
@@ -24892,7 +24897,7 @@ module Junoser
|
|
24892
24897
|
a(str("priority"), arg),
|
24893
24898
|
str("passive")
|
24894
24899
|
)
|
24895
|
-
)
|
24900
|
+
)
|
24896
24901
|
)
|
24897
24902
|
),
|
24898
24903
|
b(a(str("label-switched-path"), arg),
|
@@ -24904,7 +24909,7 @@ module Junoser
|
|
24904
24909
|
),
|
24905
24910
|
a(str("metric"), arg)
|
24906
24911
|
)
|
24907
|
-
)
|
24912
|
+
)
|
24908
24913
|
)
|
24909
24914
|
),
|
24910
24915
|
b(a(str("context-identifier"), arg),
|
@@ -24915,7 +24920,7 @@ module Junoser
|
|
24915
24920
|
str("disable")
|
24916
24921
|
)
|
24917
24922
|
)
|
24918
|
-
)
|
24923
|
+
)
|
24919
24924
|
)
|
24920
24925
|
)
|
24921
24926
|
)
|
@@ -24961,7 +24966,7 @@ module Junoser
|
|
24961
24966
|
a(str("reconnect-time"), arg),
|
24962
24967
|
a(str("maximum-neighbor-reconnect-time"), arg)
|
24963
24968
|
)
|
24964
|
-
)
|
24969
|
+
),
|
24965
24970
|
a(str("preference"), arg),
|
24966
24971
|
str("no-forwarding"),
|
24967
24972
|
str("l2-smart-policy"),
|
@@ -25032,7 +25037,7 @@ module Junoser
|
|
25032
25037
|
sc(
|
25033
25038
|
a(str("holddown-interval"), arg)
|
25034
25039
|
)
|
25035
|
-
)
|
25040
|
+
),
|
25036
25041
|
b(str("log-updown"),
|
25037
25042
|
sc(
|
25038
25043
|
b(str("trap"),
|
@@ -25295,6 +25300,54 @@ module Junoser
|
|
25295
25300
|
)
|
25296
25301
|
end
|
25297
25302
|
|
25303
|
+
rule(:juniper_protocols_layer2_control) do
|
25304
|
+
sc(
|
25305
|
+
b(str("bpdu-block"),
|
25306
|
+
sc(
|
25307
|
+
a(str("disable-timeout"), arg),
|
25308
|
+
a(str("interface"), any)
|
25309
|
+
)
|
25310
|
+
),
|
25311
|
+
b(str("mac-rewrite"),
|
25312
|
+
b(a(str("interface"), arg),
|
25313
|
+
sc(
|
25314
|
+
str("enable-all-ifl"),
|
25315
|
+
b(str("protocol"),
|
25316
|
+
sc(
|
25317
|
+
str("cdp"),
|
25318
|
+
str("stp"),
|
25319
|
+
str("vtp"),
|
25320
|
+
str("pvstp")
|
25321
|
+
)
|
25322
|
+
)
|
25323
|
+
)
|
25324
|
+
)
|
25325
|
+
),
|
25326
|
+
str("nonstop-bridging"),
|
25327
|
+
b(str("traceoptions"),
|
25328
|
+
sc(
|
25329
|
+
b(str("file"),
|
25330
|
+
sc(
|
25331
|
+
arg,
|
25332
|
+
a(str("size"), arg),
|
25333
|
+
a(str("files"), arg),
|
25334
|
+
str("world-readable"),
|
25335
|
+
str("no-world-readable"),
|
25336
|
+
b(str("match"),
|
25337
|
+
regular_expression
|
25338
|
+
)
|
25339
|
+
)
|
25340
|
+
).as(:oneline),
|
25341
|
+
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"),
|
25342
|
+
sc(
|
25343
|
+
str("disable")
|
25344
|
+
)
|
25345
|
+
).as(:oneline)
|
25346
|
+
)
|
25347
|
+
)
|
25348
|
+
)
|
25349
|
+
end
|
25350
|
+
|
25298
25351
|
rule(:juniper_protocols_mobile_ipv4) do
|
25299
25352
|
sc(
|
25300
25353
|
b(str("traceoptions"),
|
@@ -25588,10 +25641,10 @@ module Junoser
|
|
25588
25641
|
str("no-install"),
|
25589
25642
|
str("downstream-paths-only")
|
25590
25643
|
)
|
25591
|
-
)
|
25644
|
+
),
|
25592
25645
|
a(str("prefix-export-limit"), arg)
|
25593
25646
|
)
|
25594
|
-
)
|
25647
|
+
),
|
25595
25648
|
b(str("spf-options"),
|
25596
25649
|
sc(
|
25597
25650
|
a(str("delay"), arg),
|
@@ -25606,14 +25659,14 @@ module Junoser
|
|
25606
25659
|
str("no-install"),
|
25607
25660
|
str("downstream-paths-only")
|
25608
25661
|
)
|
25609
|
-
)
|
25662
|
+
),
|
25610
25663
|
a(str("prefix-export-limit"), arg),
|
25611
25664
|
a(str("rib-group"), arg),
|
25612
25665
|
b(str("overload"),
|
25613
25666
|
sc(
|
25614
25667
|
a(str("timeout"), arg)
|
25615
25668
|
)
|
25616
|
-
)
|
25669
|
+
),
|
25617
25670
|
b(str("database-protection"),
|
25618
25671
|
sc(
|
25619
25672
|
a(str("maximum-lsa"), arg),
|
@@ -25623,7 +25676,7 @@ module Junoser
|
|
25623
25676
|
a(str("ignore-time"), arg),
|
25624
25677
|
a(str("reset-time"), arg)
|
25625
25678
|
)
|
25626
|
-
)
|
25679
|
+
),
|
25627
25680
|
b(str("graceful-restart"),
|
25628
25681
|
sc(
|
25629
25682
|
c(
|
@@ -25642,7 +25695,7 @@ module Junoser
|
|
25642
25695
|
),
|
25643
25696
|
str("no-strict-lsa-checking")
|
25644
25697
|
)
|
25645
|
-
)
|
25698
|
+
),
|
25646
25699
|
b(str("traffic-engineering"),
|
25647
25700
|
sc(
|
25648
25701
|
str("no-topology"),
|
@@ -25652,11 +25705,11 @@ module Junoser
|
|
25652
25705
|
sc(
|
25653
25706
|
str("lsp-metric-into-summary")
|
25654
25707
|
)
|
25655
|
-
)
|
25708
|
+
),
|
25656
25709
|
str("advertise-unnumbered-interfaces"),
|
25657
25710
|
str("credibility-protocol-preference")
|
25658
25711
|
)
|
25659
|
-
)
|
25712
|
+
),
|
25660
25713
|
a(str("route-type-community"), arg),
|
25661
25714
|
b(str("domain-id"),
|
25662
25715
|
sc(
|
@@ -25689,7 +25742,7 @@ module Junoser
|
|
25689
25742
|
ipaddr
|
25690
25743
|
)
|
25691
25744
|
)
|
25692
|
-
)
|
25745
|
+
),
|
25693
25746
|
b(a(str("area"), arg),
|
25694
25747
|
sc(
|
25695
25748
|
c(
|
@@ -25708,7 +25761,7 @@ module Junoser
|
|
25708
25761
|
a(str("metric-type"), arg),
|
25709
25762
|
str("type-7")
|
25710
25763
|
)
|
25711
|
-
)
|
25764
|
+
),
|
25712
25765
|
str("summaries"),
|
25713
25766
|
str("no-summaries"),
|
25714
25767
|
b(a(str("area-range"), arg),
|
@@ -25720,11 +25773,11 @@ module Junoser
|
|
25720
25773
|
a(str("metric"), arg),
|
25721
25774
|
a(str("metric-type"), arg)
|
25722
25775
|
)
|
25723
|
-
)
|
25776
|
+
)
|
25724
25777
|
)
|
25725
|
-
)
|
25778
|
+
)
|
25726
25779
|
)
|
25727
|
-
)
|
25780
|
+
)
|
25728
25781
|
),
|
25729
25782
|
b(a(str("area-range"), arg),
|
25730
25783
|
sc(
|
@@ -25732,7 +25785,7 @@ module Junoser
|
|
25732
25785
|
str("exact"),
|
25733
25786
|
a(str("override-metric"), arg)
|
25734
25787
|
)
|
25735
|
-
)
|
25788
|
+
),
|
25736
25789
|
b(str("network-summary-export"),
|
25737
25790
|
policy_algebra
|
25738
25791
|
),
|
@@ -25784,7 +25837,7 @@ module Junoser
|
|
25784
25837
|
)
|
25785
25838
|
)
|
25786
25839
|
)
|
25787
|
-
)
|
25840
|
+
)
|
25788
25841
|
)
|
25789
25842
|
)
|
25790
25843
|
),
|
@@ -25808,9 +25861,9 @@ module Junoser
|
|
25808
25861
|
)
|
25809
25862
|
)
|
25810
25863
|
)
|
25811
|
-
)
|
25864
|
+
)
|
25812
25865
|
)
|
25813
|
-
)
|
25866
|
+
),
|
25814
25867
|
b(a(str("interface"), arg),
|
25815
25868
|
sc(
|
25816
25869
|
c(
|
@@ -25877,7 +25930,7 @@ module Junoser
|
|
25877
25930
|
)
|
25878
25931
|
)
|
25879
25932
|
)
|
25880
|
-
)
|
25933
|
+
),
|
25881
25934
|
b(str("bfd-liveness-detection"),
|
25882
25935
|
sc(
|
25883
25936
|
a(str("version"), arg),
|
@@ -25940,7 +25993,7 @@ module Junoser
|
|
25940
25993
|
)
|
25941
25994
|
)
|
25942
25995
|
)
|
25943
|
-
)
|
25996
|
+
)
|
25944
25997
|
)
|
25945
25998
|
),
|
25946
25999
|
b(a(str("peer-interface"), arg),
|
@@ -26174,7 +26227,7 @@ module Junoser
|
|
26174
26227
|
sc(
|
26175
26228
|
str("forward-msdp-sa")
|
26176
26229
|
)
|
26177
|
-
)
|
26230
|
+
)
|
26178
26231
|
)
|
26179
26232
|
),
|
26180
26233
|
b(str("local-address"),
|
@@ -26232,7 +26285,7 @@ module Junoser
|
|
26232
26285
|
str("mapping-agent-election"),
|
26233
26286
|
str("no-mapping-agent-election")
|
26234
26287
|
)
|
26235
|
-
)
|
26288
|
+
),
|
26236
26289
|
b(str("static"),
|
26237
26290
|
sc(
|
26238
26291
|
b(a(str("address"), arg),
|
@@ -26755,7 +26808,7 @@ module Junoser
|
|
26755
26808
|
str("ineligible"),
|
26756
26809
|
a(str("priority"), arg)
|
26757
26810
|
)
|
26758
|
-
)
|
26811
|
+
)
|
26759
26812
|
)
|
26760
26813
|
end
|
26761
26814
|
|
@@ -26949,7 +27002,7 @@ module Junoser
|
|
26949
27002
|
sc(
|
26950
27003
|
a(str("community"), arg)
|
26951
27004
|
)
|
26952
|
-
)
|
27005
|
+
),
|
26953
27006
|
b(str("provider-tunnel"),
|
26954
27007
|
sc(
|
26955
27008
|
c(
|
@@ -27242,7 +27295,7 @@ module Junoser
|
|
27242
27295
|
a(str("import"), arg),
|
27243
27296
|
a(str("export"), arg)
|
27244
27297
|
)
|
27245
|
-
)
|
27298
|
+
),
|
27246
27299
|
str("no-vrf-advertise"),
|
27247
27300
|
b(str("vrf-advertise-selective"),
|
27248
27301
|
sc(
|
@@ -27321,10 +27374,10 @@ module Junoser
|
|
27321
27374
|
str("no-install"),
|
27322
27375
|
str("downstream-paths-only")
|
27323
27376
|
)
|
27324
|
-
)
|
27377
|
+
),
|
27325
27378
|
a(str("prefix-export-limit"), arg)
|
27326
27379
|
)
|
27327
|
-
)
|
27380
|
+
),
|
27328
27381
|
b(str("spf-options"),
|
27329
27382
|
sc(
|
27330
27383
|
a(str("delay"), arg),
|
@@ -27339,14 +27392,14 @@ module Junoser
|
|
27339
27392
|
str("no-install"),
|
27340
27393
|
str("downstream-paths-only")
|
27341
27394
|
)
|
27342
|
-
)
|
27395
|
+
),
|
27343
27396
|
a(str("prefix-export-limit"), arg),
|
27344
27397
|
a(str("rib-group"), arg),
|
27345
27398
|
b(str("overload"),
|
27346
27399
|
sc(
|
27347
27400
|
a(str("timeout"), arg)
|
27348
27401
|
)
|
27349
|
-
)
|
27402
|
+
),
|
27350
27403
|
b(str("database-protection"),
|
27351
27404
|
sc(
|
27352
27405
|
a(str("maximum-lsa"), arg),
|
@@ -27356,7 +27409,7 @@ module Junoser
|
|
27356
27409
|
a(str("ignore-time"), arg),
|
27357
27410
|
a(str("reset-time"), arg)
|
27358
27411
|
)
|
27359
|
-
)
|
27412
|
+
),
|
27360
27413
|
b(str("graceful-restart"),
|
27361
27414
|
sc(
|
27362
27415
|
c(
|
@@ -27375,7 +27428,7 @@ module Junoser
|
|
27375
27428
|
),
|
27376
27429
|
str("no-strict-lsa-checking")
|
27377
27430
|
)
|
27378
|
-
)
|
27431
|
+
),
|
27379
27432
|
b(str("traffic-engineering"),
|
27380
27433
|
sc(
|
27381
27434
|
str("no-topology"),
|
@@ -27385,11 +27438,11 @@ module Junoser
|
|
27385
27438
|
sc(
|
27386
27439
|
str("lsp-metric-into-summary")
|
27387
27440
|
)
|
27388
|
-
)
|
27441
|
+
),
|
27389
27442
|
str("advertise-unnumbered-interfaces"),
|
27390
27443
|
str("credibility-protocol-preference")
|
27391
27444
|
)
|
27392
|
-
)
|
27445
|
+
),
|
27393
27446
|
a(str("route-type-community"), arg),
|
27394
27447
|
b(str("domain-id"),
|
27395
27448
|
sc(
|
@@ -27422,7 +27475,7 @@ module Junoser
|
|
27422
27475
|
ipaddr
|
27423
27476
|
)
|
27424
27477
|
)
|
27425
|
-
)
|
27478
|
+
),
|
27426
27479
|
b(a(str("area"), arg),
|
27427
27480
|
sc(
|
27428
27481
|
c(
|
@@ -27441,7 +27494,7 @@ module Junoser
|
|
27441
27494
|
a(str("metric-type"), arg),
|
27442
27495
|
str("type-7")
|
27443
27496
|
)
|
27444
|
-
)
|
27497
|
+
),
|
27445
27498
|
str("summaries"),
|
27446
27499
|
str("no-summaries"),
|
27447
27500
|
b(a(str("area-range"), arg),
|
@@ -27453,11 +27506,11 @@ module Junoser
|
|
27453
27506
|
a(str("metric"), arg),
|
27454
27507
|
a(str("metric-type"), arg)
|
27455
27508
|
)
|
27456
|
-
)
|
27509
|
+
)
|
27457
27510
|
)
|
27458
|
-
)
|
27511
|
+
)
|
27459
27512
|
)
|
27460
|
-
)
|
27513
|
+
)
|
27461
27514
|
),
|
27462
27515
|
b(a(str("area-range"), arg),
|
27463
27516
|
sc(
|
@@ -27465,7 +27518,7 @@ module Junoser
|
|
27465
27518
|
str("exact"),
|
27466
27519
|
a(str("override-metric"), arg)
|
27467
27520
|
)
|
27468
|
-
)
|
27521
|
+
),
|
27469
27522
|
b(str("network-summary-export"),
|
27470
27523
|
policy_algebra
|
27471
27524
|
),
|
@@ -27517,7 +27570,7 @@ module Junoser
|
|
27517
27570
|
)
|
27518
27571
|
)
|
27519
27572
|
)
|
27520
|
-
)
|
27573
|
+
)
|
27521
27574
|
)
|
27522
27575
|
)
|
27523
27576
|
),
|
@@ -27541,9 +27594,9 @@ module Junoser
|
|
27541
27594
|
)
|
27542
27595
|
)
|
27543
27596
|
)
|
27544
|
-
)
|
27597
|
+
)
|
27545
27598
|
)
|
27546
|
-
)
|
27599
|
+
),
|
27547
27600
|
b(a(str("interface"), arg),
|
27548
27601
|
sc(
|
27549
27602
|
c(
|
@@ -27610,7 +27663,7 @@ module Junoser
|
|
27610
27663
|
)
|
27611
27664
|
)
|
27612
27665
|
)
|
27613
|
-
)
|
27666
|
+
),
|
27614
27667
|
b(str("bfd-liveness-detection"),
|
27615
27668
|
sc(
|
27616
27669
|
a(str("version"), arg),
|
@@ -27673,7 +27726,7 @@ module Junoser
|
|
27673
27726
|
)
|
27674
27727
|
)
|
27675
27728
|
)
|
27676
|
-
)
|
27729
|
+
)
|
27677
27730
|
)
|
27678
27731
|
),
|
27679
27732
|
b(a(str("peer-interface"), arg),
|
@@ -27737,10 +27790,10 @@ module Junoser
|
|
27737
27790
|
str("no-install"),
|
27738
27791
|
str("downstream-paths-only")
|
27739
27792
|
)
|
27740
|
-
)
|
27793
|
+
),
|
27741
27794
|
a(str("prefix-export-limit"), arg)
|
27742
27795
|
)
|
27743
|
-
)
|
27796
|
+
),
|
27744
27797
|
b(str("spf-options"),
|
27745
27798
|
sc(
|
27746
27799
|
a(str("delay"), arg),
|
@@ -27755,14 +27808,14 @@ module Junoser
|
|
27755
27808
|
str("no-install"),
|
27756
27809
|
str("downstream-paths-only")
|
27757
27810
|
)
|
27758
|
-
)
|
27811
|
+
),
|
27759
27812
|
a(str("prefix-export-limit"), arg),
|
27760
27813
|
a(str("rib-group"), arg),
|
27761
27814
|
b(str("overload"),
|
27762
27815
|
sc(
|
27763
27816
|
a(str("timeout"), arg)
|
27764
27817
|
)
|
27765
|
-
)
|
27818
|
+
),
|
27766
27819
|
b(str("database-protection"),
|
27767
27820
|
sc(
|
27768
27821
|
a(str("maximum-lsa"), arg),
|
@@ -27772,7 +27825,7 @@ module Junoser
|
|
27772
27825
|
a(str("ignore-time"), arg),
|
27773
27826
|
a(str("reset-time"), arg)
|
27774
27827
|
)
|
27775
|
-
)
|
27828
|
+
),
|
27776
27829
|
b(str("graceful-restart"),
|
27777
27830
|
sc(
|
27778
27831
|
c(
|
@@ -27791,7 +27844,7 @@ module Junoser
|
|
27791
27844
|
),
|
27792
27845
|
str("no-strict-lsa-checking")
|
27793
27846
|
)
|
27794
|
-
)
|
27847
|
+
),
|
27795
27848
|
b(str("traffic-engineering"),
|
27796
27849
|
sc(
|
27797
27850
|
str("no-topology"),
|
@@ -27801,11 +27854,11 @@ module Junoser
|
|
27801
27854
|
sc(
|
27802
27855
|
str("lsp-metric-into-summary")
|
27803
27856
|
)
|
27804
|
-
)
|
27857
|
+
),
|
27805
27858
|
str("advertise-unnumbered-interfaces"),
|
27806
27859
|
str("credibility-protocol-preference")
|
27807
27860
|
)
|
27808
|
-
)
|
27861
|
+
),
|
27809
27862
|
a(str("route-type-community"), arg),
|
27810
27863
|
b(str("domain-id"),
|
27811
27864
|
sc(
|
@@ -27838,7 +27891,7 @@ module Junoser
|
|
27838
27891
|
ipaddr
|
27839
27892
|
)
|
27840
27893
|
)
|
27841
|
-
)
|
27894
|
+
),
|
27842
27895
|
b(a(str("area"), arg),
|
27843
27896
|
sc(
|
27844
27897
|
c(
|
@@ -27857,7 +27910,7 @@ module Junoser
|
|
27857
27910
|
a(str("metric-type"), arg),
|
27858
27911
|
str("type-7")
|
27859
27912
|
)
|
27860
|
-
)
|
27913
|
+
),
|
27861
27914
|
str("summaries"),
|
27862
27915
|
str("no-summaries"),
|
27863
27916
|
b(a(str("area-range"), arg),
|
@@ -27869,11 +27922,11 @@ module Junoser
|
|
27869
27922
|
a(str("metric"), arg),
|
27870
27923
|
a(str("metric-type"), arg)
|
27871
27924
|
)
|
27872
|
-
)
|
27925
|
+
)
|
27873
27926
|
)
|
27874
|
-
)
|
27927
|
+
)
|
27875
27928
|
)
|
27876
|
-
)
|
27929
|
+
)
|
27877
27930
|
),
|
27878
27931
|
b(a(str("area-range"), arg),
|
27879
27932
|
sc(
|
@@ -27881,7 +27934,7 @@ module Junoser
|
|
27881
27934
|
str("exact"),
|
27882
27935
|
a(str("override-metric"), arg)
|
27883
27936
|
)
|
27884
|
-
)
|
27937
|
+
),
|
27885
27938
|
b(str("network-summary-export"),
|
27886
27939
|
policy_algebra
|
27887
27940
|
),
|
@@ -27933,7 +27986,7 @@ module Junoser
|
|
27933
27986
|
)
|
27934
27987
|
)
|
27935
27988
|
)
|
27936
|
-
)
|
27989
|
+
)
|
27937
27990
|
)
|
27938
27991
|
)
|
27939
27992
|
),
|
@@ -27957,9 +28010,9 @@ module Junoser
|
|
27957
28010
|
)
|
27958
28011
|
)
|
27959
28012
|
)
|
27960
|
-
)
|
28013
|
+
)
|
27961
28014
|
)
|
27962
|
-
)
|
28015
|
+
),
|
27963
28016
|
b(a(str("interface"), arg),
|
27964
28017
|
sc(
|
27965
28018
|
c(
|
@@ -28026,7 +28079,7 @@ module Junoser
|
|
28026
28079
|
)
|
28027
28080
|
)
|
28028
28081
|
)
|
28029
|
-
)
|
28082
|
+
),
|
28030
28083
|
b(str("bfd-liveness-detection"),
|
28031
28084
|
sc(
|
28032
28085
|
a(str("version"), arg),
|
@@ -28089,7 +28142,7 @@ module Junoser
|
|
28089
28142
|
)
|
28090
28143
|
)
|
28091
28144
|
)
|
28092
|
-
)
|
28145
|
+
)
|
28093
28146
|
)
|
28094
28147
|
),
|
28095
28148
|
b(a(str("peer-interface"), arg),
|
@@ -28263,7 +28316,7 @@ module Junoser
|
|
28263
28316
|
)
|
28264
28317
|
).as(:oneline)
|
28265
28318
|
)
|
28266
|
-
)
|
28319
|
+
)
|
28267
28320
|
),
|
28268
28321
|
str("multi-homing"),
|
28269
28322
|
a(str("site-preference"), arg),
|
@@ -28320,7 +28373,7 @@ module Junoser
|
|
28320
28373
|
a(str("outgoing-label"), arg)
|
28321
28374
|
)
|
28322
28375
|
),
|
28323
|
-
str("associate-profile")
|
28376
|
+
str("associate-profile"),
|
28324
28377
|
b(str("psn-tunnel-endpoint"),
|
28325
28378
|
ipv4addr
|
28326
28379
|
),
|
@@ -28349,10 +28402,10 @@ module Junoser
|
|
28349
28402
|
str("oam")
|
28350
28403
|
)
|
28351
28404
|
),
|
28352
|
-
str("associate-profile")
|
28405
|
+
str("associate-profile"),
|
28353
28406
|
b(a(str("mesh-group"), arg),
|
28354
28407
|
sc(
|
28355
|
-
str("associate-profile")
|
28408
|
+
str("associate-profile"),
|
28356
28409
|
c(
|
28357
28410
|
b(str("peer-as"),
|
28358
28411
|
sc(
|
@@ -28363,7 +28416,7 @@ module Junoser
|
|
28363
28416
|
a(str("vpls-id"), arg),
|
28364
28417
|
str("vrf-import"),
|
28365
28418
|
str("vrf-export"),
|
28366
|
-
str("vrf-target")
|
28419
|
+
str("vrf-target"),
|
28367
28420
|
str("mac-flush"),
|
28368
28421
|
str("local-switching"),
|
28369
28422
|
str("neighbor"),
|
@@ -28566,7 +28619,7 @@ module Junoser
|
|
28566
28619
|
a(str("srlg-value"), arg),
|
28567
28620
|
a(str("srlg-cost"), arg)
|
28568
28621
|
)
|
28569
|
-
)
|
28622
|
+
),
|
28570
28623
|
b(str("admin-groups-extended-range"),
|
28571
28624
|
sc(
|
28572
28625
|
a(str("minimum"), arg),
|
@@ -28577,7 +28630,7 @@ module Junoser
|
|
28577
28630
|
sc(
|
28578
28631
|
a(str("group-value"), arg)
|
28579
28632
|
)
|
28580
|
-
)
|
28633
|
+
),
|
28581
28634
|
b(str("traceoptions"),
|
28582
28635
|
sc(
|
28583
28636
|
b(str("file"),
|
@@ -28832,7 +28885,7 @@ module Junoser
|
|
28832
28885
|
)
|
28833
28886
|
)
|
28834
28887
|
)
|
28835
|
-
)
|
28888
|
+
),
|
28836
28889
|
b(a(str("iso-route"), arg),
|
28837
28890
|
sc(
|
28838
28891
|
c(
|
@@ -28955,7 +29008,7 @@ module Junoser
|
|
28955
29008
|
)
|
28956
29009
|
)
|
28957
29010
|
)
|
28958
|
-
)
|
29011
|
+
)
|
28959
29012
|
)
|
28960
29013
|
),
|
28961
29014
|
b(str("martians"),
|
@@ -28998,7 +29051,7 @@ module Junoser
|
|
28998
29051
|
).as(:oneline),
|
28999
29052
|
str("as-path-compare")
|
29000
29053
|
)
|
29001
|
-
)
|
29054
|
+
),
|
29002
29055
|
b(str("label"),
|
29003
29056
|
sc(
|
29004
29057
|
b(str("allocation"),
|
@@ -29008,7 +29061,7 @@ module Junoser
|
|
29008
29061
|
policy_algebra
|
29009
29062
|
)
|
29010
29063
|
)
|
29011
|
-
)
|
29064
|
+
),
|
29012
29065
|
b(str("access"),
|
29013
29066
|
sc(
|
29014
29067
|
b(a(str("route"), arg),
|
@@ -29023,7 +29076,7 @@ module Junoser
|
|
29023
29076
|
a(str("preference"), arg),
|
29024
29077
|
a(str("tag"), arg)
|
29025
29078
|
)
|
29026
|
-
)
|
29079
|
+
)
|
29027
29080
|
)
|
29028
29081
|
),
|
29029
29082
|
b(str("access-internal"),
|
@@ -29037,7 +29090,7 @@ module Junoser
|
|
29037
29090
|
qualified_nh_obj
|
29038
29091
|
)
|
29039
29092
|
)
|
29040
|
-
)
|
29093
|
+
)
|
29041
29094
|
)
|
29042
29095
|
)
|
29043
29096
|
)
|
@@ -29231,7 +29284,7 @@ module Junoser
|
|
29231
29284
|
)
|
29232
29285
|
)
|
29233
29286
|
)
|
29234
|
-
)
|
29287
|
+
),
|
29235
29288
|
b(a(str("iso-route"), arg),
|
29236
29289
|
sc(
|
29237
29290
|
c(
|
@@ -29354,7 +29407,7 @@ module Junoser
|
|
29354
29407
|
)
|
29355
29408
|
)
|
29356
29409
|
)
|
29357
|
-
)
|
29410
|
+
)
|
29358
29411
|
)
|
29359
29412
|
),
|
29360
29413
|
b(str("martians"),
|
@@ -29397,7 +29450,7 @@ module Junoser
|
|
29397
29450
|
).as(:oneline),
|
29398
29451
|
str("as-path-compare")
|
29399
29452
|
)
|
29400
|
-
)
|
29453
|
+
),
|
29401
29454
|
b(str("label"),
|
29402
29455
|
sc(
|
29403
29456
|
b(str("allocation"),
|
@@ -29407,7 +29460,7 @@ module Junoser
|
|
29407
29460
|
policy_algebra
|
29408
29461
|
)
|
29409
29462
|
)
|
29410
|
-
)
|
29463
|
+
),
|
29411
29464
|
b(str("access"),
|
29412
29465
|
sc(
|
29413
29466
|
b(a(str("route"), arg),
|
@@ -29422,7 +29475,7 @@ module Junoser
|
|
29422
29475
|
a(str("preference"), arg),
|
29423
29476
|
a(str("tag"), arg)
|
29424
29477
|
)
|
29425
|
-
)
|
29478
|
+
)
|
29426
29479
|
)
|
29427
29480
|
),
|
29428
29481
|
b(str("access-internal"),
|
@@ -29436,7 +29489,7 @@ module Junoser
|
|
29436
29489
|
qualified_nh_obj
|
29437
29490
|
)
|
29438
29491
|
)
|
29439
|
-
)
|
29492
|
+
)
|
29440
29493
|
)
|
29441
29494
|
),
|
29442
29495
|
b(str("rib-groups"),
|
@@ -29463,7 +29516,7 @@ module Junoser
|
|
29463
29516
|
).as(:oneline),
|
29464
29517
|
b(str("confederation"),
|
29465
29518
|
sc(
|
29466
|
-
|
29519
|
+
arg,
|
29467
29520
|
a(str("members"), arg)
|
29468
29521
|
)
|
29469
29522
|
).as(:oneline),
|
@@ -29692,10 +29745,10 @@ module Junoser
|
|
29692
29745
|
sc(
|
29693
29746
|
b(str("match"),
|
29694
29747
|
flow_route_qualifier
|
29695
|
-
)
|
29748
|
+
),
|
29696
29749
|
b(str("then"),
|
29697
29750
|
flow_route_op
|
29698
|
-
)
|
29751
|
+
)
|
29699
29752
|
)
|
29700
29753
|
),
|
29701
29754
|
a(str("term-order"), arg)
|
@@ -29744,14 +29797,14 @@ module Junoser
|
|
29744
29797
|
),
|
29745
29798
|
b(str("destination-networks"),
|
29746
29799
|
network_type
|
29747
|
-
)
|
29800
|
+
)
|
29748
29801
|
)
|
29749
29802
|
),
|
29750
29803
|
str("gre")
|
29751
29804
|
),
|
29752
29805
|
b(str("destination-networks"),
|
29753
29806
|
network_type
|
29754
|
-
)
|
29807
|
+
)
|
29755
29808
|
)
|
29756
29809
|
)
|
29757
29810
|
end
|
@@ -29827,7 +29880,7 @@ module Junoser
|
|
29827
29880
|
a(str("routing-instance"), arg),
|
29828
29881
|
str("sample"),
|
29829
29882
|
str("next-term")
|
29830
|
-
)
|
29883
|
+
)
|
29831
29884
|
end
|
29832
29885
|
|
29833
29886
|
rule(:flow_route_qualifier) do
|
@@ -29852,7 +29905,7 @@ module Junoser
|
|
29852
29905
|
policy_algebra
|
29853
29906
|
),
|
29854
29907
|
a(str("fragment"), arg)
|
29855
|
-
)
|
29908
|
+
)
|
29856
29909
|
end
|
29857
29910
|
|
29858
29911
|
rule(:forwarding_table_type) do
|
@@ -29907,7 +29960,66 @@ module Junoser
|
|
29907
29960
|
str("mpls")
|
29908
29961
|
)
|
29909
29962
|
),
|
29910
|
-
str("instance")
|
29963
|
+
b(a(str("instance"), arg),
|
29964
|
+
sc(
|
29965
|
+
str("disable"),
|
29966
|
+
b(str("input"),
|
29967
|
+
sc(
|
29968
|
+
a(str("rate"), arg),
|
29969
|
+
a(str("run-length"), arg),
|
29970
|
+
a(str("max-packets-per-second"), arg),
|
29971
|
+
a(str("maximum-packet-length"), arg)
|
29972
|
+
)
|
29973
|
+
),
|
29974
|
+
a(str("family"), str("mpls") | str("inet6") | str("inet") ,
|
29975
|
+
sc(
|
29976
|
+
str("disable"),
|
29977
|
+
b(str("output"),
|
29978
|
+
sc(
|
29979
|
+
a(str("aggregate-export-interval"), arg),
|
29980
|
+
a(str("flow-active-timeout"), arg),
|
29981
|
+
a(str("flow-inactive-timeout"), arg),
|
29982
|
+
a(str("extension-service"), arg),
|
29983
|
+
b(a(str("flow-server"), arg),
|
29984
|
+
sc(
|
29985
|
+
b(str("aggregation"),
|
29986
|
+
sc(
|
29987
|
+
str("autonomous-system"),
|
29988
|
+
str("destination-prefix"),
|
29989
|
+
str("protocol-port"),
|
29990
|
+
b(str("source-destination-prefix"),
|
29991
|
+
str("caida-compliant")
|
29992
|
+
),
|
29993
|
+
str("source-prefix")
|
29994
|
+
)
|
29995
|
+
),
|
29996
|
+
a(str("autonomous-system-type"), str("origin") | str("peer")),
|
29997
|
+
(str("local-dump") | str("no-local-dump")),
|
29998
|
+
a(str("port"), arg),
|
29999
|
+
a(str("source-address"), ipaddr),
|
30000
|
+
a(str("version"), arg),
|
30001
|
+
b(str("version9"),
|
30002
|
+
a(str("template"), arg)
|
30003
|
+
)
|
30004
|
+
)
|
30005
|
+
),
|
30006
|
+
b(a(str("interface"), arg),
|
30007
|
+
sc(
|
30008
|
+
a(str("engine-id"), arg),
|
30009
|
+
a(str("engine-type"), arg),
|
30010
|
+
a(str("source-address"), ipaddr)
|
30011
|
+
)
|
30012
|
+
),
|
30013
|
+
b(str("inline-jflow"),
|
30014
|
+
a(str("source-address"), ipaddr),
|
30015
|
+
a(str("flow-export-rate"), arg)
|
30016
|
+
)
|
30017
|
+
)
|
30018
|
+
)
|
30019
|
+
)
|
30020
|
+
)
|
30021
|
+
)
|
30022
|
+
)
|
29911
30023
|
)
|
29912
30024
|
end
|
29913
30025
|
|
@@ -30078,7 +30190,7 @@ module Junoser
|
|
30078
30190
|
a(str("authentication-order"), arg),
|
30079
30191
|
b(str("location"),
|
30080
30192
|
location_type
|
30081
|
-
)
|
30193
|
+
),
|
30082
30194
|
b(str("ports"),
|
30083
30195
|
sc(
|
30084
30196
|
b(str("console"),
|
@@ -30173,7 +30285,7 @@ module Junoser
|
|
30173
30285
|
)
|
30174
30286
|
)
|
30175
30287
|
)
|
30176
|
-
)
|
30288
|
+
)
|
30177
30289
|
)
|
30178
30290
|
),
|
30179
30291
|
str("allow-v4mapped-packets"),
|
@@ -30232,7 +30344,7 @@ module Junoser
|
|
30232
30344
|
),
|
30233
30345
|
a(str("alias"), arg)
|
30234
30346
|
)
|
30235
|
-
)
|
30347
|
+
),
|
30236
30348
|
b(str("services"),
|
30237
30349
|
sc(
|
30238
30350
|
b(str("finger"),
|
@@ -30443,7 +30555,7 @@ module Junoser
|
|
30443
30555
|
)
|
30444
30556
|
)
|
30445
30557
|
)
|
30446
|
-
)
|
30558
|
+
),
|
30447
30559
|
b(str("traceoptions"),
|
30448
30560
|
sc(
|
30449
30561
|
str("no-remote-trace"),
|
@@ -30504,7 +30616,7 @@ module Junoser
|
|
30504
30616
|
a(str("retry"), arg),
|
30505
30617
|
a(str("timeout"), arg)
|
30506
30618
|
)
|
30507
|
-
)
|
30619
|
+
)
|
30508
30620
|
)
|
30509
30621
|
)
|
30510
30622
|
)
|
@@ -30557,7 +30669,7 @@ module Junoser
|
|
30557
30669
|
)
|
30558
30670
|
)
|
30559
30671
|
)
|
30560
|
-
)
|
30672
|
+
),
|
30561
30673
|
str("packet-triggered-subscribers"),
|
30562
30674
|
b(str("static-subscribers"),
|
30563
30675
|
jsscd_static_subscribers_type
|
@@ -30923,7 +31035,7 @@ module Junoser
|
|
30923
31035
|
)
|
30924
31036
|
).as(:oneline)
|
30925
31037
|
)
|
30926
|
-
)
|
31038
|
+
),
|
30927
31039
|
b(str("resource-limits"),
|
30928
31040
|
sc(
|
30929
31041
|
b(a(str("process"), arg),
|
@@ -30978,7 +31090,7 @@ module Junoser
|
|
30978
31090
|
)
|
30979
31091
|
)
|
30980
31092
|
)
|
30981
|
-
)
|
31093
|
+
),
|
30982
31094
|
b(str("fips"),
|
30983
31095
|
sc(
|
30984
31096
|
a(str("level"), arg),
|
@@ -31057,7 +31169,7 @@ module Junoser
|
|
31057
31169
|
pmond_traceoptions_type
|
31058
31170
|
)
|
31059
31171
|
)
|
31060
|
-
)
|
31172
|
+
),
|
31061
31173
|
b(str("resource-cleanup"),
|
31062
31174
|
sc(
|
31063
31175
|
c(
|
@@ -31067,7 +31179,7 @@ module Junoser
|
|
31067
31179
|
res_cleanupd_traceoptions_type
|
31068
31180
|
)
|
31069
31181
|
)
|
31070
|
-
)
|
31182
|
+
),
|
31071
31183
|
b(str("routing-socket-proxy"),
|
31072
31184
|
sc(
|
31073
31185
|
c(
|
@@ -31146,7 +31258,7 @@ module Junoser
|
|
31146
31258
|
str("traceoptions")
|
31147
31259
|
)
|
31148
31260
|
),
|
31149
|
-
str("mac-validation")
|
31261
|
+
str("mac-validation"),
|
31150
31262
|
b(str("sbc-configuration-process"),
|
31151
31263
|
sc(
|
31152
31264
|
c(
|
@@ -31167,7 +31279,7 @@ module Junoser
|
|
31167
31279
|
ssd_traceoptions_type
|
31168
31280
|
)
|
31169
31281
|
)
|
31170
|
-
)
|
31282
|
+
),
|
31171
31283
|
b(str("datapath-trace-service"),
|
31172
31284
|
sc(
|
31173
31285
|
c(
|
@@ -31177,7 +31289,7 @@ module Junoser
|
|
31177
31289
|
datapath_traced_traceoptions_type
|
31178
31290
|
)
|
31179
31291
|
)
|
31180
|
-
)
|
31292
|
+
),
|
31181
31293
|
b(str("send"),
|
31182
31294
|
sc(
|
31183
31295
|
c(
|
@@ -31795,7 +31907,7 @@ module Junoser
|
|
31795
31907
|
a(str("retry"), arg),
|
31796
31908
|
a(str("timeout"), arg)
|
31797
31909
|
)
|
31798
|
-
)
|
31910
|
+
)
|
31799
31911
|
end
|
31800
31912
|
|
31801
31913
|
rule(:ldp_sync_obj) do
|
@@ -31884,7 +31996,7 @@ module Junoser
|
|
31884
31996
|
a(str("rack"), arg)
|
31885
31997
|
)
|
31886
31998
|
)
|
31887
|
-
)
|
31999
|
+
)
|
31888
32000
|
end
|
31889
32001
|
|
31890
32002
|
rule(:login_class_object) do
|
@@ -31961,12 +32073,12 @@ module Junoser
|
|
31961
32073
|
interface_unit
|
31962
32074
|
)
|
31963
32075
|
)
|
31964
|
-
)
|
32076
|
+
),
|
31965
32077
|
b(str("interface-shared-with"),
|
31966
32078
|
sc(
|
31967
32079
|
a(str("psd-name"), arg)
|
31968
32080
|
)
|
31969
|
-
)
|
32081
|
+
),
|
31970
32082
|
c(
|
31971
32083
|
str("disable")
|
31972
32084
|
),
|
@@ -31974,7 +32086,7 @@ module Junoser
|
|
31974
32086
|
str("per-session-scheduler"),
|
31975
32087
|
str("clear-dont-fragment-bit"),
|
31976
32088
|
str("reassemble-packets"),
|
31977
|
-
str("rpm")
|
32089
|
+
str("rpm"),
|
31978
32090
|
a(str("description"), quote | arg),
|
31979
32091
|
a(str("metadata"), arg),
|
31980
32092
|
str("dial-options"),
|
@@ -32039,10 +32151,10 @@ module Junoser
|
|
32039
32151
|
),
|
32040
32152
|
b(str("input-vlan-map"),
|
32041
32153
|
vlan_map
|
32042
|
-
)
|
32154
|
+
),
|
32043
32155
|
b(str("output-vlan-map"),
|
32044
32156
|
vlan_map
|
32045
|
-
)
|
32157
|
+
),
|
32046
32158
|
str("swap-by-poppush"),
|
32047
32159
|
a(str("receive-lsp"), arg),
|
32048
32160
|
a(str("transmit-lsp"), arg),
|
@@ -32234,7 +32346,7 @@ module Junoser
|
|
32234
32346
|
)
|
32235
32347
|
).as(:oneline)
|
32236
32348
|
)
|
32237
|
-
)
|
32349
|
+
),
|
32238
32350
|
a(str("mtu"), arg),
|
32239
32351
|
str("no-redirects"),
|
32240
32352
|
str("no-neighbor-learn"),
|
@@ -32242,8 +32354,8 @@ module Junoser
|
|
32242
32354
|
str("multicast-only"),
|
32243
32355
|
str("primary"),
|
32244
32356
|
a(str("ipsec-sa"), arg),
|
32245
|
-
str("demux-source")
|
32246
|
-
str("demux-destination")
|
32357
|
+
str("demux-source"),
|
32358
|
+
str("demux-destination"),
|
32247
32359
|
b(str("filter"),
|
32248
32360
|
sc(
|
32249
32361
|
c(
|
@@ -32299,7 +32411,7 @@ module Junoser
|
|
32299
32411
|
sc(
|
32300
32412
|
a(str("ipsec-vpn"), arg)
|
32301
32413
|
)
|
32302
|
-
)
|
32414
|
+
),
|
32303
32415
|
b(a(str("address"), arg),
|
32304
32416
|
sc(
|
32305
32417
|
b(str("destination"),
|
@@ -32343,7 +32455,7 @@ module Junoser
|
|
32343
32455
|
epd_threshold_config
|
32344
32456
|
).as(:oneline)
|
32345
32457
|
)
|
32346
|
-
)
|
32458
|
+
),
|
32347
32459
|
b(a(str("arp"), arg),
|
32348
32460
|
sc(
|
32349
32461
|
b(str("l2-interface"),
|
@@ -32366,7 +32478,7 @@ module Junoser
|
|
32366
32478
|
str("https"),
|
32367
32479
|
str("redirect-to-https")
|
32368
32480
|
)
|
32369
|
-
)
|
32481
|
+
),
|
32370
32482
|
b(str("vrrp-group"),
|
32371
32483
|
vrrp_group
|
32372
32484
|
)
|
@@ -32428,7 +32540,7 @@ module Junoser
|
|
32428
32540
|
)
|
32429
32541
|
).as(:oneline)
|
32430
32542
|
)
|
32431
|
-
)
|
32543
|
+
),
|
32432
32544
|
b(str("accounting"),
|
32433
32545
|
sc(
|
32434
32546
|
b(str("source-class-usage"),
|
@@ -32522,11 +32634,11 @@ module Junoser
|
|
32522
32634
|
str("https"),
|
32523
32635
|
str("redirect-to-https")
|
32524
32636
|
)
|
32525
|
-
)
|
32637
|
+
)
|
32526
32638
|
)
|
32527
32639
|
),
|
32528
|
-
str("demux-source")
|
32529
|
-
str("demux-destination")
|
32640
|
+
str("demux-source"),
|
32641
|
+
str("demux-destination"),
|
32530
32642
|
b(str("unnumbered-address"),
|
32531
32643
|
sc(
|
32532
32644
|
b(str("source"),
|
@@ -32761,7 +32873,7 @@ module Junoser
|
|
32761
32873
|
)
|
32762
32874
|
).as(:oneline)
|
32763
32875
|
)
|
32764
|
-
)
|
32876
|
+
),
|
32765
32877
|
c(
|
32766
32878
|
a(str("isid-list"), arg)
|
32767
32879
|
)
|
@@ -32839,7 +32951,7 @@ module Junoser
|
|
32839
32951
|
str("ingress"),
|
32840
32952
|
str("transit")
|
32841
32953
|
)
|
32842
|
-
)
|
32954
|
+
)
|
32843
32955
|
end
|
32844
32956
|
|
32845
32957
|
rule(:lsp_nh_obj) do
|
@@ -32857,7 +32969,7 @@ module Junoser
|
|
32857
32969
|
a(str("time"), arg),
|
32858
32970
|
str("unlimited")
|
32859
32971
|
)
|
32860
|
-
)
|
32972
|
+
)
|
32861
32973
|
end
|
32862
32974
|
|
32863
32975
|
rule(:mac_list) do
|
@@ -32941,7 +33053,7 @@ module Junoser
|
|
32941
33053
|
str("be"),
|
32942
33054
|
str("range")
|
32943
33055
|
)
|
32944
|
-
)
|
33056
|
+
)
|
32945
33057
|
end
|
32946
33058
|
|
32947
33059
|
rule(:match_simple_port_value) do
|
@@ -33013,7 +33125,7 @@ module Junoser
|
|
33013
33125
|
str("cvspserver"),
|
33014
33126
|
str("range")
|
33015
33127
|
)
|
33016
|
-
)
|
33128
|
+
)
|
33017
33129
|
end
|
33018
33130
|
|
33019
33131
|
rule(:match_simple_protocol_value) do
|
@@ -33042,7 +33154,7 @@ module Junoser
|
|
33042
33154
|
str("vrrp"),
|
33043
33155
|
str("range")
|
33044
33156
|
)
|
33045
|
-
)
|
33157
|
+
)
|
33046
33158
|
end
|
33047
33159
|
|
33048
33160
|
rule(:metric_expression_type) do
|
@@ -33063,7 +33175,7 @@ module Junoser
|
|
33063
33175
|
a(str("offset"), arg)
|
33064
33176
|
)
|
33065
33177
|
).as(:oneline)
|
33066
|
-
)
|
33178
|
+
)
|
33067
33179
|
end
|
33068
33180
|
|
33069
33181
|
rule(:mib_variable_name_object) do
|
@@ -33188,7 +33300,7 @@ module Junoser
|
|
33188
33300
|
sc(
|
33189
33301
|
a(str("port"), arg)
|
33190
33302
|
)
|
33191
|
-
)
|
33303
|
+
)
|
33192
33304
|
end
|
33193
33305
|
|
33194
33306
|
rule(:monitor_export_intf_type) do
|
@@ -33229,7 +33341,7 @@ module Junoser
|
|
33229
33341
|
str("ignore")
|
33230
33342
|
)
|
33231
33343
|
)
|
33232
|
-
)
|
33344
|
+
)
|
33233
33345
|
)
|
33234
33346
|
)
|
33235
33347
|
)
|
@@ -33297,7 +33409,7 @@ module Junoser
|
|
33297
33409
|
a(str("next"), arg)
|
33298
33410
|
)
|
33299
33411
|
)
|
33300
|
-
)
|
33412
|
+
)
|
33301
33413
|
)
|
33302
33414
|
)
|
33303
33415
|
)
|
@@ -33310,7 +33422,7 @@ module Junoser
|
|
33310
33422
|
sc(
|
33311
33423
|
a(str("required-depth"), arg)
|
33312
33424
|
)
|
33313
|
-
)
|
33425
|
+
)
|
33314
33426
|
)
|
33315
33427
|
end
|
33316
33428
|
|
@@ -33338,7 +33450,7 @@ module Junoser
|
|
33338
33450
|
a(str("subscriber-leave-timer"), arg),
|
33339
33451
|
str("no-qos-adjust")
|
33340
33452
|
)
|
33341
|
-
)
|
33453
|
+
)
|
33342
33454
|
end
|
33343
33455
|
|
33344
33456
|
rule(:named_address_book_type) do
|
@@ -33347,10 +33459,10 @@ module Junoser
|
|
33347
33459
|
a(str("description"), quote | arg),
|
33348
33460
|
b(str("address"),
|
33349
33461
|
address_type
|
33350
|
-
)
|
33462
|
+
),
|
33351
33463
|
b(str("address-set"),
|
33352
33464
|
address_set_type
|
33353
|
-
)
|
33465
|
+
),
|
33354
33466
|
b(str("attach"),
|
33355
33467
|
sc(
|
33356
33468
|
a(str("zone"), arg)
|
@@ -33367,7 +33479,7 @@ module Junoser
|
|
33367
33479
|
a(str("address"), arg),
|
33368
33480
|
a(str("address-set"), arg)
|
33369
33481
|
)
|
33370
|
-
)
|
33482
|
+
)
|
33371
33483
|
end
|
33372
33484
|
|
33373
33485
|
rule(:address_type) do
|
@@ -33386,10 +33498,10 @@ module Junoser
|
|
33386
33498
|
),
|
33387
33499
|
b(str("range-address"),
|
33388
33500
|
range_address_type
|
33389
|
-
)
|
33501
|
+
)
|
33390
33502
|
)
|
33391
33503
|
)
|
33392
|
-
)
|
33504
|
+
)
|
33393
33505
|
end
|
33394
33506
|
|
33395
33507
|
rule(:dns_name_type) do
|
@@ -33406,7 +33518,7 @@ module Junoser
|
|
33406
33518
|
end
|
33407
33519
|
|
33408
33520
|
rule(:network_type) do
|
33409
|
-
arg.as(:arg)
|
33521
|
+
arg.as(:arg)
|
33410
33522
|
end
|
33411
33523
|
|
33412
33524
|
rule(:next_hop_group_intf_type) do
|
@@ -33962,7 +34074,7 @@ module Junoser
|
|
33962
34074
|
a(str("flag"), str("configuration") | str("pipe") | str("rpc-packet-details") | str("database") | str("network") | str("traceroute") | str("all")).as(:oneline)
|
33963
34075
|
)
|
33964
34076
|
)
|
33965
|
-
)
|
34077
|
+
)
|
33966
34078
|
end
|
33967
34079
|
|
33968
34080
|
rule(:pim_bootstrap_options_type) do
|
@@ -34366,7 +34478,7 @@ module Junoser
|
|
34366
34478
|
),
|
34367
34479
|
a(str("routing-instance"), arg)
|
34368
34480
|
)
|
34369
|
-
)
|
34481
|
+
)
|
34370
34482
|
end
|
34371
34483
|
|
34372
34484
|
rule(:profile_setting) do
|
@@ -34524,7 +34636,7 @@ module Junoser
|
|
34524
34636
|
unreadable
|
34525
34637
|
)
|
34526
34638
|
)
|
34527
|
-
)
|
34639
|
+
)
|
34528
34640
|
end
|
34529
34641
|
|
34530
34642
|
rule(:radius_server_object) do
|
@@ -34542,7 +34654,7 @@ module Junoser
|
|
34542
34654
|
ipaddr
|
34543
34655
|
)
|
34544
34656
|
)
|
34545
|
-
)
|
34657
|
+
)
|
34546
34658
|
end
|
34547
34659
|
|
34548
34660
|
rule(:range_address_type) do
|
@@ -34556,7 +34668,7 @@ module Junoser
|
|
34556
34668
|
)
|
34557
34669
|
)
|
34558
34670
|
)
|
34559
|
-
)
|
34671
|
+
)
|
34560
34672
|
end
|
34561
34673
|
|
34562
34674
|
rule(:reconfigure_trigger_type) do
|
@@ -34853,7 +34965,7 @@ module Junoser
|
|
34853
34965
|
str("passive")
|
34854
34966
|
)
|
34855
34967
|
)
|
34856
|
-
)
|
34968
|
+
)
|
34857
34969
|
)
|
34858
34970
|
end
|
34859
34971
|
|
@@ -34867,7 +34979,7 @@ module Junoser
|
|
34867
34979
|
sc(
|
34868
34980
|
a(str("inet"), arg),
|
34869
34981
|
a(str("inet6"), arg)
|
34870
|
-
)
|
34982
|
+
)
|
34871
34983
|
end
|
34872
34984
|
|
34873
34985
|
rule(:rib_static_metric_type) do
|
@@ -35138,7 +35250,7 @@ module Junoser
|
|
35138
35250
|
str("exclude"),
|
35139
35251
|
str("all-day")
|
35140
35252
|
)
|
35141
|
-
)
|
35253
|
+
)
|
35142
35254
|
end
|
35143
35255
|
|
35144
35256
|
rule(:scripts_type) do
|
@@ -35187,7 +35299,7 @@ module Junoser
|
|
35187
35299
|
a(str("sha1"), arg),
|
35188
35300
|
a(str("sha-256"), arg)
|
35189
35301
|
)
|
35190
|
-
)
|
35302
|
+
)
|
35191
35303
|
)
|
35192
35304
|
)
|
35193
35305
|
end
|
@@ -35211,7 +35323,7 @@ module Junoser
|
|
35211
35323
|
a(str("sha1"), arg),
|
35212
35324
|
a(str("sha-256"), arg)
|
35213
35325
|
)
|
35214
|
-
)
|
35326
|
+
)
|
35215
35327
|
)
|
35216
35328
|
)
|
35217
35329
|
end
|
@@ -35237,7 +35349,7 @@ module Junoser
|
|
35237
35349
|
sc(
|
35238
35350
|
a(str("configuration-file"), arg)
|
35239
35351
|
)
|
35240
|
-
)
|
35352
|
+
)
|
35241
35353
|
end
|
35242
35354
|
|
35243
35355
|
rule(:security_group_vpn) do
|
@@ -35460,7 +35572,7 @@ module Junoser
|
|
35460
35572
|
a(str("user-at-hostname"), arg)
|
35461
35573
|
)
|
35462
35574
|
)
|
35463
|
-
)
|
35575
|
+
)
|
35464
35576
|
),
|
35465
35577
|
b(str("local-identity"),
|
35466
35578
|
sc(
|
@@ -35652,7 +35764,7 @@ module Junoser
|
|
35652
35764
|
a(str("connections-limit"), arg),
|
35653
35765
|
a(str("ike-user-type"), arg)
|
35654
35766
|
)
|
35655
|
-
)
|
35767
|
+
)
|
35656
35768
|
),
|
35657
35769
|
b(str("dead-peer-detection"),
|
35658
35770
|
sc(
|
@@ -35664,7 +35776,7 @@ module Junoser
|
|
35664
35776
|
a(str("interval"), arg),
|
35665
35777
|
a(str("threshold"), arg)
|
35666
35778
|
)
|
35667
|
-
)
|
35779
|
+
),
|
35668
35780
|
str("no-nat-traversal"),
|
35669
35781
|
a(str("nat-keepalive"), arg),
|
35670
35782
|
b(str("local-identity"),
|
@@ -36201,10 +36313,10 @@ module Junoser
|
|
36201
36313
|
sc(
|
36202
36314
|
b(str("address"),
|
36203
36315
|
address_type
|
36204
|
-
)
|
36316
|
+
),
|
36205
36317
|
b(str("address-set"),
|
36206
36318
|
address_set_type
|
36207
|
-
)
|
36319
|
+
)
|
36208
36320
|
)
|
36209
36321
|
end
|
36210
36322
|
|
@@ -36212,9 +36324,9 @@ module Junoser
|
|
36212
36324
|
sc(
|
36213
36325
|
b(a(str("server-group"), arg),
|
36214
36326
|
sc(
|
36215
|
-
a(str("address"), arg)
|
36327
|
+
a(str("address"), arg)
|
36216
36328
|
)
|
36217
|
-
)
|
36329
|
+
)
|
36218
36330
|
)
|
36219
36331
|
end
|
36220
36332
|
|
@@ -36270,7 +36382,7 @@ module Junoser
|
|
36270
36382
|
str("nat-logs"),
|
36271
36383
|
str("ids-logs")
|
36272
36384
|
)
|
36273
|
-
)
|
36385
|
+
)
|
36274
36386
|
)
|
36275
36387
|
),
|
36276
36388
|
a(str("message-rate-limit"), arg)
|
@@ -37315,7 +37427,7 @@ module Junoser
|
|
37315
37427
|
a(str("ct1"), arg),
|
37316
37428
|
a(str("ct2"), arg),
|
37317
37429
|
a(str("ct3"), arg)
|
37318
|
-
)
|
37430
|
+
)
|
37319
37431
|
end
|
37320
37432
|
|
37321
37433
|
rule(:syslog_object) do
|
@@ -37349,7 +37461,7 @@ module Junoser
|
|
37349
37461
|
ipv4addr
|
37350
37462
|
)
|
37351
37463
|
)
|
37352
|
-
)
|
37464
|
+
)
|
37353
37465
|
end
|
37354
37466
|
|
37355
37467
|
rule(:te_class_object) do
|
@@ -37427,7 +37539,7 @@ module Junoser
|
|
37427
37539
|
sc(
|
37428
37540
|
str("discard")
|
37429
37541
|
)
|
37430
|
-
)
|
37542
|
+
)
|
37431
37543
|
)
|
37432
37544
|
).as(:oneline)
|
37433
37545
|
end
|
@@ -37450,7 +37562,7 @@ module Junoser
|
|
37450
37562
|
str("insecure"),
|
37451
37563
|
a(str("type"), arg),
|
37452
37564
|
str("silent-with-modem")
|
37453
|
-
)
|
37565
|
+
)
|
37454
37566
|
end
|
37455
37567
|
|
37456
37568
|
rule(:tunable_object) do
|
@@ -37580,9 +37692,9 @@ module Junoser
|
|
37580
37692
|
sc(
|
37581
37693
|
b(a(str("server-group"), arg),
|
37582
37694
|
sc(
|
37583
|
-
a(str("address"), arg)
|
37695
|
+
a(str("address"), arg)
|
37584
37696
|
)
|
37585
|
-
)
|
37697
|
+
)
|
37586
37698
|
)
|
37587
37699
|
end
|
37588
37700
|
|
@@ -37728,7 +37840,7 @@ module Junoser
|
|
37728
37840
|
a(str("inner-tag-protocol-id"), arg),
|
37729
37841
|
a(str("vlan-id"), arg),
|
37730
37842
|
a(str("inner-vlan-id"), arg)
|
37731
|
-
)
|
37843
|
+
)
|
37732
37844
|
end
|
37733
37845
|
|
37734
37846
|
rule(:vpls_filter) do
|
@@ -37925,7 +38037,7 @@ module Junoser
|
|
37925
38037
|
str("port-mirror"),
|
37926
38038
|
a(str("next-hop-group"), arg)
|
37927
38039
|
)
|
37928
|
-
)
|
38040
|
+
)
|
37929
38041
|
)
|
37930
38042
|
)
|
37931
38043
|
)
|