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/example/vsrx-12.1.x47.rb
CHANGED
@@ -374,7 +374,7 @@ rule(:configuration) do
|
|
374
374
|
"threshold" arg,
|
375
375
|
"sample-period" arg
|
376
376
|
)
|
377
|
-
)
|
377
|
+
),
|
378
378
|
c(
|
379
379
|
"jitter-buffer-packets" arg,
|
380
380
|
"jitter-buffer-latency" arg,
|
@@ -382,9 +382,9 @@ rule(:configuration) do
|
|
382
382
|
),
|
383
383
|
"bit-rate" arg
|
384
384
|
)
|
385
|
-
)
|
386
|
-
"ima-group-options"
|
387
|
-
"ima-link-options"
|
385
|
+
),
|
386
|
+
"ima-group-options",
|
387
|
+
"ima-link-options",
|
388
388
|
"multi-chassis-protection" (
|
389
389
|
multi_chassis_protection_group
|
390
390
|
),
|
@@ -846,7 +846,7 @@ rule(:configuration) do
|
|
846
846
|
interface_device
|
847
847
|
)
|
848
848
|
)
|
849
|
-
)
|
849
|
+
),
|
850
850
|
"ieee-802.3ad" (
|
851
851
|
sc(
|
852
852
|
"lacp" (
|
@@ -863,7 +863,7 @@ rule(:configuration) do
|
|
863
863
|
"backup"
|
864
864
|
)
|
865
865
|
)
|
866
|
-
)
|
866
|
+
),
|
867
867
|
"ethernet-switch-profile" (
|
868
868
|
sc(
|
869
869
|
"tag-protocol-id" arg,
|
@@ -933,7 +933,7 @@ rule(:configuration) do
|
|
933
933
|
interface_device
|
934
934
|
)
|
935
935
|
)
|
936
|
-
)
|
936
|
+
),
|
937
937
|
"ieee-802.3ad" (
|
938
938
|
sc(
|
939
939
|
"lacp" (
|
@@ -949,7 +949,7 @@ rule(:configuration) do
|
|
949
949
|
"backup"
|
950
950
|
)
|
951
951
|
)
|
952
|
-
)
|
952
|
+
),
|
953
953
|
"mpls" (
|
954
954
|
mpls_ifd_options
|
955
955
|
),
|
@@ -1147,12 +1147,12 @@ rule(:configuration) do
|
|
1147
1147
|
interface_unit
|
1148
1148
|
)
|
1149
1149
|
)
|
1150
|
-
)
|
1150
|
+
),
|
1151
1151
|
"interface-shared-with" (
|
1152
1152
|
sc(
|
1153
1153
|
"psd-name" arg
|
1154
1154
|
)
|
1155
|
-
)
|
1155
|
+
),
|
1156
1156
|
c(
|
1157
1157
|
"disable"
|
1158
1158
|
),
|
@@ -1160,7 +1160,7 @@ rule(:configuration) do
|
|
1160
1160
|
"per-session-scheduler",
|
1161
1161
|
"clear-dont-fragment-bit",
|
1162
1162
|
"reassemble-packets",
|
1163
|
-
"rpm"
|
1163
|
+
"rpm",
|
1164
1164
|
"description" arg,
|
1165
1165
|
"metadata" arg,
|
1166
1166
|
"dial-options",
|
@@ -1225,10 +1225,10 @@ rule(:configuration) do
|
|
1225
1225
|
),
|
1226
1226
|
"input-vlan-map" (
|
1227
1227
|
vlan_map
|
1228
|
-
)
|
1228
|
+
),
|
1229
1229
|
"output-vlan-map" (
|
1230
1230
|
vlan_map
|
1231
|
-
)
|
1231
|
+
),
|
1232
1232
|
"swap-by-poppush",
|
1233
1233
|
"receive-lsp" arg,
|
1234
1234
|
"transmit-lsp" arg,
|
@@ -1420,7 +1420,7 @@ rule(:configuration) do
|
|
1420
1420
|
)
|
1421
1421
|
).as(:oneline)
|
1422
1422
|
)
|
1423
|
-
)
|
1423
|
+
),
|
1424
1424
|
"mtu" arg,
|
1425
1425
|
"no-redirects",
|
1426
1426
|
"no-neighbor-learn",
|
@@ -1428,8 +1428,8 @@ rule(:configuration) do
|
|
1428
1428
|
"multicast-only",
|
1429
1429
|
"primary",
|
1430
1430
|
"ipsec-sa" arg,
|
1431
|
-
"demux-source"
|
1432
|
-
"demux-destination"
|
1431
|
+
"demux-source",
|
1432
|
+
"demux-destination",
|
1433
1433
|
"filter" (
|
1434
1434
|
sc(
|
1435
1435
|
c(
|
@@ -1485,7 +1485,7 @@ rule(:configuration) do
|
|
1485
1485
|
sc(
|
1486
1486
|
"ipsec-vpn" arg
|
1487
1487
|
)
|
1488
|
-
)
|
1488
|
+
),
|
1489
1489
|
"address" arg (
|
1490
1490
|
sc(
|
1491
1491
|
"destination" (
|
@@ -1529,7 +1529,7 @@ rule(:configuration) do
|
|
1529
1529
|
epd_threshold_config
|
1530
1530
|
).as(:oneline)
|
1531
1531
|
)
|
1532
|
-
)
|
1532
|
+
),
|
1533
1533
|
"arp" arg (
|
1534
1534
|
sc(
|
1535
1535
|
"l2-interface" (
|
@@ -1552,7 +1552,7 @@ rule(:configuration) do
|
|
1552
1552
|
"https",
|
1553
1553
|
"redirect-to-https"
|
1554
1554
|
)
|
1555
|
-
)
|
1555
|
+
),
|
1556
1556
|
"vrrp-group" (
|
1557
1557
|
vrrp_group
|
1558
1558
|
)
|
@@ -1614,7 +1614,7 @@ rule(:configuration) do
|
|
1614
1614
|
)
|
1615
1615
|
).as(:oneline)
|
1616
1616
|
)
|
1617
|
-
)
|
1617
|
+
),
|
1618
1618
|
"accounting" (
|
1619
1619
|
sc(
|
1620
1620
|
"source-class-usage" (
|
@@ -1708,11 +1708,11 @@ rule(:configuration) do
|
|
1708
1708
|
"https",
|
1709
1709
|
"redirect-to-https"
|
1710
1710
|
)
|
1711
|
-
)
|
1711
|
+
)
|
1712
1712
|
)
|
1713
1713
|
),
|
1714
|
-
"demux-source"
|
1715
|
-
"demux-destination"
|
1714
|
+
"demux-source",
|
1715
|
+
"demux-destination",
|
1716
1716
|
"unnumbered-address" (
|
1717
1717
|
sc(
|
1718
1718
|
"source" (
|
@@ -1947,7 +1947,7 @@ rule(:configuration) do
|
|
1947
1947
|
)
|
1948
1948
|
).as(:oneline)
|
1949
1949
|
)
|
1950
|
-
)
|
1950
|
+
),
|
1951
1951
|
c(
|
1952
1952
|
"isid-list" arg
|
1953
1953
|
)
|
@@ -2105,7 +2105,7 @@ rule(:configuration) do
|
|
2105
2105
|
)
|
2106
2106
|
).as(:oneline)
|
2107
2107
|
)
|
2108
|
-
)
|
2108
|
+
),
|
2109
2109
|
"attributes-match" (
|
2110
2110
|
s(
|
2111
2111
|
"from-event-attribute" (
|
@@ -2187,7 +2187,7 @@ rule(:configuration) do
|
|
2187
2187
|
)
|
2188
2188
|
).as(:oneline)
|
2189
2189
|
)
|
2190
|
-
)
|
2190
|
+
),
|
2191
2191
|
"output-format" arg
|
2192
2192
|
)
|
2193
2193
|
),
|
@@ -2210,7 +2210,7 @@ rule(:configuration) do
|
|
2210
2210
|
)
|
2211
2211
|
).as(:oneline)
|
2212
2212
|
)
|
2213
|
-
)
|
2213
|
+
),
|
2214
2214
|
"output-format" arg
|
2215
2215
|
)
|
2216
2216
|
),
|
@@ -2247,7 +2247,7 @@ rule(:configuration) do
|
|
2247
2247
|
"sha1" arg,
|
2248
2248
|
"sha-256" arg
|
2249
2249
|
)
|
2250
|
-
)
|
2250
|
+
),
|
2251
2251
|
"remote-execution" arg (
|
2252
2252
|
sc(
|
2253
2253
|
"username" arg,
|
@@ -2519,7 +2519,7 @@ rule(:configuration) do
|
|
2519
2519
|
)
|
2520
2520
|
)
|
2521
2521
|
)
|
2522
|
-
)
|
2522
|
+
),
|
2523
2523
|
"enterprise-oid",
|
2524
2524
|
"routing-instance" arg (
|
2525
2525
|
sc(
|
@@ -2532,7 +2532,7 @@ rule(:configuration) do
|
|
2532
2532
|
)
|
2533
2533
|
)
|
2534
2534
|
)
|
2535
|
-
)
|
2535
|
+
)
|
2536
2536
|
)
|
2537
2537
|
),
|
2538
2538
|
"logical-system" arg (
|
@@ -2548,7 +2548,7 @@ rule(:configuration) do
|
|
2548
2548
|
)
|
2549
2549
|
)
|
2550
2550
|
)
|
2551
|
-
)
|
2551
|
+
)
|
2552
2552
|
)
|
2553
2553
|
)
|
2554
2554
|
)
|
@@ -3211,7 +3211,7 @@ rule(:configuration) do
|
|
3211
3211
|
)
|
3212
3212
|
)
|
3213
3213
|
)
|
3214
|
-
)
|
3214
|
+
),
|
3215
3215
|
"ftp" (
|
3216
3216
|
sc(
|
3217
3217
|
"disable",
|
@@ -3274,7 +3274,7 @@ rule(:configuration) do
|
|
3274
3274
|
)
|
3275
3275
|
)
|
3276
3276
|
)
|
3277
|
-
)
|
3277
|
+
),
|
3278
3278
|
"mgcp" (
|
3279
3279
|
sc(
|
3280
3280
|
"disable",
|
@@ -3318,7 +3318,7 @@ rule(:configuration) do
|
|
3318
3318
|
)
|
3319
3319
|
)
|
3320
3320
|
)
|
3321
|
-
)
|
3321
|
+
),
|
3322
3322
|
"msrpc" (
|
3323
3323
|
sc(
|
3324
3324
|
"disable",
|
@@ -3419,7 +3419,7 @@ rule(:configuration) do
|
|
3419
3419
|
)
|
3420
3420
|
)
|
3421
3421
|
)
|
3422
|
-
)
|
3422
|
+
),
|
3423
3423
|
"sip" (
|
3424
3424
|
sc(
|
3425
3425
|
"disable",
|
@@ -3471,7 +3471,7 @@ rule(:configuration) do
|
|
3471
3471
|
)
|
3472
3472
|
)
|
3473
3473
|
)
|
3474
|
-
)
|
3474
|
+
),
|
3475
3475
|
"sql" (
|
3476
3476
|
sc(
|
3477
3477
|
"disable",
|
@@ -4836,7 +4836,7 @@ rule(:any_filter) do
|
|
4836
4836
|
"next" arg
|
4837
4837
|
)
|
4838
4838
|
)
|
4839
|
-
)
|
4839
|
+
)
|
4840
4840
|
)
|
4841
4841
|
)
|
4842
4842
|
)
|
@@ -4871,7 +4871,7 @@ rule(:application_object) do
|
|
4871
4871
|
term_object
|
4872
4872
|
)
|
4873
4873
|
)
|
4874
|
-
)
|
4874
|
+
)
|
4875
4875
|
end
|
4876
4876
|
|
4877
4877
|
rule(:application_set_object) do
|
@@ -4951,7 +4951,7 @@ rule(:auto_configure_vlan_type) do
|
|
4951
4951
|
"accept" (
|
4952
4952
|
("inet" | "inet6" | "pppoe" | "dhcp-v4" | "dhcp-v6" | "any")
|
4953
4953
|
),
|
4954
|
-
"ranges" arg
|
4954
|
+
"ranges" arg
|
4955
4955
|
)
|
4956
4956
|
),
|
4957
4957
|
"override" (
|
@@ -4981,7 +4981,7 @@ rule(:auto_configure_vlan_type) do
|
|
4981
4981
|
"accept" (
|
4982
4982
|
("inet" | "inet6" | "pppoe" | "dhcp-v4" | "dhcp-v6" | "any")
|
4983
4983
|
),
|
4984
|
-
"ranges" arg
|
4984
|
+
"ranges" arg
|
4985
4985
|
)
|
4986
4986
|
),
|
4987
4987
|
"override" (
|
@@ -4990,7 +4990,7 @@ rule(:auto_configure_vlan_type) do
|
|
4990
4990
|
sc(
|
4991
4991
|
"dynamic-profile" arg
|
4992
4992
|
)
|
4993
|
-
)
|
4993
|
+
)
|
4994
4994
|
)
|
4995
4995
|
),
|
4996
4996
|
"authentication" (
|
@@ -5245,7 +5245,7 @@ rule(:bridge_filter) do
|
|
5245
5245
|
"port-mirror",
|
5246
5246
|
"next-hop-group" arg
|
5247
5247
|
)
|
5248
|
-
)
|
5248
|
+
)
|
5249
5249
|
)
|
5250
5250
|
)
|
5251
5251
|
)
|
@@ -5328,7 +5328,7 @@ rule(:ccc_filter) do
|
|
5328
5328
|
"next" arg
|
5329
5329
|
)
|
5330
5330
|
)
|
5331
|
-
)
|
5331
|
+
)
|
5332
5332
|
)
|
5333
5333
|
)
|
5334
5334
|
)
|
@@ -5427,7 +5427,7 @@ rule(:chassis_type) do
|
|
5427
5427
|
)
|
5428
5428
|
),
|
5429
5429
|
"member",
|
5430
|
-
"fabric"
|
5430
|
+
"fabric",
|
5431
5431
|
"synchronization",
|
5432
5432
|
"lcd-menu",
|
5433
5433
|
"fru-poweron-sequence" arg,
|
@@ -5508,6 +5508,12 @@ rule(:chassis_type) do
|
|
5508
5508
|
)
|
5509
5509
|
)
|
5510
5510
|
)
|
5511
|
+
),
|
5512
|
+
"forwarding-options" (
|
5513
|
+
sc(
|
5514
|
+
"num-65-127-prefix" arg,
|
5515
|
+
"lpm-profile prefix-65-127-disable"
|
5516
|
+
)
|
5511
5517
|
)
|
5512
5518
|
)
|
5513
5519
|
end
|
@@ -5645,7 +5651,9 @@ end
|
|
5645
5651
|
|
5646
5652
|
rule(:chassis_feb_type) do
|
5647
5653
|
sc(
|
5648
|
-
"slot"
|
5654
|
+
"slot" arg (
|
5655
|
+
"sampling-instance" arg
|
5656
|
+
)
|
5649
5657
|
)
|
5650
5658
|
end
|
5651
5659
|
|
@@ -5668,7 +5676,7 @@ rule(:chassis_fpc_type) do
|
|
5668
5676
|
"offline",
|
5669
5677
|
"offline-on-fabric-bandwidth-reduction",
|
5670
5678
|
"port-mirror-instance",
|
5671
|
-
"sampling-instance",
|
5679
|
+
"sampling-instance" arg,
|
5672
5680
|
"inline-services",
|
5673
5681
|
"number-of-ports" arg
|
5674
5682
|
)
|
@@ -5704,8 +5712,8 @@ rule(:chassis_pic_type) do
|
|
5704
5712
|
),
|
5705
5713
|
"no-mcast-replication",
|
5706
5714
|
"framing" arg,
|
5707
|
-
"synchronization"
|
5708
|
-
"recovered-clock"
|
5715
|
+
"synchronization",
|
5716
|
+
"recovered-clock",
|
5709
5717
|
"vtmapping" arg,
|
5710
5718
|
"no-concatenate",
|
5711
5719
|
"no-multi-rate",
|
@@ -5796,7 +5804,7 @@ rule(:chassis_pic_type) do
|
|
5796
5804
|
),
|
5797
5805
|
"fibre-channel" (
|
5798
5806
|
chassis_fibre_channel_type
|
5799
|
-
)
|
5807
|
+
),
|
5800
5808
|
"sfpplus",
|
5801
5809
|
"hash-key",
|
5802
5810
|
"ingress-policer-overhead" arg,
|
@@ -5831,7 +5839,7 @@ rule(:chassis_fibre_channel_type) do
|
|
5831
5839
|
)
|
5832
5840
|
)
|
5833
5841
|
)
|
5834
|
-
)
|
5842
|
+
)
|
5835
5843
|
end
|
5836
5844
|
|
5837
5845
|
rule(:chassis_pic_port_framing) do
|
@@ -5895,7 +5903,7 @@ rule(:chassis_rdd_failover_type) do
|
|
5895
5903
|
sc(
|
5896
5904
|
"on-loss-of-keepalives",
|
5897
5905
|
"on-disk-failure"
|
5898
|
-
)
|
5906
|
+
)
|
5899
5907
|
end
|
5900
5908
|
|
5901
5909
|
rule(:chassis_rdd_id_type) do
|
@@ -6956,8 +6964,8 @@ rule(:dynamic_ifbw_parms_type) do
|
|
6956
6964
|
sc(
|
6957
6965
|
"interval" arg
|
6958
6966
|
)
|
6959
|
-
)
|
6960
|
-
)
|
6967
|
+
)
|
6968
|
+
)
|
6961
6969
|
end
|
6962
6970
|
|
6963
6971
|
rule(:epd_threshold_config) do
|
@@ -7103,7 +7111,7 @@ rule(:firewall_policer) do
|
|
7103
7111
|
"forwarding-class" arg,
|
7104
7112
|
"out-of-profile"
|
7105
7113
|
)
|
7106
|
-
)
|
7114
|
+
)
|
7107
7115
|
)
|
7108
7116
|
)
|
7109
7117
|
end
|
@@ -7604,7 +7612,7 @@ rule(:inet6_dialer_filter) do
|
|
7604
7612
|
"ignore"
|
7605
7613
|
)
|
7606
7614
|
)
|
7607
|
-
)
|
7615
|
+
)
|
7608
7616
|
)
|
7609
7617
|
)
|
7610
7618
|
)
|
@@ -7815,7 +7823,7 @@ rule(:inet6_filter) do
|
|
7815
7823
|
).as(:oneline)
|
7816
7824
|
)
|
7817
7825
|
)
|
7818
|
-
)
|
7826
|
+
)
|
7819
7827
|
)
|
7820
7828
|
)
|
7821
7829
|
)
|
@@ -7836,29 +7844,29 @@ rule(:inet6_fuf) do
|
|
7836
7844
|
sc(
|
7837
7845
|
"source-address" (
|
7838
7846
|
firewall_addr6_simple_object
|
7839
|
-
)
|
7847
|
+
),
|
7840
7848
|
"destination-address" (
|
7841
7849
|
firewall_addr6_simple_object
|
7842
|
-
)
|
7850
|
+
),
|
7843
7851
|
c(
|
7844
7852
|
"source-port" (
|
7845
7853
|
match_simple_port_value
|
7846
|
-
)
|
7854
|
+
)
|
7847
7855
|
),
|
7848
7856
|
c(
|
7849
7857
|
"destination-port" (
|
7850
7858
|
match_simple_port_value
|
7851
|
-
)
|
7859
|
+
)
|
7852
7860
|
),
|
7853
7861
|
c(
|
7854
7862
|
"next-header" (
|
7855
7863
|
match_simple_protocol_value
|
7856
|
-
)
|
7864
|
+
)
|
7857
7865
|
),
|
7858
7866
|
c(
|
7859
7867
|
"traffic-class" (
|
7860
7868
|
match_simple_dscp_value
|
7861
|
-
)
|
7869
|
+
)
|
7862
7870
|
),
|
7863
7871
|
"match-terms" arg
|
7864
7872
|
)
|
@@ -7886,7 +7894,7 @@ rule(:inet6_fuf) do
|
|
7886
7894
|
).as(:oneline)
|
7887
7895
|
)
|
7888
7896
|
)
|
7889
|
-
)
|
7897
|
+
)
|
7890
7898
|
)
|
7891
7899
|
)
|
7892
7900
|
)
|
@@ -7898,7 +7906,7 @@ rule(:firewall_addr6_simple_object) do
|
|
7898
7906
|
"address" (
|
7899
7907
|
ipv6prefix
|
7900
7908
|
)
|
7901
|
-
)
|
7909
|
+
)
|
7902
7910
|
end
|
7903
7911
|
|
7904
7912
|
rule(:inet6_service_filter) do
|
@@ -7984,7 +7992,7 @@ rule(:inet6_service_filter) do
|
|
7984
7992
|
"skip"
|
7985
7993
|
)
|
7986
7994
|
)
|
7987
|
-
)
|
7995
|
+
)
|
7988
7996
|
)
|
7989
7997
|
)
|
7990
7998
|
)
|
@@ -8127,7 +8135,7 @@ rule(:inet_dialer_filter) do
|
|
8127
8135
|
"ignore"
|
8128
8136
|
)
|
8129
8137
|
)
|
8130
|
-
)
|
8138
|
+
)
|
8131
8139
|
)
|
8132
8140
|
)
|
8133
8141
|
)
|
@@ -8326,7 +8334,7 @@ rule(:inet_filter) do
|
|
8326
8334
|
sc(
|
8327
8335
|
"accounting" arg
|
8328
8336
|
)
|
8329
|
-
)
|
8337
|
+
),
|
8330
8338
|
"next" arg,
|
8331
8339
|
"logical-system" (
|
8332
8340
|
s(
|
@@ -8381,7 +8389,7 @@ rule(:inet_filter) do
|
|
8381
8389
|
"dscp" arg,
|
8382
8390
|
"prefix-action" arg
|
8383
8391
|
)
|
8384
|
-
)
|
8392
|
+
)
|
8385
8393
|
)
|
8386
8394
|
)
|
8387
8395
|
)
|
@@ -8402,29 +8410,29 @@ rule(:inet_fuf) do
|
|
8402
8410
|
sc(
|
8403
8411
|
"source-address" (
|
8404
8412
|
firewall_addr_simple_object
|
8405
|
-
)
|
8413
|
+
),
|
8406
8414
|
"destination-address" (
|
8407
8415
|
firewall_addr_simple_object
|
8408
|
-
)
|
8416
|
+
),
|
8409
8417
|
c(
|
8410
8418
|
"source-port" (
|
8411
8419
|
match_simple_port_value
|
8412
|
-
)
|
8420
|
+
)
|
8413
8421
|
),
|
8414
8422
|
c(
|
8415
8423
|
"destination-port" (
|
8416
8424
|
match_simple_port_value
|
8417
|
-
)
|
8425
|
+
)
|
8418
8426
|
),
|
8419
8427
|
c(
|
8420
8428
|
"protocol" (
|
8421
8429
|
match_simple_protocol_value
|
8422
|
-
)
|
8430
|
+
)
|
8423
8431
|
),
|
8424
8432
|
c(
|
8425
8433
|
"dscp" (
|
8426
8434
|
match_simple_dscp_value
|
8427
|
-
)
|
8435
|
+
)
|
8428
8436
|
),
|
8429
8437
|
"match-terms" arg
|
8430
8438
|
)
|
@@ -8452,7 +8460,7 @@ rule(:inet_fuf) do
|
|
8452
8460
|
).as(:oneline)
|
8453
8461
|
)
|
8454
8462
|
)
|
8455
|
-
)
|
8463
|
+
)
|
8456
8464
|
)
|
8457
8465
|
)
|
8458
8466
|
)
|
@@ -8464,7 +8472,7 @@ rule(:firewall_addr_simple_object) do
|
|
8464
8472
|
"address" (
|
8465
8473
|
ipv4prefix
|
8466
8474
|
)
|
8467
|
-
)
|
8475
|
+
)
|
8468
8476
|
end
|
8469
8477
|
|
8470
8478
|
rule(:inet_service_filter) do
|
@@ -8573,7 +8581,7 @@ rule(:inet_service_filter) do
|
|
8573
8581
|
"skip"
|
8574
8582
|
)
|
8575
8583
|
)
|
8576
|
-
)
|
8584
|
+
)
|
8577
8585
|
)
|
8578
8586
|
)
|
8579
8587
|
)
|
@@ -8631,7 +8639,7 @@ rule(:inet_simple_filter) do
|
|
8631
8639
|
"discard",
|
8632
8640
|
"accept"
|
8633
8641
|
)
|
8634
|
-
)
|
8642
|
+
)
|
8635
8643
|
)
|
8636
8644
|
)
|
8637
8645
|
)
|
@@ -8726,7 +8734,7 @@ rule(:interfaces_type) do
|
|
8726
8734
|
"threshold" arg,
|
8727
8735
|
"sample-period" arg
|
8728
8736
|
)
|
8729
|
-
)
|
8737
|
+
),
|
8730
8738
|
c(
|
8731
8739
|
"jitter-buffer-packets" arg,
|
8732
8740
|
"jitter-buffer-latency" arg,
|
@@ -8734,9 +8742,9 @@ rule(:interfaces_type) do
|
|
8734
8742
|
),
|
8735
8743
|
"bit-rate" arg
|
8736
8744
|
)
|
8737
|
-
)
|
8738
|
-
"ima-group-options"
|
8739
|
-
"ima-link-options"
|
8745
|
+
),
|
8746
|
+
"ima-group-options",
|
8747
|
+
"ima-link-options",
|
8740
8748
|
"multi-chassis-protection" (
|
8741
8749
|
multi_chassis_protection_group
|
8742
8750
|
),
|
@@ -9198,7 +9206,7 @@ rule(:interfaces_type) do
|
|
9198
9206
|
interface_device
|
9199
9207
|
)
|
9200
9208
|
)
|
9201
|
-
)
|
9209
|
+
),
|
9202
9210
|
"ieee-802.3ad" (
|
9203
9211
|
sc(
|
9204
9212
|
"lacp" (
|
@@ -9215,7 +9223,7 @@ rule(:interfaces_type) do
|
|
9215
9223
|
"backup"
|
9216
9224
|
)
|
9217
9225
|
)
|
9218
|
-
)
|
9226
|
+
),
|
9219
9227
|
"ethernet-switch-profile" (
|
9220
9228
|
sc(
|
9221
9229
|
"tag-protocol-id" arg,
|
@@ -9285,7 +9293,7 @@ rule(:interfaces_type) do
|
|
9285
9293
|
interface_device
|
9286
9294
|
)
|
9287
9295
|
)
|
9288
|
-
)
|
9296
|
+
),
|
9289
9297
|
"ieee-802.3ad" (
|
9290
9298
|
sc(
|
9291
9299
|
"lacp" (
|
@@ -9301,7 +9309,7 @@ rule(:interfaces_type) do
|
|
9301
9309
|
"backup"
|
9302
9310
|
)
|
9303
9311
|
)
|
9304
|
-
)
|
9312
|
+
),
|
9305
9313
|
"mpls" (
|
9306
9314
|
mpls_ifd_options
|
9307
9315
|
),
|
@@ -9499,12 +9507,12 @@ rule(:interfaces_type) do
|
|
9499
9507
|
interface_unit
|
9500
9508
|
)
|
9501
9509
|
)
|
9502
|
-
)
|
9510
|
+
),
|
9503
9511
|
"interface-shared-with" (
|
9504
9512
|
sc(
|
9505
9513
|
"psd-name" arg
|
9506
9514
|
)
|
9507
|
-
)
|
9515
|
+
),
|
9508
9516
|
c(
|
9509
9517
|
"disable"
|
9510
9518
|
),
|
@@ -9512,7 +9520,7 @@ rule(:interfaces_type) do
|
|
9512
9520
|
"per-session-scheduler",
|
9513
9521
|
"clear-dont-fragment-bit",
|
9514
9522
|
"reassemble-packets",
|
9515
|
-
"rpm"
|
9523
|
+
"rpm",
|
9516
9524
|
"description" arg,
|
9517
9525
|
"metadata" arg,
|
9518
9526
|
"dial-options",
|
@@ -9577,10 +9585,10 @@ rule(:interfaces_type) do
|
|
9577
9585
|
),
|
9578
9586
|
"input-vlan-map" (
|
9579
9587
|
vlan_map
|
9580
|
-
)
|
9588
|
+
),
|
9581
9589
|
"output-vlan-map" (
|
9582
9590
|
vlan_map
|
9583
|
-
)
|
9591
|
+
),
|
9584
9592
|
"swap-by-poppush",
|
9585
9593
|
"receive-lsp" arg,
|
9586
9594
|
"transmit-lsp" arg,
|
@@ -9772,7 +9780,7 @@ rule(:interfaces_type) do
|
|
9772
9780
|
)
|
9773
9781
|
).as(:oneline)
|
9774
9782
|
)
|
9775
|
-
)
|
9783
|
+
),
|
9776
9784
|
"mtu" arg,
|
9777
9785
|
"no-redirects",
|
9778
9786
|
"no-neighbor-learn",
|
@@ -9780,8 +9788,8 @@ rule(:interfaces_type) do
|
|
9780
9788
|
"multicast-only",
|
9781
9789
|
"primary",
|
9782
9790
|
"ipsec-sa" arg,
|
9783
|
-
"demux-source"
|
9784
|
-
"demux-destination"
|
9791
|
+
"demux-source",
|
9792
|
+
"demux-destination",
|
9785
9793
|
"filter" (
|
9786
9794
|
sc(
|
9787
9795
|
c(
|
@@ -9837,7 +9845,7 @@ rule(:interfaces_type) do
|
|
9837
9845
|
sc(
|
9838
9846
|
"ipsec-vpn" arg
|
9839
9847
|
)
|
9840
|
-
)
|
9848
|
+
),
|
9841
9849
|
"address" arg (
|
9842
9850
|
sc(
|
9843
9851
|
"destination" (
|
@@ -9881,7 +9889,7 @@ rule(:interfaces_type) do
|
|
9881
9889
|
epd_threshold_config
|
9882
9890
|
).as(:oneline)
|
9883
9891
|
)
|
9884
|
-
)
|
9892
|
+
),
|
9885
9893
|
"arp" arg (
|
9886
9894
|
sc(
|
9887
9895
|
"l2-interface" (
|
@@ -9904,7 +9912,7 @@ rule(:interfaces_type) do
|
|
9904
9912
|
"https",
|
9905
9913
|
"redirect-to-https"
|
9906
9914
|
)
|
9907
|
-
)
|
9915
|
+
),
|
9908
9916
|
"vrrp-group" (
|
9909
9917
|
vrrp_group
|
9910
9918
|
)
|
@@ -9966,7 +9974,7 @@ rule(:interfaces_type) do
|
|
9966
9974
|
)
|
9967
9975
|
).as(:oneline)
|
9968
9976
|
)
|
9969
|
-
)
|
9977
|
+
),
|
9970
9978
|
"accounting" (
|
9971
9979
|
sc(
|
9972
9980
|
"source-class-usage" (
|
@@ -10060,11 +10068,11 @@ rule(:interfaces_type) do
|
|
10060
10068
|
"https",
|
10061
10069
|
"redirect-to-https"
|
10062
10070
|
)
|
10063
|
-
)
|
10071
|
+
)
|
10064
10072
|
)
|
10065
10073
|
),
|
10066
|
-
"demux-source"
|
10067
|
-
"demux-destination"
|
10074
|
+
"demux-source",
|
10075
|
+
"demux-destination",
|
10068
10076
|
"unnumbered-address" (
|
10069
10077
|
sc(
|
10070
10078
|
"source" (
|
@@ -10299,7 +10307,7 @@ rule(:interfaces_type) do
|
|
10299
10307
|
)
|
10300
10308
|
).as(:oneline)
|
10301
10309
|
)
|
10302
|
-
)
|
10310
|
+
),
|
10303
10311
|
c(
|
10304
10312
|
"isid-list" arg
|
10305
10313
|
)
|
@@ -10432,7 +10440,7 @@ rule(:ip_monitoring_address_type) do
|
|
10432
10440
|
)
|
10433
10441
|
)
|
10434
10442
|
)
|
10435
|
-
)
|
10443
|
+
)
|
10436
10444
|
end
|
10437
10445
|
|
10438
10446
|
rule(:jsrc_partition_definition) do
|
@@ -10795,7 +10803,7 @@ rule(:access_client_name_filter_object) do
|
|
10795
10803
|
"domain-name" arg,
|
10796
10804
|
"separator" arg,
|
10797
10805
|
"count" arg
|
10798
|
-
)
|
10806
|
+
)
|
10799
10807
|
end
|
10800
10808
|
|
10801
10809
|
rule(:access_client_object) do
|
@@ -10828,7 +10836,7 @@ rule(:access_client_object) do
|
|
10828
10836
|
)
|
10829
10837
|
)
|
10830
10838
|
)
|
10831
|
-
)
|
10839
|
+
)
|
10832
10840
|
end
|
10833
10841
|
|
10834
10842
|
rule(:access_ldap_options) do
|
@@ -10881,7 +10889,7 @@ rule(:access_radius_server_object) do
|
|
10881
10889
|
),
|
10882
10890
|
"routing-instance" arg
|
10883
10891
|
)
|
10884
|
-
)
|
10892
|
+
)
|
10885
10893
|
end
|
10886
10894
|
|
10887
10895
|
rule(:address_assignment_type) do
|
@@ -10962,7 +10970,7 @@ rule(:address_assignment_type) do
|
|
10962
10970
|
),
|
10963
10971
|
"prefix-length" arg
|
10964
10972
|
)
|
10965
|
-
)
|
10973
|
+
),
|
10966
10974
|
"dhcp-attributes" (
|
10967
10975
|
dhcp_attribute_type
|
10968
10976
|
)
|
@@ -11043,9 +11051,9 @@ rule(:dhcp_attribute_type) do
|
|
11043
11051
|
)
|
11044
11052
|
).as(:oneline)
|
11045
11053
|
)
|
11046
|
-
)
|
11054
|
+
)
|
11047
11055
|
)
|
11048
|
-
)
|
11056
|
+
),
|
11049
11057
|
"maximum-lease-time" arg,
|
11050
11058
|
"next-server" (
|
11051
11059
|
ipv4addr
|
@@ -11132,7 +11140,7 @@ rule(:domain_map_type) do
|
|
11132
11140
|
sc(
|
11133
11141
|
"aaa-routing-instance" arg
|
11134
11142
|
)
|
11135
|
-
)
|
11143
|
+
)
|
11136
11144
|
),
|
11137
11145
|
"access-profile" arg,
|
11138
11146
|
"address-pool" arg,
|
@@ -11151,7 +11159,7 @@ rule(:domain_map_type) do
|
|
11151
11159
|
sc(
|
11152
11160
|
"target-routing-instance" arg
|
11153
11161
|
)
|
11154
|
-
)
|
11162
|
+
)
|
11155
11163
|
),
|
11156
11164
|
"strip-domain",
|
11157
11165
|
"tunnel-profile" arg
|
@@ -11545,7 +11553,7 @@ rule(:dhcpv6_relay_group) do
|
|
11545
11553
|
).as(:oneline),
|
11546
11554
|
"service-profile" arg
|
11547
11555
|
)
|
11548
|
-
)
|
11556
|
+
)
|
11549
11557
|
)
|
11550
11558
|
)
|
11551
11559
|
end
|
@@ -12066,7 +12074,7 @@ rule(:juniper_class_of_service_options) do
|
|
12066
12074
|
"rate-limit"
|
12067
12075
|
)
|
12068
12076
|
)
|
12069
|
-
)
|
12077
|
+
),
|
12070
12078
|
"excess-rate".as(:oneline),
|
12071
12079
|
"shaping-rate" (
|
12072
12080
|
sc(
|
@@ -12092,7 +12100,7 @@ rule(:juniper_class_of_service_options) do
|
|
12092
12100
|
"exact"
|
12093
12101
|
)
|
12094
12102
|
)
|
12095
|
-
)
|
12103
|
+
),
|
12096
12104
|
"priority" arg,
|
12097
12105
|
"excess-priority" arg,
|
12098
12106
|
"drop-profile-map" (
|
@@ -12300,7 +12308,7 @@ rule(:cos_interfaces_type) do
|
|
12300
12308
|
"rewrite-rule-name" arg,
|
12301
12309
|
"vlan-tag" arg
|
12302
12310
|
)
|
12303
|
-
)
|
12311
|
+
)
|
12304
12312
|
)
|
12305
12313
|
),
|
12306
12314
|
"loss-priority-rewrites",
|
@@ -12356,37 +12364,37 @@ rule(:juniper_dynamic_profile_object) do
|
|
12356
12364
|
"proportion" arg,
|
12357
12365
|
"percent" arg
|
12358
12366
|
)
|
12359
|
-
)
|
12367
|
+
),
|
12360
12368
|
"cos-excess-rate-high" (
|
12361
12369
|
sc(
|
12362
12370
|
"proportion" arg,
|
12363
12371
|
"percent" arg
|
12364
12372
|
)
|
12365
|
-
)
|
12373
|
+
),
|
12366
12374
|
"cos-excess-rate-low" (
|
12367
12375
|
sc(
|
12368
12376
|
"proportion" arg,
|
12369
12377
|
"percent" arg
|
12370
12378
|
)
|
12371
|
-
)
|
12379
|
+
),
|
12372
12380
|
"cos-scheduler-tx" (
|
12373
12381
|
sc(
|
12374
12382
|
"rate" arg,
|
12375
12383
|
"percent" arg
|
12376
12384
|
)
|
12377
|
-
)
|
12385
|
+
),
|
12378
12386
|
"cos-scheduler-bs" (
|
12379
12387
|
sc(
|
12380
12388
|
"percent" arg,
|
12381
12389
|
"temporal" arg
|
12382
12390
|
)
|
12383
|
-
)
|
12391
|
+
),
|
12384
12392
|
"cos-scheduler-shaping-rate" (
|
12385
12393
|
sc(
|
12386
12394
|
"rate" arg,
|
12387
12395
|
"percent" arg
|
12388
12396
|
)
|
12389
|
-
)
|
12397
|
+
),
|
12390
12398
|
"other-variables" (
|
12391
12399
|
base_default_variable_object
|
12392
12400
|
)
|
@@ -12598,7 +12606,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
12598
12606
|
)
|
12599
12607
|
)
|
12600
12608
|
)
|
12601
|
-
)
|
12609
|
+
),
|
12602
12610
|
"iso-route" arg (
|
12603
12611
|
sc(
|
12604
12612
|
c(
|
@@ -12721,7 +12729,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
12721
12729
|
)
|
12722
12730
|
)
|
12723
12731
|
)
|
12724
|
-
)
|
12732
|
+
)
|
12725
12733
|
)
|
12726
12734
|
),
|
12727
12735
|
"martians" (
|
@@ -12764,7 +12772,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
12764
12772
|
).as(:oneline),
|
12765
12773
|
"as-path-compare"
|
12766
12774
|
)
|
12767
|
-
)
|
12775
|
+
),
|
12768
12776
|
"label" (
|
12769
12777
|
sc(
|
12770
12778
|
"allocation" (
|
@@ -12774,7 +12782,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
12774
12782
|
policy_algebra
|
12775
12783
|
)
|
12776
12784
|
)
|
12777
|
-
)
|
12785
|
+
),
|
12778
12786
|
"access" (
|
12779
12787
|
sc(
|
12780
12788
|
"route" arg (
|
@@ -12789,7 +12797,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
12789
12797
|
"preference" arg,
|
12790
12798
|
"tag" arg
|
12791
12799
|
)
|
12792
|
-
)
|
12800
|
+
)
|
12793
12801
|
)
|
12794
12802
|
),
|
12795
12803
|
"access-internal" (
|
@@ -12803,7 +12811,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
12803
12811
|
qualified_nh_obj
|
12804
12812
|
)
|
12805
12813
|
)
|
12806
|
-
)
|
12814
|
+
)
|
12807
12815
|
)
|
12808
12816
|
)
|
12809
12817
|
)
|
@@ -12822,7 +12830,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
12822
12830
|
"preference" arg,
|
12823
12831
|
"tag" arg
|
12824
12832
|
)
|
12825
|
-
)
|
12833
|
+
)
|
12826
12834
|
)
|
12827
12835
|
),
|
12828
12836
|
"access-internal" (
|
@@ -12836,7 +12844,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
12836
12844
|
qualified_nh_obj
|
12837
12845
|
)
|
12838
12846
|
)
|
12839
|
-
)
|
12847
|
+
)
|
12840
12848
|
)
|
12841
12849
|
),
|
12842
12850
|
"multicast" (
|
@@ -13083,7 +13091,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
13083
13091
|
"threshold" arg,
|
13084
13092
|
"sample-period" arg
|
13085
13093
|
)
|
13086
|
-
)
|
13094
|
+
),
|
13087
13095
|
c(
|
13088
13096
|
"jitter-buffer-packets" arg,
|
13089
13097
|
"jitter-buffer-latency" arg,
|
@@ -13091,9 +13099,9 @@ rule(:juniper_dynamic_profile_object) do
|
|
13091
13099
|
),
|
13092
13100
|
"bit-rate" arg
|
13093
13101
|
)
|
13094
|
-
)
|
13095
|
-
"ima-group-options"
|
13096
|
-
"ima-link-options"
|
13102
|
+
),
|
13103
|
+
"ima-group-options",
|
13104
|
+
"ima-link-options",
|
13097
13105
|
"multi-chassis-protection" (
|
13098
13106
|
multi_chassis_protection_group
|
13099
13107
|
),
|
@@ -13555,7 +13563,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
13555
13563
|
interface_device
|
13556
13564
|
)
|
13557
13565
|
)
|
13558
|
-
)
|
13566
|
+
),
|
13559
13567
|
"ieee-802.3ad" (
|
13560
13568
|
sc(
|
13561
13569
|
"lacp" (
|
@@ -13572,7 +13580,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
13572
13580
|
"backup"
|
13573
13581
|
)
|
13574
13582
|
)
|
13575
|
-
)
|
13583
|
+
),
|
13576
13584
|
"ethernet-switch-profile" (
|
13577
13585
|
sc(
|
13578
13586
|
"tag-protocol-id" arg,
|
@@ -13642,7 +13650,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
13642
13650
|
interface_device
|
13643
13651
|
)
|
13644
13652
|
)
|
13645
|
-
)
|
13653
|
+
),
|
13646
13654
|
"ieee-802.3ad" (
|
13647
13655
|
sc(
|
13648
13656
|
"lacp" (
|
@@ -13658,7 +13666,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
13658
13666
|
"backup"
|
13659
13667
|
)
|
13660
13668
|
)
|
13661
|
-
)
|
13669
|
+
),
|
13662
13670
|
"mpls" (
|
13663
13671
|
mpls_ifd_options
|
13664
13672
|
),
|
@@ -13856,12 +13864,12 @@ rule(:juniper_dynamic_profile_object) do
|
|
13856
13864
|
interface_unit
|
13857
13865
|
)
|
13858
13866
|
)
|
13859
|
-
)
|
13867
|
+
),
|
13860
13868
|
"interface-shared-with" (
|
13861
13869
|
sc(
|
13862
13870
|
"psd-name" arg
|
13863
13871
|
)
|
13864
|
-
)
|
13872
|
+
),
|
13865
13873
|
c(
|
13866
13874
|
"disable"
|
13867
13875
|
),
|
@@ -13869,7 +13877,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
13869
13877
|
"per-session-scheduler",
|
13870
13878
|
"clear-dont-fragment-bit",
|
13871
13879
|
"reassemble-packets",
|
13872
|
-
"rpm"
|
13880
|
+
"rpm",
|
13873
13881
|
"description" arg,
|
13874
13882
|
"metadata" arg,
|
13875
13883
|
"dial-options",
|
@@ -13934,10 +13942,10 @@ rule(:juniper_dynamic_profile_object) do
|
|
13934
13942
|
),
|
13935
13943
|
"input-vlan-map" (
|
13936
13944
|
vlan_map
|
13937
|
-
)
|
13945
|
+
),
|
13938
13946
|
"output-vlan-map" (
|
13939
13947
|
vlan_map
|
13940
|
-
)
|
13948
|
+
),
|
13941
13949
|
"swap-by-poppush",
|
13942
13950
|
"receive-lsp" arg,
|
13943
13951
|
"transmit-lsp" arg,
|
@@ -14129,7 +14137,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
14129
14137
|
)
|
14130
14138
|
).as(:oneline)
|
14131
14139
|
)
|
14132
|
-
)
|
14140
|
+
),
|
14133
14141
|
"mtu" arg,
|
14134
14142
|
"no-redirects",
|
14135
14143
|
"no-neighbor-learn",
|
@@ -14137,8 +14145,8 @@ rule(:juniper_dynamic_profile_object) do
|
|
14137
14145
|
"multicast-only",
|
14138
14146
|
"primary",
|
14139
14147
|
"ipsec-sa" arg,
|
14140
|
-
"demux-source"
|
14141
|
-
"demux-destination"
|
14148
|
+
"demux-source",
|
14149
|
+
"demux-destination",
|
14142
14150
|
"filter" (
|
14143
14151
|
sc(
|
14144
14152
|
c(
|
@@ -14194,7 +14202,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
14194
14202
|
sc(
|
14195
14203
|
"ipsec-vpn" arg
|
14196
14204
|
)
|
14197
|
-
)
|
14205
|
+
),
|
14198
14206
|
"address" arg (
|
14199
14207
|
sc(
|
14200
14208
|
"destination" (
|
@@ -14238,7 +14246,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
14238
14246
|
epd_threshold_config
|
14239
14247
|
).as(:oneline)
|
14240
14248
|
)
|
14241
|
-
)
|
14249
|
+
),
|
14242
14250
|
"arp" arg (
|
14243
14251
|
sc(
|
14244
14252
|
"l2-interface" (
|
@@ -14261,7 +14269,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
14261
14269
|
"https",
|
14262
14270
|
"redirect-to-https"
|
14263
14271
|
)
|
14264
|
-
)
|
14272
|
+
),
|
14265
14273
|
"vrrp-group" (
|
14266
14274
|
vrrp_group
|
14267
14275
|
)
|
@@ -14323,7 +14331,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
14323
14331
|
)
|
14324
14332
|
).as(:oneline)
|
14325
14333
|
)
|
14326
|
-
)
|
14334
|
+
),
|
14327
14335
|
"accounting" (
|
14328
14336
|
sc(
|
14329
14337
|
"source-class-usage" (
|
@@ -14417,11 +14425,11 @@ rule(:juniper_dynamic_profile_object) do
|
|
14417
14425
|
"https",
|
14418
14426
|
"redirect-to-https"
|
14419
14427
|
)
|
14420
|
-
)
|
14428
|
+
)
|
14421
14429
|
)
|
14422
14430
|
),
|
14423
|
-
"demux-source"
|
14424
|
-
"demux-destination"
|
14431
|
+
"demux-source",
|
14432
|
+
"demux-destination",
|
14425
14433
|
"unnumbered-address" (
|
14426
14434
|
sc(
|
14427
14435
|
"source" (
|
@@ -14656,7 +14664,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
14656
14664
|
)
|
14657
14665
|
).as(:oneline)
|
14658
14666
|
)
|
14659
|
-
)
|
14667
|
+
),
|
14660
14668
|
c(
|
14661
14669
|
"isid-list" arg
|
14662
14670
|
)
|
@@ -15456,7 +15464,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
15456
15464
|
)
|
15457
15465
|
)
|
15458
15466
|
)
|
15459
|
-
)
|
15467
|
+
),
|
15460
15468
|
"iso-route" arg (
|
15461
15469
|
sc(
|
15462
15470
|
c(
|
@@ -15579,7 +15587,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
15579
15587
|
)
|
15580
15588
|
)
|
15581
15589
|
)
|
15582
|
-
)
|
15590
|
+
)
|
15583
15591
|
)
|
15584
15592
|
),
|
15585
15593
|
"martians" (
|
@@ -15622,7 +15630,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
15622
15630
|
).as(:oneline),
|
15623
15631
|
"as-path-compare"
|
15624
15632
|
)
|
15625
|
-
)
|
15633
|
+
),
|
15626
15634
|
"label" (
|
15627
15635
|
sc(
|
15628
15636
|
"allocation" (
|
@@ -15632,7 +15640,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
15632
15640
|
policy_algebra
|
15633
15641
|
)
|
15634
15642
|
)
|
15635
|
-
)
|
15643
|
+
),
|
15636
15644
|
"access" (
|
15637
15645
|
sc(
|
15638
15646
|
"route" arg (
|
@@ -15647,7 +15655,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
15647
15655
|
"preference" arg,
|
15648
15656
|
"tag" arg
|
15649
15657
|
)
|
15650
|
-
)
|
15658
|
+
)
|
15651
15659
|
)
|
15652
15660
|
),
|
15653
15661
|
"access-internal" (
|
@@ -15661,7 +15669,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
15661
15669
|
qualified_nh_obj
|
15662
15670
|
)
|
15663
15671
|
)
|
15664
|
-
)
|
15672
|
+
)
|
15665
15673
|
)
|
15666
15674
|
)
|
15667
15675
|
)
|
@@ -15680,7 +15688,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
15680
15688
|
"preference" arg,
|
15681
15689
|
"tag" arg
|
15682
15690
|
)
|
15683
|
-
)
|
15691
|
+
)
|
15684
15692
|
)
|
15685
15693
|
),
|
15686
15694
|
"access-internal" (
|
@@ -15694,7 +15702,7 @@ rule(:juniper_dynamic_profile_object) do
|
|
15694
15702
|
qualified_nh_obj
|
15695
15703
|
)
|
15696
15704
|
)
|
15697
|
-
)
|
15705
|
+
)
|
15698
15706
|
)
|
15699
15707
|
),
|
15700
15708
|
"multicast" (
|
@@ -15945,7 +15953,7 @@ rule(:base_default_variable_object) do
|
|
15945
15953
|
sc(
|
15946
15954
|
"default-value" arg
|
15947
15955
|
)
|
15948
|
-
)
|
15956
|
+
)
|
15949
15957
|
end
|
15950
15958
|
|
15951
15959
|
rule(:cfm_traceoptions) do
|
@@ -16001,7 +16009,7 @@ rule(:juniper_dynamic_variable_object) do
|
|
16001
16009
|
"uid-reference",
|
16002
16010
|
"uid"
|
16003
16011
|
)
|
16004
|
-
)
|
16012
|
+
)
|
16005
16013
|
end
|
16006
16014
|
|
16007
16015
|
rule(:juniper_ethernet_options) do
|
@@ -16538,7 +16546,7 @@ rule(:juniper_forwarding_options) do
|
|
16538
16546
|
).as(:oneline),
|
16539
16547
|
"routing-instance" arg
|
16540
16548
|
)
|
16541
|
-
)
|
16549
|
+
),
|
16542
16550
|
"maximum-hop-count" arg,
|
16543
16551
|
"minimum-wait-time" arg,
|
16544
16552
|
"client-response-ttl" arg,
|
@@ -16558,7 +16566,7 @@ rule(:juniper_forwarding_options) do
|
|
16558
16566
|
).as(:oneline),
|
16559
16567
|
"routing-instance" arg
|
16560
16568
|
)
|
16561
|
-
)
|
16569
|
+
),
|
16562
16570
|
"maximum-hop-count" arg,
|
16563
16571
|
"minimum-wait-time" arg,
|
16564
16572
|
"client-response-ttl" arg,
|
@@ -16764,7 +16772,7 @@ rule(:juniper_logical_system) do
|
|
16764
16772
|
)
|
16765
16773
|
)
|
16766
16774
|
),
|
16767
|
-
"instance"
|
16775
|
+
"instance"
|
16768
16776
|
)
|
16769
16777
|
)
|
16770
16778
|
)
|
@@ -17457,7 +17465,7 @@ rule(:juniper_logical_system) do
|
|
17457
17465
|
)
|
17458
17466
|
)
|
17459
17467
|
)
|
17460
|
-
)
|
17468
|
+
),
|
17461
17469
|
"ftp" (
|
17462
17470
|
sc(
|
17463
17471
|
"disable",
|
@@ -17520,7 +17528,7 @@ rule(:juniper_logical_system) do
|
|
17520
17528
|
)
|
17521
17529
|
)
|
17522
17530
|
)
|
17523
|
-
)
|
17531
|
+
),
|
17524
17532
|
"mgcp" (
|
17525
17533
|
sc(
|
17526
17534
|
"disable",
|
@@ -17564,7 +17572,7 @@ rule(:juniper_logical_system) do
|
|
17564
17572
|
)
|
17565
17573
|
)
|
17566
17574
|
)
|
17567
|
-
)
|
17575
|
+
),
|
17568
17576
|
"msrpc" (
|
17569
17577
|
sc(
|
17570
17578
|
"disable",
|
@@ -17665,7 +17673,7 @@ rule(:juniper_logical_system) do
|
|
17665
17673
|
)
|
17666
17674
|
)
|
17667
17675
|
)
|
17668
|
-
)
|
17676
|
+
),
|
17669
17677
|
"sip" (
|
17670
17678
|
sc(
|
17671
17679
|
"disable",
|
@@ -17717,7 +17725,7 @@ rule(:juniper_logical_system) do
|
|
17717
17725
|
)
|
17718
17726
|
)
|
17719
17727
|
)
|
17720
|
-
)
|
17728
|
+
),
|
17721
17729
|
"sql" (
|
17722
17730
|
sc(
|
17723
17731
|
"disable",
|
@@ -18777,7 +18785,7 @@ rule(:juniper_policy_options) do
|
|
18777
18785
|
community_count_type
|
18778
18786
|
)
|
18779
18787
|
)
|
18780
|
-
)
|
18788
|
+
),
|
18781
18789
|
"to" (
|
18782
18790
|
sc(
|
18783
18791
|
"instance" arg,
|
@@ -18819,7 +18827,7 @@ rule(:juniper_policy_options) do
|
|
18819
18827
|
policy_algebra
|
18820
18828
|
)
|
18821
18829
|
)
|
18822
|
-
)
|
18830
|
+
),
|
18823
18831
|
"then" (
|
18824
18832
|
sc(
|
18825
18833
|
"metric" (
|
@@ -18840,10 +18848,10 @@ rule(:juniper_policy_options) do
|
|
18840
18848
|
).as(:oneline),
|
18841
18849
|
"expression" (
|
18842
18850
|
metric_expression_type
|
18843
|
-
)
|
18851
|
+
)
|
18844
18852
|
)
|
18845
18853
|
)
|
18846
|
-
)
|
18854
|
+
),
|
18847
18855
|
"metric2" (
|
18848
18856
|
sc(
|
18849
18857
|
c(
|
@@ -18852,7 +18860,7 @@ rule(:juniper_policy_options) do
|
|
18852
18860
|
"subtract" arg
|
18853
18861
|
)
|
18854
18862
|
)
|
18855
|
-
)
|
18863
|
+
),
|
18856
18864
|
"metric3" (
|
18857
18865
|
sc(
|
18858
18866
|
c(
|
@@ -18861,7 +18869,7 @@ rule(:juniper_policy_options) do
|
|
18861
18869
|
"subtract" arg
|
18862
18870
|
)
|
18863
18871
|
)
|
18864
|
-
)
|
18872
|
+
),
|
18865
18873
|
"metric4" (
|
18866
18874
|
sc(
|
18867
18875
|
c(
|
@@ -18870,7 +18878,7 @@ rule(:juniper_policy_options) do
|
|
18870
18878
|
"subtract" arg
|
18871
18879
|
)
|
18872
18880
|
)
|
18873
|
-
)
|
18881
|
+
),
|
18874
18882
|
"tag" (
|
18875
18883
|
sc(
|
18876
18884
|
c(
|
@@ -18879,7 +18887,7 @@ rule(:juniper_policy_options) do
|
|
18879
18887
|
"subtract" arg
|
18880
18888
|
)
|
18881
18889
|
)
|
18882
|
-
)
|
18890
|
+
),
|
18883
18891
|
"tag2" (
|
18884
18892
|
sc(
|
18885
18893
|
c(
|
@@ -18888,7 +18896,7 @@ rule(:juniper_policy_options) do
|
|
18888
18896
|
"subtract" arg
|
18889
18897
|
)
|
18890
18898
|
)
|
18891
|
-
)
|
18899
|
+
),
|
18892
18900
|
"preference" (
|
18893
18901
|
sc(
|
18894
18902
|
c(
|
@@ -18897,7 +18905,7 @@ rule(:juniper_policy_options) do
|
|
18897
18905
|
"subtract" arg
|
18898
18906
|
)
|
18899
18907
|
)
|
18900
|
-
)
|
18908
|
+
),
|
18901
18909
|
"preference2" (
|
18902
18910
|
sc(
|
18903
18911
|
c(
|
@@ -18906,7 +18914,7 @@ rule(:juniper_policy_options) do
|
|
18906
18914
|
"subtract" arg
|
18907
18915
|
)
|
18908
18916
|
)
|
18909
|
-
)
|
18917
|
+
),
|
18910
18918
|
"color" (
|
18911
18919
|
sc(
|
18912
18920
|
c(
|
@@ -18915,7 +18923,7 @@ rule(:juniper_policy_options) do
|
|
18915
18923
|
"subtract" arg
|
18916
18924
|
)
|
18917
18925
|
)
|
18918
|
-
)
|
18926
|
+
),
|
18919
18927
|
"color2" (
|
18920
18928
|
sc(
|
18921
18929
|
c(
|
@@ -18924,7 +18932,7 @@ rule(:juniper_policy_options) do
|
|
18924
18932
|
"subtract" arg
|
18925
18933
|
)
|
18926
18934
|
)
|
18927
|
-
)
|
18935
|
+
),
|
18928
18936
|
"local-preference" (
|
18929
18937
|
sc(
|
18930
18938
|
c(
|
@@ -18933,7 +18941,7 @@ rule(:juniper_policy_options) do
|
|
18933
18941
|
"subtract" arg
|
18934
18942
|
)
|
18935
18943
|
)
|
18936
|
-
)
|
18944
|
+
),
|
18937
18945
|
"priority" arg,
|
18938
18946
|
"label-allocation" arg,
|
18939
18947
|
"origin" arg,
|
@@ -19060,7 +19068,7 @@ rule(:juniper_policy_options) do
|
|
19060
19068
|
"reject"
|
19061
19069
|
)
|
19062
19070
|
)
|
19063
|
-
)
|
19071
|
+
)
|
19064
19072
|
)
|
19065
19073
|
),
|
19066
19074
|
"from" (
|
@@ -19140,7 +19148,7 @@ rule(:juniper_policy_options) do
|
|
19140
19148
|
community_count_type
|
19141
19149
|
)
|
19142
19150
|
)
|
19143
|
-
)
|
19151
|
+
),
|
19144
19152
|
"to" (
|
19145
19153
|
sc(
|
19146
19154
|
"instance" arg,
|
@@ -19182,7 +19190,7 @@ rule(:juniper_policy_options) do
|
|
19182
19190
|
policy_algebra
|
19183
19191
|
)
|
19184
19192
|
)
|
19185
|
-
)
|
19193
|
+
),
|
19186
19194
|
"then" (
|
19187
19195
|
sc(
|
19188
19196
|
"metric" (
|
@@ -19203,10 +19211,10 @@ rule(:juniper_policy_options) do
|
|
19203
19211
|
).as(:oneline),
|
19204
19212
|
"expression" (
|
19205
19213
|
metric_expression_type
|
19206
|
-
)
|
19214
|
+
)
|
19207
19215
|
)
|
19208
19216
|
)
|
19209
|
-
)
|
19217
|
+
),
|
19210
19218
|
"metric2" (
|
19211
19219
|
sc(
|
19212
19220
|
c(
|
@@ -19215,7 +19223,7 @@ rule(:juniper_policy_options) do
|
|
19215
19223
|
"subtract" arg
|
19216
19224
|
)
|
19217
19225
|
)
|
19218
|
-
)
|
19226
|
+
),
|
19219
19227
|
"metric3" (
|
19220
19228
|
sc(
|
19221
19229
|
c(
|
@@ -19224,7 +19232,7 @@ rule(:juniper_policy_options) do
|
|
19224
19232
|
"subtract" arg
|
19225
19233
|
)
|
19226
19234
|
)
|
19227
|
-
)
|
19235
|
+
),
|
19228
19236
|
"metric4" (
|
19229
19237
|
sc(
|
19230
19238
|
c(
|
@@ -19233,7 +19241,7 @@ rule(:juniper_policy_options) do
|
|
19233
19241
|
"subtract" arg
|
19234
19242
|
)
|
19235
19243
|
)
|
19236
|
-
)
|
19244
|
+
),
|
19237
19245
|
"tag" (
|
19238
19246
|
sc(
|
19239
19247
|
c(
|
@@ -19242,7 +19250,7 @@ rule(:juniper_policy_options) do
|
|
19242
19250
|
"subtract" arg
|
19243
19251
|
)
|
19244
19252
|
)
|
19245
|
-
)
|
19253
|
+
),
|
19246
19254
|
"tag2" (
|
19247
19255
|
sc(
|
19248
19256
|
c(
|
@@ -19251,7 +19259,7 @@ rule(:juniper_policy_options) do
|
|
19251
19259
|
"subtract" arg
|
19252
19260
|
)
|
19253
19261
|
)
|
19254
|
-
)
|
19262
|
+
),
|
19255
19263
|
"preference" (
|
19256
19264
|
sc(
|
19257
19265
|
c(
|
@@ -19260,7 +19268,7 @@ rule(:juniper_policy_options) do
|
|
19260
19268
|
"subtract" arg
|
19261
19269
|
)
|
19262
19270
|
)
|
19263
|
-
)
|
19271
|
+
),
|
19264
19272
|
"preference2" (
|
19265
19273
|
sc(
|
19266
19274
|
c(
|
@@ -19269,7 +19277,7 @@ rule(:juniper_policy_options) do
|
|
19269
19277
|
"subtract" arg
|
19270
19278
|
)
|
19271
19279
|
)
|
19272
|
-
)
|
19280
|
+
),
|
19273
19281
|
"color" (
|
19274
19282
|
sc(
|
19275
19283
|
c(
|
@@ -19278,7 +19286,7 @@ rule(:juniper_policy_options) do
|
|
19278
19286
|
"subtract" arg
|
19279
19287
|
)
|
19280
19288
|
)
|
19281
|
-
)
|
19289
|
+
),
|
19282
19290
|
"color2" (
|
19283
19291
|
sc(
|
19284
19292
|
c(
|
@@ -19287,7 +19295,7 @@ rule(:juniper_policy_options) do
|
|
19287
19295
|
"subtract" arg
|
19288
19296
|
)
|
19289
19297
|
)
|
19290
|
-
)
|
19298
|
+
),
|
19291
19299
|
"local-preference" (
|
19292
19300
|
sc(
|
19293
19301
|
c(
|
@@ -19296,7 +19304,7 @@ rule(:juniper_policy_options) do
|
|
19296
19304
|
"subtract" arg
|
19297
19305
|
)
|
19298
19306
|
)
|
19299
|
-
)
|
19307
|
+
),
|
19300
19308
|
"priority" arg,
|
19301
19309
|
"label-allocation" arg,
|
19302
19310
|
"origin" arg,
|
@@ -19423,7 +19431,7 @@ rule(:juniper_policy_options) do
|
|
19423
19431
|
"reject"
|
19424
19432
|
)
|
19425
19433
|
)
|
19426
|
-
)
|
19434
|
+
)
|
19427
19435
|
)
|
19428
19436
|
),
|
19429
19437
|
"community" arg (
|
@@ -19431,12 +19439,12 @@ rule(:juniper_policy_options) do
|
|
19431
19439
|
"invert-match",
|
19432
19440
|
"members" arg
|
19433
19441
|
)
|
19434
|
-
)
|
19442
|
+
),
|
19435
19443
|
"as-path" arg (
|
19436
19444
|
sc(
|
19437
19445
|
"path" arg
|
19438
19446
|
)
|
19439
|
-
)
|
19447
|
+
),
|
19440
19448
|
"as-path-group" arg (
|
19441
19449
|
sc(
|
19442
19450
|
"as-path" arg (
|
@@ -19471,7 +19479,7 @@ rule(:juniper_policy_options) do
|
|
19471
19479
|
)
|
19472
19480
|
)
|
19473
19481
|
)
|
19474
|
-
)
|
19482
|
+
),
|
19475
19483
|
"application-maps" (
|
19476
19484
|
application_map_object
|
19477
19485
|
)
|
@@ -19537,10 +19545,10 @@ rule(:control_prefix_list_filter_type) do
|
|
19537
19545
|
).as(:oneline),
|
19538
19546
|
"expression" (
|
19539
19547
|
metric_expression_type
|
19540
|
-
)
|
19548
|
+
)
|
19541
19549
|
)
|
19542
19550
|
)
|
19543
|
-
)
|
19551
|
+
),
|
19544
19552
|
"metric2" (
|
19545
19553
|
sc(
|
19546
19554
|
c(
|
@@ -19549,7 +19557,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19549
19557
|
"subtract" arg
|
19550
19558
|
)
|
19551
19559
|
)
|
19552
|
-
)
|
19560
|
+
),
|
19553
19561
|
"metric3" (
|
19554
19562
|
sc(
|
19555
19563
|
c(
|
@@ -19558,7 +19566,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19558
19566
|
"subtract" arg
|
19559
19567
|
)
|
19560
19568
|
)
|
19561
|
-
)
|
19569
|
+
),
|
19562
19570
|
"metric4" (
|
19563
19571
|
sc(
|
19564
19572
|
c(
|
@@ -19567,7 +19575,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19567
19575
|
"subtract" arg
|
19568
19576
|
)
|
19569
19577
|
)
|
19570
|
-
)
|
19578
|
+
),
|
19571
19579
|
"tag" (
|
19572
19580
|
sc(
|
19573
19581
|
c(
|
@@ -19576,7 +19584,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19576
19584
|
"subtract" arg
|
19577
19585
|
)
|
19578
19586
|
)
|
19579
|
-
)
|
19587
|
+
),
|
19580
19588
|
"tag2" (
|
19581
19589
|
sc(
|
19582
19590
|
c(
|
@@ -19585,7 +19593,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19585
19593
|
"subtract" arg
|
19586
19594
|
)
|
19587
19595
|
)
|
19588
|
-
)
|
19596
|
+
),
|
19589
19597
|
"preference" (
|
19590
19598
|
sc(
|
19591
19599
|
c(
|
@@ -19594,7 +19602,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19594
19602
|
"subtract" arg
|
19595
19603
|
)
|
19596
19604
|
)
|
19597
|
-
)
|
19605
|
+
),
|
19598
19606
|
"preference2" (
|
19599
19607
|
sc(
|
19600
19608
|
c(
|
@@ -19603,7 +19611,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19603
19611
|
"subtract" arg
|
19604
19612
|
)
|
19605
19613
|
)
|
19606
|
-
)
|
19614
|
+
),
|
19607
19615
|
"color" (
|
19608
19616
|
sc(
|
19609
19617
|
c(
|
@@ -19612,7 +19620,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19612
19620
|
"subtract" arg
|
19613
19621
|
)
|
19614
19622
|
)
|
19615
|
-
)
|
19623
|
+
),
|
19616
19624
|
"color2" (
|
19617
19625
|
sc(
|
19618
19626
|
c(
|
@@ -19621,7 +19629,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19621
19629
|
"subtract" arg
|
19622
19630
|
)
|
19623
19631
|
)
|
19624
|
-
)
|
19632
|
+
),
|
19625
19633
|
"local-preference" (
|
19626
19634
|
sc(
|
19627
19635
|
c(
|
@@ -19630,7 +19638,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19630
19638
|
"subtract" arg
|
19631
19639
|
)
|
19632
19640
|
)
|
19633
|
-
)
|
19641
|
+
),
|
19634
19642
|
"priority" arg,
|
19635
19643
|
"label-allocation" arg,
|
19636
19644
|
"origin" arg,
|
@@ -19757,7 +19765,7 @@ rule(:control_prefix_list_filter_type) do
|
|
19757
19765
|
"reject"
|
19758
19766
|
)
|
19759
19767
|
)
|
19760
|
-
)
|
19768
|
+
)
|
19761
19769
|
end
|
19762
19770
|
|
19763
19771
|
rule(:control_prefix_list_type) do
|
@@ -19811,10 +19819,10 @@ rule(:control_route_filter_type) do
|
|
19811
19819
|
).as(:oneline),
|
19812
19820
|
"expression" (
|
19813
19821
|
metric_expression_type
|
19814
|
-
)
|
19822
|
+
)
|
19815
19823
|
)
|
19816
19824
|
)
|
19817
|
-
)
|
19825
|
+
),
|
19818
19826
|
"metric2" (
|
19819
19827
|
sc(
|
19820
19828
|
c(
|
@@ -19823,7 +19831,7 @@ rule(:control_route_filter_type) do
|
|
19823
19831
|
"subtract" arg
|
19824
19832
|
)
|
19825
19833
|
)
|
19826
|
-
)
|
19834
|
+
),
|
19827
19835
|
"metric3" (
|
19828
19836
|
sc(
|
19829
19837
|
c(
|
@@ -19832,7 +19840,7 @@ rule(:control_route_filter_type) do
|
|
19832
19840
|
"subtract" arg
|
19833
19841
|
)
|
19834
19842
|
)
|
19835
|
-
)
|
19843
|
+
),
|
19836
19844
|
"metric4" (
|
19837
19845
|
sc(
|
19838
19846
|
c(
|
@@ -19841,7 +19849,7 @@ rule(:control_route_filter_type) do
|
|
19841
19849
|
"subtract" arg
|
19842
19850
|
)
|
19843
19851
|
)
|
19844
|
-
)
|
19852
|
+
),
|
19845
19853
|
"tag" (
|
19846
19854
|
sc(
|
19847
19855
|
c(
|
@@ -19850,7 +19858,7 @@ rule(:control_route_filter_type) do
|
|
19850
19858
|
"subtract" arg
|
19851
19859
|
)
|
19852
19860
|
)
|
19853
|
-
)
|
19861
|
+
),
|
19854
19862
|
"tag2" (
|
19855
19863
|
sc(
|
19856
19864
|
c(
|
@@ -19859,7 +19867,7 @@ rule(:control_route_filter_type) do
|
|
19859
19867
|
"subtract" arg
|
19860
19868
|
)
|
19861
19869
|
)
|
19862
|
-
)
|
19870
|
+
),
|
19863
19871
|
"preference" (
|
19864
19872
|
sc(
|
19865
19873
|
c(
|
@@ -19868,7 +19876,7 @@ rule(:control_route_filter_type) do
|
|
19868
19876
|
"subtract" arg
|
19869
19877
|
)
|
19870
19878
|
)
|
19871
|
-
)
|
19879
|
+
),
|
19872
19880
|
"preference2" (
|
19873
19881
|
sc(
|
19874
19882
|
c(
|
@@ -19877,7 +19885,7 @@ rule(:control_route_filter_type) do
|
|
19877
19885
|
"subtract" arg
|
19878
19886
|
)
|
19879
19887
|
)
|
19880
|
-
)
|
19888
|
+
),
|
19881
19889
|
"color" (
|
19882
19890
|
sc(
|
19883
19891
|
c(
|
@@ -19886,7 +19894,7 @@ rule(:control_route_filter_type) do
|
|
19886
19894
|
"subtract" arg
|
19887
19895
|
)
|
19888
19896
|
)
|
19889
|
-
)
|
19897
|
+
),
|
19890
19898
|
"color2" (
|
19891
19899
|
sc(
|
19892
19900
|
c(
|
@@ -19895,7 +19903,7 @@ rule(:control_route_filter_type) do
|
|
19895
19903
|
"subtract" arg
|
19896
19904
|
)
|
19897
19905
|
)
|
19898
|
-
)
|
19906
|
+
),
|
19899
19907
|
"local-preference" (
|
19900
19908
|
sc(
|
19901
19909
|
c(
|
@@ -19904,7 +19912,7 @@ rule(:control_route_filter_type) do
|
|
19904
19912
|
"subtract" arg
|
19905
19913
|
)
|
19906
19914
|
)
|
19907
|
-
)
|
19915
|
+
),
|
19908
19916
|
"priority" arg,
|
19909
19917
|
"label-allocation" arg,
|
19910
19918
|
"origin" arg,
|
@@ -20031,7 +20039,7 @@ rule(:control_route_filter_type) do
|
|
20031
20039
|
"reject"
|
20032
20040
|
)
|
20033
20041
|
)
|
20034
|
-
)
|
20042
|
+
)
|
20035
20043
|
end
|
20036
20044
|
|
20037
20045
|
rule(:control_source_address_filter_type) do
|
@@ -20078,10 +20086,10 @@ rule(:control_source_address_filter_type) do
|
|
20078
20086
|
).as(:oneline),
|
20079
20087
|
"expression" (
|
20080
20088
|
metric_expression_type
|
20081
|
-
)
|
20089
|
+
)
|
20082
20090
|
)
|
20083
20091
|
)
|
20084
|
-
)
|
20092
|
+
),
|
20085
20093
|
"metric2" (
|
20086
20094
|
sc(
|
20087
20095
|
c(
|
@@ -20090,7 +20098,7 @@ rule(:control_source_address_filter_type) do
|
|
20090
20098
|
"subtract" arg
|
20091
20099
|
)
|
20092
20100
|
)
|
20093
|
-
)
|
20101
|
+
),
|
20094
20102
|
"metric3" (
|
20095
20103
|
sc(
|
20096
20104
|
c(
|
@@ -20099,7 +20107,7 @@ rule(:control_source_address_filter_type) do
|
|
20099
20107
|
"subtract" arg
|
20100
20108
|
)
|
20101
20109
|
)
|
20102
|
-
)
|
20110
|
+
),
|
20103
20111
|
"metric4" (
|
20104
20112
|
sc(
|
20105
20113
|
c(
|
@@ -20108,7 +20116,7 @@ rule(:control_source_address_filter_type) do
|
|
20108
20116
|
"subtract" arg
|
20109
20117
|
)
|
20110
20118
|
)
|
20111
|
-
)
|
20119
|
+
),
|
20112
20120
|
"tag" (
|
20113
20121
|
sc(
|
20114
20122
|
c(
|
@@ -20117,7 +20125,7 @@ rule(:control_source_address_filter_type) do
|
|
20117
20125
|
"subtract" arg
|
20118
20126
|
)
|
20119
20127
|
)
|
20120
|
-
)
|
20128
|
+
),
|
20121
20129
|
"tag2" (
|
20122
20130
|
sc(
|
20123
20131
|
c(
|
@@ -20126,7 +20134,7 @@ rule(:control_source_address_filter_type) do
|
|
20126
20134
|
"subtract" arg
|
20127
20135
|
)
|
20128
20136
|
)
|
20129
|
-
)
|
20137
|
+
),
|
20130
20138
|
"preference" (
|
20131
20139
|
sc(
|
20132
20140
|
c(
|
@@ -20135,7 +20143,7 @@ rule(:control_source_address_filter_type) do
|
|
20135
20143
|
"subtract" arg
|
20136
20144
|
)
|
20137
20145
|
)
|
20138
|
-
)
|
20146
|
+
),
|
20139
20147
|
"preference2" (
|
20140
20148
|
sc(
|
20141
20149
|
c(
|
@@ -20144,7 +20152,7 @@ rule(:control_source_address_filter_type) do
|
|
20144
20152
|
"subtract" arg
|
20145
20153
|
)
|
20146
20154
|
)
|
20147
|
-
)
|
20155
|
+
),
|
20148
20156
|
"color" (
|
20149
20157
|
sc(
|
20150
20158
|
c(
|
@@ -20153,7 +20161,7 @@ rule(:control_source_address_filter_type) do
|
|
20153
20161
|
"subtract" arg
|
20154
20162
|
)
|
20155
20163
|
)
|
20156
|
-
)
|
20164
|
+
),
|
20157
20165
|
"color2" (
|
20158
20166
|
sc(
|
20159
20167
|
c(
|
@@ -20162,7 +20170,7 @@ rule(:control_source_address_filter_type) do
|
|
20162
20170
|
"subtract" arg
|
20163
20171
|
)
|
20164
20172
|
)
|
20165
|
-
)
|
20173
|
+
),
|
20166
20174
|
"local-preference" (
|
20167
20175
|
sc(
|
20168
20176
|
c(
|
@@ -20171,7 +20179,7 @@ rule(:control_source_address_filter_type) do
|
|
20171
20179
|
"subtract" arg
|
20172
20180
|
)
|
20173
20181
|
)
|
20174
|
-
)
|
20182
|
+
),
|
20175
20183
|
"priority" arg,
|
20176
20184
|
"label-allocation" arg,
|
20177
20185
|
"origin" arg,
|
@@ -20298,7 +20306,7 @@ rule(:control_source_address_filter_type) do
|
|
20298
20306
|
"reject"
|
20299
20307
|
)
|
20300
20308
|
)
|
20301
|
-
)
|
20309
|
+
)
|
20302
20310
|
end
|
20303
20311
|
|
20304
20312
|
rule(:juniper_port_mirror_options) do
|
@@ -20345,7 +20353,7 @@ rule(:juniper_port_mirror_options) do
|
|
20345
20353
|
)
|
20346
20354
|
)
|
20347
20355
|
),
|
20348
|
-
"instance"
|
20356
|
+
"instance"
|
20349
20357
|
)
|
20350
20358
|
end
|
20351
20359
|
|
@@ -20643,7 +20651,7 @@ rule(:juniper_protocols) do
|
|
20643
20651
|
"maximum-helper-restart-time" arg,
|
20644
20652
|
"maximum-helper-recovery-time" arg
|
20645
20653
|
)
|
20646
|
-
)
|
20654
|
+
),
|
20647
20655
|
"tunnel-services" (
|
20648
20656
|
sc(
|
20649
20657
|
"devices" (
|
@@ -20665,12 +20673,12 @@ rule(:juniper_protocols) do
|
|
20665
20673
|
sc(
|
20666
20674
|
"optimize-timer" arg
|
20667
20675
|
)
|
20668
|
-
)
|
20676
|
+
),
|
20669
20677
|
"load-balance" (
|
20670
20678
|
sc(
|
20671
20679
|
"bandwidth"
|
20672
20680
|
)
|
20673
|
-
)
|
20681
|
+
),
|
20674
20682
|
"traceoptions" (
|
20675
20683
|
sc(
|
20676
20684
|
"file" (
|
@@ -20701,9 +20709,9 @@ rule(:juniper_protocols) do
|
|
20701
20709
|
sc(
|
20702
20710
|
"cleanup-timer" arg
|
20703
20711
|
)
|
20704
|
-
)
|
20712
|
+
)
|
20705
20713
|
)
|
20706
|
-
)
|
20714
|
+
),
|
20707
20715
|
"interface" arg (
|
20708
20716
|
sc(
|
20709
20717
|
c(
|
@@ -20719,7 +20727,7 @@ rule(:juniper_protocols) do
|
|
20719
20727
|
"hello-interval" arg,
|
20720
20728
|
"subscription" (
|
20721
20729
|
subscription_type
|
20722
|
-
)
|
20730
|
+
),
|
20723
20731
|
"bandwidth" arg,
|
20724
20732
|
"update-threshold" arg,
|
20725
20733
|
"link-protection" (
|
@@ -20729,7 +20737,7 @@ rule(:juniper_protocols) do
|
|
20729
20737
|
),
|
20730
20738
|
"bandwidth" (
|
20731
20739
|
bandwidth_type
|
20732
|
-
)
|
20740
|
+
),
|
20733
20741
|
"max-bypasses" arg,
|
20734
20742
|
"subscription" arg,
|
20735
20743
|
"no-node-protection",
|
@@ -20754,7 +20762,7 @@ rule(:juniper_protocols) do
|
|
20754
20762
|
).as(:oneline),
|
20755
20763
|
"admin-group" (
|
20756
20764
|
admin_group_include_exclude
|
20757
|
-
)
|
20765
|
+
),
|
20758
20766
|
"bypass" arg (
|
20759
20767
|
sc(
|
20760
20768
|
"to" (
|
@@ -20762,7 +20770,7 @@ rule(:juniper_protocols) do
|
|
20762
20770
|
),
|
20763
20771
|
"bandwidth" (
|
20764
20772
|
bandwidth_type
|
20765
|
-
)
|
20773
|
+
),
|
20766
20774
|
"description" arg,
|
20767
20775
|
"priority" (
|
20768
20776
|
sc(
|
@@ -20784,7 +20792,7 @@ rule(:juniper_protocols) do
|
|
20784
20792
|
).as(:oneline),
|
20785
20793
|
"admin-group" (
|
20786
20794
|
admin_group_include_exclude
|
20787
|
-
)
|
20795
|
+
)
|
20788
20796
|
)
|
20789
20797
|
)
|
20790
20798
|
)
|
@@ -20813,7 +20821,7 @@ rule(:juniper_protocols) do
|
|
20813
20821
|
),
|
20814
20822
|
"match-criteria" (
|
20815
20823
|
lsp_set_match_type
|
20816
|
-
)
|
20824
|
+
),
|
20817
20825
|
"traceoptions" (
|
20818
20826
|
sc(
|
20819
20827
|
"file" (
|
@@ -20845,7 +20853,7 @@ rule(:juniper_protocols) do
|
|
20845
20853
|
sc(
|
20846
20854
|
"mtu-signaling"
|
20847
20855
|
)
|
20848
|
-
)
|
20856
|
+
)
|
20849
20857
|
)
|
20850
20858
|
),
|
20851
20859
|
"diffserv-te" (
|
@@ -20891,7 +20899,7 @@ rule(:juniper_protocols) do
|
|
20891
20899
|
"loss-priority-low"
|
20892
20900
|
)
|
20893
20901
|
)
|
20894
|
-
)
|
20902
|
+
)
|
20895
20903
|
)
|
20896
20904
|
),
|
20897
20905
|
"statistics" (
|
@@ -20934,7 +20942,7 @@ rule(:juniper_protocols) do
|
|
20934
20942
|
sc(
|
20935
20943
|
"group-value" arg
|
20936
20944
|
)
|
20937
|
-
)
|
20945
|
+
),
|
20938
20946
|
"advertisement-hold-time" arg,
|
20939
20947
|
"rsvp-error-hold-time" arg,
|
20940
20948
|
"optimize-aggressive",
|
@@ -20950,7 +20958,7 @@ rule(:juniper_protocols) do
|
|
20950
20958
|
"mib-mpls-show-p2mp",
|
20951
20959
|
"bandwidth" (
|
20952
20960
|
bandwidth_type
|
20953
|
-
)
|
20961
|
+
),
|
20954
20962
|
"class-of-service" arg,
|
20955
20963
|
"no-decrement-ttl",
|
20956
20964
|
"hop-limit" arg,
|
@@ -20970,13 +20978,13 @@ rule(:juniper_protocols) do
|
|
20970
20978
|
"exclude-srlg",
|
20971
20979
|
"admin-group" (
|
20972
20980
|
admin_group_include_exclude
|
20973
|
-
)
|
20981
|
+
),
|
20974
20982
|
"admin-group-extended" (
|
20975
20983
|
admin_group_include_exclude
|
20976
|
-
)
|
20984
|
+
),
|
20977
20985
|
"oam" (
|
20978
20986
|
periodic_oam
|
20979
|
-
)
|
20987
|
+
),
|
20980
20988
|
"label-switched-path" arg (
|
20981
20989
|
sc(
|
20982
20990
|
c(
|
@@ -21023,7 +21031,7 @@ rule(:juniper_protocols) do
|
|
21023
21031
|
"optimize-hold-dead-delay" arg,
|
21024
21032
|
"bandwidth" (
|
21025
21033
|
bandwidth_type
|
21026
|
-
)
|
21034
|
+
),
|
21027
21035
|
"class-of-service" arg,
|
21028
21036
|
"no-decrement-ttl",
|
21029
21037
|
"hop-limit" arg,
|
@@ -21043,13 +21051,13 @@ rule(:juniper_protocols) do
|
|
21043
21051
|
"exclude-srlg",
|
21044
21052
|
"admin-group" (
|
21045
21053
|
admin_group_include_exclude
|
21046
|
-
)
|
21054
|
+
),
|
21047
21055
|
"admin-group-extended" (
|
21048
21056
|
admin_group_include_exclude
|
21049
|
-
)
|
21057
|
+
),
|
21050
21058
|
"oam" (
|
21051
21059
|
periodic_oam
|
21052
|
-
)
|
21060
|
+
),
|
21053
21061
|
c(
|
21054
21062
|
"random",
|
21055
21063
|
"least-fill",
|
@@ -21110,7 +21118,7 @@ rule(:juniper_protocols) do
|
|
21110
21118
|
sc(
|
21111
21119
|
"bandwidth" (
|
21112
21120
|
bandwidth_type
|
21113
|
-
)
|
21121
|
+
),
|
21114
21122
|
"class-of-service" arg,
|
21115
21123
|
"no-decrement-ttl",
|
21116
21124
|
"hop-limit" arg,
|
@@ -21130,13 +21138,13 @@ rule(:juniper_protocols) do
|
|
21130
21138
|
"exclude-srlg",
|
21131
21139
|
"admin-group" (
|
21132
21140
|
admin_group_include_exclude
|
21133
|
-
)
|
21141
|
+
),
|
21134
21142
|
"admin-group-extended" (
|
21135
21143
|
admin_group_include_exclude
|
21136
|
-
)
|
21144
|
+
),
|
21137
21145
|
"oam" (
|
21138
21146
|
periodic_oam
|
21139
|
-
)
|
21147
|
+
),
|
21140
21148
|
"adaptive",
|
21141
21149
|
"select" arg
|
21142
21150
|
)
|
@@ -21145,7 +21153,7 @@ rule(:juniper_protocols) do
|
|
21145
21153
|
sc(
|
21146
21154
|
"bandwidth" (
|
21147
21155
|
bandwidth_type
|
21148
|
-
)
|
21156
|
+
),
|
21149
21157
|
"class-of-service" arg,
|
21150
21158
|
"no-decrement-ttl",
|
21151
21159
|
"hop-limit" arg,
|
@@ -21165,13 +21173,13 @@ rule(:juniper_protocols) do
|
|
21165
21173
|
"exclude-srlg",
|
21166
21174
|
"admin-group" (
|
21167
21175
|
admin_group_include_exclude
|
21168
|
-
)
|
21176
|
+
),
|
21169
21177
|
"admin-group-extended" (
|
21170
21178
|
admin_group_include_exclude
|
21171
|
-
)
|
21179
|
+
),
|
21172
21180
|
"oam" (
|
21173
21181
|
periodic_oam
|
21174
|
-
)
|
21182
|
+
),
|
21175
21183
|
"adaptive",
|
21176
21184
|
"select" arg
|
21177
21185
|
)
|
@@ -21425,10 +21433,10 @@ rule(:juniper_protocols) do
|
|
21425
21433
|
"no-install",
|
21426
21434
|
"downstream-paths-only"
|
21427
21435
|
)
|
21428
|
-
)
|
21436
|
+
),
|
21429
21437
|
"prefix-export-limit" arg
|
21430
21438
|
)
|
21431
|
-
)
|
21439
|
+
),
|
21432
21440
|
"spf-options" (
|
21433
21441
|
sc(
|
21434
21442
|
"delay" arg,
|
@@ -21443,14 +21451,14 @@ rule(:juniper_protocols) do
|
|
21443
21451
|
"no-install",
|
21444
21452
|
"downstream-paths-only"
|
21445
21453
|
)
|
21446
|
-
)
|
21454
|
+
),
|
21447
21455
|
"prefix-export-limit" arg,
|
21448
21456
|
"rib-group" arg,
|
21449
21457
|
"overload" (
|
21450
21458
|
sc(
|
21451
21459
|
"timeout" arg
|
21452
21460
|
)
|
21453
|
-
)
|
21461
|
+
),
|
21454
21462
|
"database-protection" (
|
21455
21463
|
sc(
|
21456
21464
|
"maximum-lsa" arg,
|
@@ -21460,7 +21468,7 @@ rule(:juniper_protocols) do
|
|
21460
21468
|
"ignore-time" arg,
|
21461
21469
|
"reset-time" arg
|
21462
21470
|
)
|
21463
|
-
)
|
21471
|
+
),
|
21464
21472
|
"graceful-restart" (
|
21465
21473
|
sc(
|
21466
21474
|
c(
|
@@ -21479,7 +21487,7 @@ rule(:juniper_protocols) do
|
|
21479
21487
|
),
|
21480
21488
|
"no-strict-lsa-checking"
|
21481
21489
|
)
|
21482
|
-
)
|
21490
|
+
),
|
21483
21491
|
"traffic-engineering" (
|
21484
21492
|
sc(
|
21485
21493
|
"no-topology",
|
@@ -21489,11 +21497,11 @@ rule(:juniper_protocols) do
|
|
21489
21497
|
sc(
|
21490
21498
|
"lsp-metric-into-summary"
|
21491
21499
|
)
|
21492
|
-
)
|
21500
|
+
),
|
21493
21501
|
"advertise-unnumbered-interfaces",
|
21494
21502
|
"credibility-protocol-preference"
|
21495
21503
|
)
|
21496
|
-
)
|
21504
|
+
),
|
21497
21505
|
"route-type-community" arg,
|
21498
21506
|
"domain-id" (
|
21499
21507
|
sc(
|
@@ -21526,7 +21534,7 @@ rule(:juniper_protocols) do
|
|
21526
21534
|
ipaddr
|
21527
21535
|
)
|
21528
21536
|
)
|
21529
|
-
)
|
21537
|
+
),
|
21530
21538
|
"area" arg (
|
21531
21539
|
sc(
|
21532
21540
|
c(
|
@@ -21545,7 +21553,7 @@ rule(:juniper_protocols) do
|
|
21545
21553
|
"metric-type" arg,
|
21546
21554
|
"type-7"
|
21547
21555
|
)
|
21548
|
-
)
|
21556
|
+
),
|
21549
21557
|
"summaries",
|
21550
21558
|
"no-summaries",
|
21551
21559
|
"area-range" arg (
|
@@ -21557,11 +21565,11 @@ rule(:juniper_protocols) do
|
|
21557
21565
|
"metric" arg,
|
21558
21566
|
"metric-type" arg
|
21559
21567
|
)
|
21560
|
-
)
|
21568
|
+
)
|
21561
21569
|
)
|
21562
|
-
)
|
21570
|
+
)
|
21563
21571
|
)
|
21564
|
-
)
|
21572
|
+
)
|
21565
21573
|
),
|
21566
21574
|
"area-range" arg (
|
21567
21575
|
sc(
|
@@ -21569,7 +21577,7 @@ rule(:juniper_protocols) do
|
|
21569
21577
|
"exact",
|
21570
21578
|
"override-metric" arg
|
21571
21579
|
)
|
21572
|
-
)
|
21580
|
+
),
|
21573
21581
|
"network-summary-export" (
|
21574
21582
|
policy_algebra
|
21575
21583
|
),
|
@@ -21621,7 +21629,7 @@ rule(:juniper_protocols) do
|
|
21621
21629
|
)
|
21622
21630
|
)
|
21623
21631
|
)
|
21624
|
-
)
|
21632
|
+
)
|
21625
21633
|
)
|
21626
21634
|
)
|
21627
21635
|
),
|
@@ -21645,9 +21653,9 @@ rule(:juniper_protocols) do
|
|
21645
21653
|
)
|
21646
21654
|
)
|
21647
21655
|
)
|
21648
|
-
)
|
21656
|
+
)
|
21649
21657
|
)
|
21650
|
-
)
|
21658
|
+
),
|
21651
21659
|
"interface" arg (
|
21652
21660
|
sc(
|
21653
21661
|
c(
|
@@ -21714,7 +21722,7 @@ rule(:juniper_protocols) do
|
|
21714
21722
|
)
|
21715
21723
|
)
|
21716
21724
|
)
|
21717
|
-
)
|
21725
|
+
),
|
21718
21726
|
"bfd-liveness-detection" (
|
21719
21727
|
sc(
|
21720
21728
|
"version" arg,
|
@@ -21777,7 +21785,7 @@ rule(:juniper_protocols) do
|
|
21777
21785
|
)
|
21778
21786
|
)
|
21779
21787
|
)
|
21780
|
-
)
|
21788
|
+
)
|
21781
21789
|
)
|
21782
21790
|
),
|
21783
21791
|
"peer-interface" arg (
|
@@ -21841,10 +21849,10 @@ rule(:juniper_protocols) do
|
|
21841
21849
|
"no-install",
|
21842
21850
|
"downstream-paths-only"
|
21843
21851
|
)
|
21844
|
-
)
|
21852
|
+
),
|
21845
21853
|
"prefix-export-limit" arg
|
21846
21854
|
)
|
21847
|
-
)
|
21855
|
+
),
|
21848
21856
|
"spf-options" (
|
21849
21857
|
sc(
|
21850
21858
|
"delay" arg,
|
@@ -21859,14 +21867,14 @@ rule(:juniper_protocols) do
|
|
21859
21867
|
"no-install",
|
21860
21868
|
"downstream-paths-only"
|
21861
21869
|
)
|
21862
|
-
)
|
21870
|
+
),
|
21863
21871
|
"prefix-export-limit" arg,
|
21864
21872
|
"rib-group" arg,
|
21865
21873
|
"overload" (
|
21866
21874
|
sc(
|
21867
21875
|
"timeout" arg
|
21868
21876
|
)
|
21869
|
-
)
|
21877
|
+
),
|
21870
21878
|
"database-protection" (
|
21871
21879
|
sc(
|
21872
21880
|
"maximum-lsa" arg,
|
@@ -21876,7 +21884,7 @@ rule(:juniper_protocols) do
|
|
21876
21884
|
"ignore-time" arg,
|
21877
21885
|
"reset-time" arg
|
21878
21886
|
)
|
21879
|
-
)
|
21887
|
+
),
|
21880
21888
|
"graceful-restart" (
|
21881
21889
|
sc(
|
21882
21890
|
c(
|
@@ -21895,7 +21903,7 @@ rule(:juniper_protocols) do
|
|
21895
21903
|
),
|
21896
21904
|
"no-strict-lsa-checking"
|
21897
21905
|
)
|
21898
|
-
)
|
21906
|
+
),
|
21899
21907
|
"traffic-engineering" (
|
21900
21908
|
sc(
|
21901
21909
|
"no-topology",
|
@@ -21905,11 +21913,11 @@ rule(:juniper_protocols) do
|
|
21905
21913
|
sc(
|
21906
21914
|
"lsp-metric-into-summary"
|
21907
21915
|
)
|
21908
|
-
)
|
21916
|
+
),
|
21909
21917
|
"advertise-unnumbered-interfaces",
|
21910
21918
|
"credibility-protocol-preference"
|
21911
21919
|
)
|
21912
|
-
)
|
21920
|
+
),
|
21913
21921
|
"route-type-community" arg,
|
21914
21922
|
"domain-id" (
|
21915
21923
|
sc(
|
@@ -21942,7 +21950,7 @@ rule(:juniper_protocols) do
|
|
21942
21950
|
ipaddr
|
21943
21951
|
)
|
21944
21952
|
)
|
21945
|
-
)
|
21953
|
+
),
|
21946
21954
|
"area" arg (
|
21947
21955
|
sc(
|
21948
21956
|
c(
|
@@ -21961,7 +21969,7 @@ rule(:juniper_protocols) do
|
|
21961
21969
|
"metric-type" arg,
|
21962
21970
|
"type-7"
|
21963
21971
|
)
|
21964
|
-
)
|
21972
|
+
),
|
21965
21973
|
"summaries",
|
21966
21974
|
"no-summaries",
|
21967
21975
|
"area-range" arg (
|
@@ -21973,11 +21981,11 @@ rule(:juniper_protocols) do
|
|
21973
21981
|
"metric" arg,
|
21974
21982
|
"metric-type" arg
|
21975
21983
|
)
|
21976
|
-
)
|
21984
|
+
)
|
21977
21985
|
)
|
21978
|
-
)
|
21986
|
+
)
|
21979
21987
|
)
|
21980
|
-
)
|
21988
|
+
)
|
21981
21989
|
),
|
21982
21990
|
"area-range" arg (
|
21983
21991
|
sc(
|
@@ -21985,7 +21993,7 @@ rule(:juniper_protocols) do
|
|
21985
21993
|
"exact",
|
21986
21994
|
"override-metric" arg
|
21987
21995
|
)
|
21988
|
-
)
|
21996
|
+
),
|
21989
21997
|
"network-summary-export" (
|
21990
21998
|
policy_algebra
|
21991
21999
|
),
|
@@ -22037,7 +22045,7 @@ rule(:juniper_protocols) do
|
|
22037
22045
|
)
|
22038
22046
|
)
|
22039
22047
|
)
|
22040
|
-
)
|
22048
|
+
)
|
22041
22049
|
)
|
22042
22050
|
)
|
22043
22051
|
),
|
@@ -22061,9 +22069,9 @@ rule(:juniper_protocols) do
|
|
22061
22069
|
)
|
22062
22070
|
)
|
22063
22071
|
)
|
22064
|
-
)
|
22072
|
+
)
|
22065
22073
|
)
|
22066
|
-
)
|
22074
|
+
),
|
22067
22075
|
"interface" arg (
|
22068
22076
|
sc(
|
22069
22077
|
c(
|
@@ -22130,7 +22138,7 @@ rule(:juniper_protocols) do
|
|
22130
22138
|
)
|
22131
22139
|
)
|
22132
22140
|
)
|
22133
|
-
)
|
22141
|
+
),
|
22134
22142
|
"bfd-liveness-detection" (
|
22135
22143
|
sc(
|
22136
22144
|
"version" arg,
|
@@ -22193,7 +22201,7 @@ rule(:juniper_protocols) do
|
|
22193
22201
|
)
|
22194
22202
|
)
|
22195
22203
|
)
|
22196
|
-
)
|
22204
|
+
)
|
22197
22205
|
)
|
22198
22206
|
),
|
22199
22207
|
"peer-interface" arg (
|
@@ -22346,7 +22354,7 @@ rule(:juniper_protocols) do
|
|
22346
22354
|
"no-revert",
|
22347
22355
|
"bandwidth" (
|
22348
22356
|
bandwidth_type
|
22349
|
-
)
|
22357
|
+
),
|
22350
22358
|
"pseudowire-status-tlv",
|
22351
22359
|
"switchover-delay" arg,
|
22352
22360
|
"revert-time" arg,
|
@@ -23086,6 +23094,9 @@ rule(:juniper_protocols) do
|
|
23086
23094
|
),
|
23087
23095
|
"mld-snooping" (
|
23088
23096
|
juniper_protocols_mld_snooping
|
23097
|
+
),
|
23098
|
+
"layer2-control" (
|
23099
|
+
juniper_protocols_layer2_control
|
23089
23100
|
)
|
23090
23101
|
)
|
23091
23102
|
end
|
@@ -23101,7 +23112,7 @@ rule(:admin_group_include_exclude) do
|
|
23101
23112
|
c(
|
23102
23113
|
"exclude" arg
|
23103
23114
|
)
|
23104
|
-
)
|
23115
|
+
)
|
23105
23116
|
end
|
23106
23117
|
|
23107
23118
|
rule(:bandwidth_type) do
|
@@ -23111,7 +23122,7 @@ rule(:bandwidth_type) do
|
|
23111
23122
|
"ct1" arg,
|
23112
23123
|
"ct2" arg,
|
23113
23124
|
"ct3" arg
|
23114
|
-
)
|
23125
|
+
)
|
23115
23126
|
end
|
23116
23127
|
|
23117
23128
|
rule(:civic_address_elements) do
|
@@ -23256,7 +23267,7 @@ rule(:juniper_protocols_bgp) do
|
|
23256
23267
|
"external-router-id",
|
23257
23268
|
"as-path-ignore"
|
23258
23269
|
)
|
23259
|
-
)
|
23270
|
+
),
|
23260
23271
|
"traceoptions" (
|
23261
23272
|
sc(
|
23262
23273
|
"file" (
|
@@ -23516,7 +23527,7 @@ rule(:juniper_protocols_bgp) do
|
|
23516
23527
|
)
|
23517
23528
|
)
|
23518
23529
|
)
|
23519
|
-
)
|
23530
|
+
),
|
23520
23531
|
"tcp-mss" arg,
|
23521
23532
|
"bfd-liveness-detection" (
|
23522
23533
|
sc(
|
@@ -23811,7 +23822,7 @@ rule(:juniper_protocols_bgp) do
|
|
23811
23822
|
)
|
23812
23823
|
)
|
23813
23824
|
)
|
23814
|
-
)
|
23825
|
+
),
|
23815
23826
|
"tcp-mss" arg,
|
23816
23827
|
"bfd-liveness-detection" (
|
23817
23828
|
sc(
|
@@ -24115,7 +24126,7 @@ rule(:juniper_protocols_bgp) do
|
|
24115
24126
|
)
|
24116
24127
|
)
|
24117
24128
|
)
|
24118
|
-
)
|
24129
|
+
),
|
24119
24130
|
"tcp-mss" arg,
|
24120
24131
|
"bfd-liveness-detection" (
|
24121
24132
|
sc(
|
@@ -24700,21 +24711,21 @@ rule(:juniper_protocols_isis) do
|
|
24700
24711
|
"holddown" arg,
|
24701
24712
|
"rapid-runs" arg
|
24702
24713
|
)
|
24703
|
-
)
|
24714
|
+
),
|
24704
24715
|
"topologies" (
|
24705
24716
|
sc(
|
24706
24717
|
"ipv4-multicast",
|
24707
24718
|
"ipv6-unicast",
|
24708
24719
|
"ipv6-multicast"
|
24709
24720
|
)
|
24710
|
-
)
|
24721
|
+
),
|
24711
24722
|
"overload" (
|
24712
24723
|
sc(
|
24713
24724
|
"timeout" arg,
|
24714
24725
|
"advertise-high-metrics",
|
24715
24726
|
"allow-route-leaking"
|
24716
24727
|
)
|
24717
|
-
)
|
24728
|
+
),
|
24718
24729
|
"traffic-engineering" (
|
24719
24730
|
sc(
|
24720
24731
|
c(
|
@@ -24737,7 +24748,7 @@ rule(:juniper_protocols_isis) do
|
|
24737
24748
|
)
|
24738
24749
|
)
|
24739
24750
|
)
|
24740
|
-
)
|
24751
|
+
),
|
24741
24752
|
"graceful-restart" (
|
24742
24753
|
sc(
|
24743
24754
|
c(
|
@@ -24765,7 +24776,7 @@ rule(:juniper_protocols_isis) do
|
|
24765
24776
|
"external-preference" arg,
|
24766
24777
|
"prefix-export-limit" arg
|
24767
24778
|
)
|
24768
|
-
)
|
24779
|
+
),
|
24769
24780
|
"interface" arg (
|
24770
24781
|
sc(
|
24771
24782
|
c(
|
@@ -24854,7 +24865,7 @@ rule(:juniper_protocols_isis) do
|
|
24854
24865
|
"priority" arg,
|
24855
24866
|
"passive"
|
24856
24867
|
)
|
24857
|
-
)
|
24868
|
+
)
|
24858
24869
|
)
|
24859
24870
|
),
|
24860
24871
|
"label-switched-path" arg (
|
@@ -24866,7 +24877,7 @@ rule(:juniper_protocols_isis) do
|
|
24866
24877
|
),
|
24867
24878
|
"metric" arg
|
24868
24879
|
)
|
24869
|
-
)
|
24880
|
+
)
|
24870
24881
|
)
|
24871
24882
|
),
|
24872
24883
|
"context-identifier" arg (
|
@@ -24877,7 +24888,7 @@ rule(:juniper_protocols_isis) do
|
|
24877
24888
|
"disable"
|
24878
24889
|
)
|
24879
24890
|
)
|
24880
|
-
)
|
24891
|
+
)
|
24881
24892
|
)
|
24882
24893
|
)
|
24883
24894
|
)
|
@@ -24923,7 +24934,7 @@ rule(:juniper_protocols_ldp) do
|
|
24923
24934
|
"reconnect-time" arg,
|
24924
24935
|
"maximum-neighbor-reconnect-time" arg
|
24925
24936
|
)
|
24926
|
-
)
|
24937
|
+
),
|
24927
24938
|
"preference" arg,
|
24928
24939
|
"no-forwarding",
|
24929
24940
|
"l2-smart-policy",
|
@@ -24994,7 +25005,7 @@ rule(:juniper_protocols_ldp) do
|
|
24994
25005
|
sc(
|
24995
25006
|
"holddown-interval" arg
|
24996
25007
|
)
|
24997
|
-
)
|
25008
|
+
),
|
24998
25009
|
"log-updown" (
|
24999
25010
|
sc(
|
25000
25011
|
"trap" (
|
@@ -25257,6 +25268,54 @@ rule(:juniper_protocols_mld_snooping) do
|
|
25257
25268
|
)
|
25258
25269
|
end
|
25259
25270
|
|
25271
|
+
rule(:juniper_protocols_layer2_control) do
|
25272
|
+
sc(
|
25273
|
+
"bpdu-block" (
|
25274
|
+
sc(
|
25275
|
+
"disable-timeout" arg,
|
25276
|
+
"interface" any
|
25277
|
+
)
|
25278
|
+
),
|
25279
|
+
"mac-rewrite" (
|
25280
|
+
"interface" arg (
|
25281
|
+
sc(
|
25282
|
+
"enable-all-ifl",
|
25283
|
+
"protocol" (
|
25284
|
+
sc(
|
25285
|
+
"cdp",
|
25286
|
+
"stp",
|
25287
|
+
"vtp",
|
25288
|
+
"pvstp"
|
25289
|
+
)
|
25290
|
+
)
|
25291
|
+
)
|
25292
|
+
)
|
25293
|
+
),
|
25294
|
+
"nonstop-bridging",
|
25295
|
+
"traceoptions" (
|
25296
|
+
sc(
|
25297
|
+
"file" (
|
25298
|
+
sc(
|
25299
|
+
"filename" arg,
|
25300
|
+
"size" arg,
|
25301
|
+
"files" arg,
|
25302
|
+
"world-readable",
|
25303
|
+
"no-world-readable",
|
25304
|
+
"match" (
|
25305
|
+
regular_expression
|
25306
|
+
)
|
25307
|
+
)
|
25308
|
+
).as(:oneline),
|
25309
|
+
"flag" ("all" | "kernel" | "change-events" | "kernel-detail" | "config-states" | "resource-usage" | "gres-events" | "select-events") (
|
25310
|
+
sc(
|
25311
|
+
"disable"
|
25312
|
+
)
|
25313
|
+
).as(:oneline)
|
25314
|
+
)
|
25315
|
+
)
|
25316
|
+
)
|
25317
|
+
end
|
25318
|
+
|
25260
25319
|
rule(:juniper_protocols_mobile_ipv4) do
|
25261
25320
|
sc(
|
25262
25321
|
"traceoptions" (
|
@@ -25550,10 +25609,10 @@ rule(:juniper_protocols_ospf) do
|
|
25550
25609
|
"no-install",
|
25551
25610
|
"downstream-paths-only"
|
25552
25611
|
)
|
25553
|
-
)
|
25612
|
+
),
|
25554
25613
|
"prefix-export-limit" arg
|
25555
25614
|
)
|
25556
|
-
)
|
25615
|
+
),
|
25557
25616
|
"spf-options" (
|
25558
25617
|
sc(
|
25559
25618
|
"delay" arg,
|
@@ -25568,14 +25627,14 @@ rule(:juniper_protocols_ospf) do
|
|
25568
25627
|
"no-install",
|
25569
25628
|
"downstream-paths-only"
|
25570
25629
|
)
|
25571
|
-
)
|
25630
|
+
),
|
25572
25631
|
"prefix-export-limit" arg,
|
25573
25632
|
"rib-group" arg,
|
25574
25633
|
"overload" (
|
25575
25634
|
sc(
|
25576
25635
|
"timeout" arg
|
25577
25636
|
)
|
25578
|
-
)
|
25637
|
+
),
|
25579
25638
|
"database-protection" (
|
25580
25639
|
sc(
|
25581
25640
|
"maximum-lsa" arg,
|
@@ -25585,7 +25644,7 @@ rule(:juniper_protocols_ospf) do
|
|
25585
25644
|
"ignore-time" arg,
|
25586
25645
|
"reset-time" arg
|
25587
25646
|
)
|
25588
|
-
)
|
25647
|
+
),
|
25589
25648
|
"graceful-restart" (
|
25590
25649
|
sc(
|
25591
25650
|
c(
|
@@ -25604,7 +25663,7 @@ rule(:juniper_protocols_ospf) do
|
|
25604
25663
|
),
|
25605
25664
|
"no-strict-lsa-checking"
|
25606
25665
|
)
|
25607
|
-
)
|
25666
|
+
),
|
25608
25667
|
"traffic-engineering" (
|
25609
25668
|
sc(
|
25610
25669
|
"no-topology",
|
@@ -25614,11 +25673,11 @@ rule(:juniper_protocols_ospf) do
|
|
25614
25673
|
sc(
|
25615
25674
|
"lsp-metric-into-summary"
|
25616
25675
|
)
|
25617
|
-
)
|
25676
|
+
),
|
25618
25677
|
"advertise-unnumbered-interfaces",
|
25619
25678
|
"credibility-protocol-preference"
|
25620
25679
|
)
|
25621
|
-
)
|
25680
|
+
),
|
25622
25681
|
"route-type-community" arg,
|
25623
25682
|
"domain-id" (
|
25624
25683
|
sc(
|
@@ -25651,7 +25710,7 @@ rule(:juniper_protocols_ospf) do
|
|
25651
25710
|
ipaddr
|
25652
25711
|
)
|
25653
25712
|
)
|
25654
|
-
)
|
25713
|
+
),
|
25655
25714
|
"area" arg (
|
25656
25715
|
sc(
|
25657
25716
|
c(
|
@@ -25670,7 +25729,7 @@ rule(:juniper_protocols_ospf) do
|
|
25670
25729
|
"metric-type" arg,
|
25671
25730
|
"type-7"
|
25672
25731
|
)
|
25673
|
-
)
|
25732
|
+
),
|
25674
25733
|
"summaries",
|
25675
25734
|
"no-summaries",
|
25676
25735
|
"area-range" arg (
|
@@ -25682,11 +25741,11 @@ rule(:juniper_protocols_ospf) do
|
|
25682
25741
|
"metric" arg,
|
25683
25742
|
"metric-type" arg
|
25684
25743
|
)
|
25685
|
-
)
|
25744
|
+
)
|
25686
25745
|
)
|
25687
|
-
)
|
25746
|
+
)
|
25688
25747
|
)
|
25689
|
-
)
|
25748
|
+
)
|
25690
25749
|
),
|
25691
25750
|
"area-range" arg (
|
25692
25751
|
sc(
|
@@ -25694,7 +25753,7 @@ rule(:juniper_protocols_ospf) do
|
|
25694
25753
|
"exact",
|
25695
25754
|
"override-metric" arg
|
25696
25755
|
)
|
25697
|
-
)
|
25756
|
+
),
|
25698
25757
|
"network-summary-export" (
|
25699
25758
|
policy_algebra
|
25700
25759
|
),
|
@@ -25746,7 +25805,7 @@ rule(:juniper_protocols_ospf) do
|
|
25746
25805
|
)
|
25747
25806
|
)
|
25748
25807
|
)
|
25749
|
-
)
|
25808
|
+
)
|
25750
25809
|
)
|
25751
25810
|
)
|
25752
25811
|
),
|
@@ -25770,9 +25829,9 @@ rule(:juniper_protocols_ospf) do
|
|
25770
25829
|
)
|
25771
25830
|
)
|
25772
25831
|
)
|
25773
|
-
)
|
25832
|
+
)
|
25774
25833
|
)
|
25775
|
-
)
|
25834
|
+
),
|
25776
25835
|
"interface" arg (
|
25777
25836
|
sc(
|
25778
25837
|
c(
|
@@ -25839,7 +25898,7 @@ rule(:juniper_protocols_ospf) do
|
|
25839
25898
|
)
|
25840
25899
|
)
|
25841
25900
|
)
|
25842
|
-
)
|
25901
|
+
),
|
25843
25902
|
"bfd-liveness-detection" (
|
25844
25903
|
sc(
|
25845
25904
|
"version" arg,
|
@@ -25902,7 +25961,7 @@ rule(:juniper_protocols_ospf) do
|
|
25902
25961
|
)
|
25903
25962
|
)
|
25904
25963
|
)
|
25905
|
-
)
|
25964
|
+
)
|
25906
25965
|
)
|
25907
25966
|
),
|
25908
25967
|
"peer-interface" arg (
|
@@ -26136,7 +26195,7 @@ rule(:juniper_protocols_pim) do
|
|
26136
26195
|
sc(
|
26137
26196
|
"forward-msdp-sa"
|
26138
26197
|
)
|
26139
|
-
)
|
26198
|
+
)
|
26140
26199
|
)
|
26141
26200
|
),
|
26142
26201
|
"local-address" (
|
@@ -26194,7 +26253,7 @@ rule(:juniper_protocols_pim) do
|
|
26194
26253
|
"mapping-agent-election",
|
26195
26254
|
"no-mapping-agent-election"
|
26196
26255
|
)
|
26197
|
-
)
|
26256
|
+
),
|
26198
26257
|
"static" (
|
26199
26258
|
sc(
|
26200
26259
|
"address" arg (
|
@@ -26717,7 +26776,7 @@ rule(:juniper_protocols_router_discovery) do
|
|
26717
26776
|
"ineligible",
|
26718
26777
|
"priority" arg
|
26719
26778
|
)
|
26720
|
-
)
|
26779
|
+
)
|
26721
26780
|
)
|
26722
26781
|
end
|
26723
26782
|
|
@@ -26911,7 +26970,7 @@ rule(:juniper_routing_instance) do
|
|
26911
26970
|
sc(
|
26912
26971
|
"community" arg
|
26913
26972
|
)
|
26914
|
-
)
|
26973
|
+
),
|
26915
26974
|
"provider-tunnel" (
|
26916
26975
|
sc(
|
26917
26976
|
c(
|
@@ -27204,7 +27263,7 @@ rule(:juniper_routing_instance) do
|
|
27204
27263
|
"import" arg,
|
27205
27264
|
"export" arg
|
27206
27265
|
)
|
27207
|
-
)
|
27266
|
+
),
|
27208
27267
|
"no-vrf-advertise",
|
27209
27268
|
"vrf-advertise-selective" (
|
27210
27269
|
sc(
|
@@ -27283,10 +27342,10 @@ rule(:juniper_routing_instance) do
|
|
27283
27342
|
"no-install",
|
27284
27343
|
"downstream-paths-only"
|
27285
27344
|
)
|
27286
|
-
)
|
27345
|
+
),
|
27287
27346
|
"prefix-export-limit" arg
|
27288
27347
|
)
|
27289
|
-
)
|
27348
|
+
),
|
27290
27349
|
"spf-options" (
|
27291
27350
|
sc(
|
27292
27351
|
"delay" arg,
|
@@ -27301,14 +27360,14 @@ rule(:juniper_routing_instance) do
|
|
27301
27360
|
"no-install",
|
27302
27361
|
"downstream-paths-only"
|
27303
27362
|
)
|
27304
|
-
)
|
27363
|
+
),
|
27305
27364
|
"prefix-export-limit" arg,
|
27306
27365
|
"rib-group" arg,
|
27307
27366
|
"overload" (
|
27308
27367
|
sc(
|
27309
27368
|
"timeout" arg
|
27310
27369
|
)
|
27311
|
-
)
|
27370
|
+
),
|
27312
27371
|
"database-protection" (
|
27313
27372
|
sc(
|
27314
27373
|
"maximum-lsa" arg,
|
@@ -27318,7 +27377,7 @@ rule(:juniper_routing_instance) do
|
|
27318
27377
|
"ignore-time" arg,
|
27319
27378
|
"reset-time" arg
|
27320
27379
|
)
|
27321
|
-
)
|
27380
|
+
),
|
27322
27381
|
"graceful-restart" (
|
27323
27382
|
sc(
|
27324
27383
|
c(
|
@@ -27337,7 +27396,7 @@ rule(:juniper_routing_instance) do
|
|
27337
27396
|
),
|
27338
27397
|
"no-strict-lsa-checking"
|
27339
27398
|
)
|
27340
|
-
)
|
27399
|
+
),
|
27341
27400
|
"traffic-engineering" (
|
27342
27401
|
sc(
|
27343
27402
|
"no-topology",
|
@@ -27347,11 +27406,11 @@ rule(:juniper_routing_instance) do
|
|
27347
27406
|
sc(
|
27348
27407
|
"lsp-metric-into-summary"
|
27349
27408
|
)
|
27350
|
-
)
|
27409
|
+
),
|
27351
27410
|
"advertise-unnumbered-interfaces",
|
27352
27411
|
"credibility-protocol-preference"
|
27353
27412
|
)
|
27354
|
-
)
|
27413
|
+
),
|
27355
27414
|
"route-type-community" arg,
|
27356
27415
|
"domain-id" (
|
27357
27416
|
sc(
|
@@ -27384,7 +27443,7 @@ rule(:juniper_routing_instance) do
|
|
27384
27443
|
ipaddr
|
27385
27444
|
)
|
27386
27445
|
)
|
27387
|
-
)
|
27446
|
+
),
|
27388
27447
|
"area" arg (
|
27389
27448
|
sc(
|
27390
27449
|
c(
|
@@ -27403,7 +27462,7 @@ rule(:juniper_routing_instance) do
|
|
27403
27462
|
"metric-type" arg,
|
27404
27463
|
"type-7"
|
27405
27464
|
)
|
27406
|
-
)
|
27465
|
+
),
|
27407
27466
|
"summaries",
|
27408
27467
|
"no-summaries",
|
27409
27468
|
"area-range" arg (
|
@@ -27415,11 +27474,11 @@ rule(:juniper_routing_instance) do
|
|
27415
27474
|
"metric" arg,
|
27416
27475
|
"metric-type" arg
|
27417
27476
|
)
|
27418
|
-
)
|
27477
|
+
)
|
27419
27478
|
)
|
27420
|
-
)
|
27479
|
+
)
|
27421
27480
|
)
|
27422
|
-
)
|
27481
|
+
)
|
27423
27482
|
),
|
27424
27483
|
"area-range" arg (
|
27425
27484
|
sc(
|
@@ -27427,7 +27486,7 @@ rule(:juniper_routing_instance) do
|
|
27427
27486
|
"exact",
|
27428
27487
|
"override-metric" arg
|
27429
27488
|
)
|
27430
|
-
)
|
27489
|
+
),
|
27431
27490
|
"network-summary-export" (
|
27432
27491
|
policy_algebra
|
27433
27492
|
),
|
@@ -27479,7 +27538,7 @@ rule(:juniper_routing_instance) do
|
|
27479
27538
|
)
|
27480
27539
|
)
|
27481
27540
|
)
|
27482
|
-
)
|
27541
|
+
)
|
27483
27542
|
)
|
27484
27543
|
)
|
27485
27544
|
),
|
@@ -27503,9 +27562,9 @@ rule(:juniper_routing_instance) do
|
|
27503
27562
|
)
|
27504
27563
|
)
|
27505
27564
|
)
|
27506
|
-
)
|
27565
|
+
)
|
27507
27566
|
)
|
27508
|
-
)
|
27567
|
+
),
|
27509
27568
|
"interface" arg (
|
27510
27569
|
sc(
|
27511
27570
|
c(
|
@@ -27572,7 +27631,7 @@ rule(:juniper_routing_instance) do
|
|
27572
27631
|
)
|
27573
27632
|
)
|
27574
27633
|
)
|
27575
|
-
)
|
27634
|
+
),
|
27576
27635
|
"bfd-liveness-detection" (
|
27577
27636
|
sc(
|
27578
27637
|
"version" arg,
|
@@ -27635,7 +27694,7 @@ rule(:juniper_routing_instance) do
|
|
27635
27694
|
)
|
27636
27695
|
)
|
27637
27696
|
)
|
27638
|
-
)
|
27697
|
+
)
|
27639
27698
|
)
|
27640
27699
|
),
|
27641
27700
|
"peer-interface" arg (
|
@@ -27699,10 +27758,10 @@ rule(:juniper_routing_instance) do
|
|
27699
27758
|
"no-install",
|
27700
27759
|
"downstream-paths-only"
|
27701
27760
|
)
|
27702
|
-
)
|
27761
|
+
),
|
27703
27762
|
"prefix-export-limit" arg
|
27704
27763
|
)
|
27705
|
-
)
|
27764
|
+
),
|
27706
27765
|
"spf-options" (
|
27707
27766
|
sc(
|
27708
27767
|
"delay" arg,
|
@@ -27717,14 +27776,14 @@ rule(:juniper_routing_instance) do
|
|
27717
27776
|
"no-install",
|
27718
27777
|
"downstream-paths-only"
|
27719
27778
|
)
|
27720
|
-
)
|
27779
|
+
),
|
27721
27780
|
"prefix-export-limit" arg,
|
27722
27781
|
"rib-group" arg,
|
27723
27782
|
"overload" (
|
27724
27783
|
sc(
|
27725
27784
|
"timeout" arg
|
27726
27785
|
)
|
27727
|
-
)
|
27786
|
+
),
|
27728
27787
|
"database-protection" (
|
27729
27788
|
sc(
|
27730
27789
|
"maximum-lsa" arg,
|
@@ -27734,7 +27793,7 @@ rule(:juniper_routing_instance) do
|
|
27734
27793
|
"ignore-time" arg,
|
27735
27794
|
"reset-time" arg
|
27736
27795
|
)
|
27737
|
-
)
|
27796
|
+
),
|
27738
27797
|
"graceful-restart" (
|
27739
27798
|
sc(
|
27740
27799
|
c(
|
@@ -27753,7 +27812,7 @@ rule(:juniper_routing_instance) do
|
|
27753
27812
|
),
|
27754
27813
|
"no-strict-lsa-checking"
|
27755
27814
|
)
|
27756
|
-
)
|
27815
|
+
),
|
27757
27816
|
"traffic-engineering" (
|
27758
27817
|
sc(
|
27759
27818
|
"no-topology",
|
@@ -27763,11 +27822,11 @@ rule(:juniper_routing_instance) do
|
|
27763
27822
|
sc(
|
27764
27823
|
"lsp-metric-into-summary"
|
27765
27824
|
)
|
27766
|
-
)
|
27825
|
+
),
|
27767
27826
|
"advertise-unnumbered-interfaces",
|
27768
27827
|
"credibility-protocol-preference"
|
27769
27828
|
)
|
27770
|
-
)
|
27829
|
+
),
|
27771
27830
|
"route-type-community" arg,
|
27772
27831
|
"domain-id" (
|
27773
27832
|
sc(
|
@@ -27800,7 +27859,7 @@ rule(:juniper_routing_instance) do
|
|
27800
27859
|
ipaddr
|
27801
27860
|
)
|
27802
27861
|
)
|
27803
|
-
)
|
27862
|
+
),
|
27804
27863
|
"area" arg (
|
27805
27864
|
sc(
|
27806
27865
|
c(
|
@@ -27819,7 +27878,7 @@ rule(:juniper_routing_instance) do
|
|
27819
27878
|
"metric-type" arg,
|
27820
27879
|
"type-7"
|
27821
27880
|
)
|
27822
|
-
)
|
27881
|
+
),
|
27823
27882
|
"summaries",
|
27824
27883
|
"no-summaries",
|
27825
27884
|
"area-range" arg (
|
@@ -27831,11 +27890,11 @@ rule(:juniper_routing_instance) do
|
|
27831
27890
|
"metric" arg,
|
27832
27891
|
"metric-type" arg
|
27833
27892
|
)
|
27834
|
-
)
|
27893
|
+
)
|
27835
27894
|
)
|
27836
|
-
)
|
27895
|
+
)
|
27837
27896
|
)
|
27838
|
-
)
|
27897
|
+
)
|
27839
27898
|
),
|
27840
27899
|
"area-range" arg (
|
27841
27900
|
sc(
|
@@ -27843,7 +27902,7 @@ rule(:juniper_routing_instance) do
|
|
27843
27902
|
"exact",
|
27844
27903
|
"override-metric" arg
|
27845
27904
|
)
|
27846
|
-
)
|
27905
|
+
),
|
27847
27906
|
"network-summary-export" (
|
27848
27907
|
policy_algebra
|
27849
27908
|
),
|
@@ -27895,7 +27954,7 @@ rule(:juniper_routing_instance) do
|
|
27895
27954
|
)
|
27896
27955
|
)
|
27897
27956
|
)
|
27898
|
-
)
|
27957
|
+
)
|
27899
27958
|
)
|
27900
27959
|
)
|
27901
27960
|
),
|
@@ -27919,9 +27978,9 @@ rule(:juniper_routing_instance) do
|
|
27919
27978
|
)
|
27920
27979
|
)
|
27921
27980
|
)
|
27922
|
-
)
|
27981
|
+
)
|
27923
27982
|
)
|
27924
|
-
)
|
27983
|
+
),
|
27925
27984
|
"interface" arg (
|
27926
27985
|
sc(
|
27927
27986
|
c(
|
@@ -27988,7 +28047,7 @@ rule(:juniper_routing_instance) do
|
|
27988
28047
|
)
|
27989
28048
|
)
|
27990
28049
|
)
|
27991
|
-
)
|
28050
|
+
),
|
27992
28051
|
"bfd-liveness-detection" (
|
27993
28052
|
sc(
|
27994
28053
|
"version" arg,
|
@@ -28051,7 +28110,7 @@ rule(:juniper_routing_instance) do
|
|
28051
28110
|
)
|
28052
28111
|
)
|
28053
28112
|
)
|
28054
|
-
)
|
28113
|
+
)
|
28055
28114
|
)
|
28056
28115
|
),
|
28057
28116
|
"peer-interface" arg (
|
@@ -28225,7 +28284,7 @@ rule(:juniper_protocols_l2vpn) do
|
|
28225
28284
|
)
|
28226
28285
|
).as(:oneline)
|
28227
28286
|
)
|
28228
|
-
)
|
28287
|
+
)
|
28229
28288
|
),
|
28230
28289
|
"multi-homing",
|
28231
28290
|
"site-preference" arg,
|
@@ -28282,7 +28341,7 @@ rule(:juniper_protocols_l2vpn) do
|
|
28282
28341
|
"outgoing-label" arg
|
28283
28342
|
)
|
28284
28343
|
),
|
28285
|
-
"associate-profile"
|
28344
|
+
"associate-profile",
|
28286
28345
|
"psn-tunnel-endpoint" (
|
28287
28346
|
ipv4addr
|
28288
28347
|
),
|
@@ -28311,10 +28370,10 @@ rule(:juniper_protocols_l2vpn) do
|
|
28311
28370
|
"oam"
|
28312
28371
|
)
|
28313
28372
|
),
|
28314
|
-
"associate-profile"
|
28373
|
+
"associate-profile",
|
28315
28374
|
"mesh-group" arg (
|
28316
28375
|
sc(
|
28317
|
-
"associate-profile"
|
28376
|
+
"associate-profile",
|
28318
28377
|
c(
|
28319
28378
|
"peer-as" (
|
28320
28379
|
sc(
|
@@ -28325,7 +28384,7 @@ rule(:juniper_protocols_l2vpn) do
|
|
28325
28384
|
"vpls-id" arg,
|
28326
28385
|
"vrf-import",
|
28327
28386
|
"vrf-export",
|
28328
|
-
"vrf-target"
|
28387
|
+
"vrf-target",
|
28329
28388
|
"mac-flush",
|
28330
28389
|
"local-switching",
|
28331
28390
|
"neighbor",
|
@@ -28528,7 +28587,7 @@ rule(:juniper_routing_options) do
|
|
28528
28587
|
"srlg-value" arg,
|
28529
28588
|
"srlg-cost" arg
|
28530
28589
|
)
|
28531
|
-
)
|
28590
|
+
),
|
28532
28591
|
"admin-groups-extended-range" (
|
28533
28592
|
sc(
|
28534
28593
|
"minimum" arg,
|
@@ -28539,7 +28598,7 @@ rule(:juniper_routing_options) do
|
|
28539
28598
|
sc(
|
28540
28599
|
"group-value" arg
|
28541
28600
|
)
|
28542
|
-
)
|
28601
|
+
),
|
28543
28602
|
"traceoptions" (
|
28544
28603
|
sc(
|
28545
28604
|
"file" (
|
@@ -28794,7 +28853,7 @@ rule(:juniper_routing_options) do
|
|
28794
28853
|
)
|
28795
28854
|
)
|
28796
28855
|
)
|
28797
|
-
)
|
28856
|
+
),
|
28798
28857
|
"iso-route" arg (
|
28799
28858
|
sc(
|
28800
28859
|
c(
|
@@ -28917,7 +28976,7 @@ rule(:juniper_routing_options) do
|
|
28917
28976
|
)
|
28918
28977
|
)
|
28919
28978
|
)
|
28920
|
-
)
|
28979
|
+
)
|
28921
28980
|
)
|
28922
28981
|
),
|
28923
28982
|
"martians" (
|
@@ -28960,7 +29019,7 @@ rule(:juniper_routing_options) do
|
|
28960
29019
|
).as(:oneline),
|
28961
29020
|
"as-path-compare"
|
28962
29021
|
)
|
28963
|
-
)
|
29022
|
+
),
|
28964
29023
|
"label" (
|
28965
29024
|
sc(
|
28966
29025
|
"allocation" (
|
@@ -28970,7 +29029,7 @@ rule(:juniper_routing_options) do
|
|
28970
29029
|
policy_algebra
|
28971
29030
|
)
|
28972
29031
|
)
|
28973
|
-
)
|
29032
|
+
),
|
28974
29033
|
"access" (
|
28975
29034
|
sc(
|
28976
29035
|
"route" arg (
|
@@ -28985,7 +29044,7 @@ rule(:juniper_routing_options) do
|
|
28985
29044
|
"preference" arg,
|
28986
29045
|
"tag" arg
|
28987
29046
|
)
|
28988
|
-
)
|
29047
|
+
)
|
28989
29048
|
)
|
28990
29049
|
),
|
28991
29050
|
"access-internal" (
|
@@ -28999,7 +29058,7 @@ rule(:juniper_routing_options) do
|
|
28999
29058
|
qualified_nh_obj
|
29000
29059
|
)
|
29001
29060
|
)
|
29002
|
-
)
|
29061
|
+
)
|
29003
29062
|
)
|
29004
29063
|
)
|
29005
29064
|
)
|
@@ -29193,7 +29252,7 @@ rule(:juniper_routing_options) do
|
|
29193
29252
|
)
|
29194
29253
|
)
|
29195
29254
|
)
|
29196
|
-
)
|
29255
|
+
),
|
29197
29256
|
"iso-route" arg (
|
29198
29257
|
sc(
|
29199
29258
|
c(
|
@@ -29316,7 +29375,7 @@ rule(:juniper_routing_options) do
|
|
29316
29375
|
)
|
29317
29376
|
)
|
29318
29377
|
)
|
29319
|
-
)
|
29378
|
+
)
|
29320
29379
|
)
|
29321
29380
|
),
|
29322
29381
|
"martians" (
|
@@ -29359,7 +29418,7 @@ rule(:juniper_routing_options) do
|
|
29359
29418
|
).as(:oneline),
|
29360
29419
|
"as-path-compare"
|
29361
29420
|
)
|
29362
|
-
)
|
29421
|
+
),
|
29363
29422
|
"label" (
|
29364
29423
|
sc(
|
29365
29424
|
"allocation" (
|
@@ -29369,7 +29428,7 @@ rule(:juniper_routing_options) do
|
|
29369
29428
|
policy_algebra
|
29370
29429
|
)
|
29371
29430
|
)
|
29372
|
-
)
|
29431
|
+
),
|
29373
29432
|
"access" (
|
29374
29433
|
sc(
|
29375
29434
|
"route" arg (
|
@@ -29384,7 +29443,7 @@ rule(:juniper_routing_options) do
|
|
29384
29443
|
"preference" arg,
|
29385
29444
|
"tag" arg
|
29386
29445
|
)
|
29387
|
-
)
|
29446
|
+
)
|
29388
29447
|
)
|
29389
29448
|
),
|
29390
29449
|
"access-internal" (
|
@@ -29398,7 +29457,7 @@ rule(:juniper_routing_options) do
|
|
29398
29457
|
qualified_nh_obj
|
29399
29458
|
)
|
29400
29459
|
)
|
29401
|
-
)
|
29460
|
+
)
|
29402
29461
|
)
|
29403
29462
|
),
|
29404
29463
|
"rib-groups" (
|
@@ -29654,10 +29713,10 @@ rule(:juniper_routing_options) do
|
|
29654
29713
|
sc(
|
29655
29714
|
"match" (
|
29656
29715
|
flow_route_qualifier
|
29657
|
-
)
|
29716
|
+
),
|
29658
29717
|
"then" (
|
29659
29718
|
flow_route_op
|
29660
|
-
)
|
29719
|
+
)
|
29661
29720
|
)
|
29662
29721
|
),
|
29663
29722
|
"term-order" arg
|
@@ -29706,14 +29765,14 @@ rule(:dynamic_tunnel_type) do
|
|
29706
29765
|
),
|
29707
29766
|
"destination-networks" (
|
29708
29767
|
network_type
|
29709
|
-
)
|
29768
|
+
)
|
29710
29769
|
)
|
29711
29770
|
),
|
29712
29771
|
"gre"
|
29713
29772
|
),
|
29714
29773
|
"destination-networks" (
|
29715
29774
|
network_type
|
29716
|
-
)
|
29775
|
+
)
|
29717
29776
|
)
|
29718
29777
|
)
|
29719
29778
|
end
|
@@ -29789,7 +29848,7 @@ rule(:flow_route_op) do
|
|
29789
29848
|
"routing-instance" arg,
|
29790
29849
|
"sample",
|
29791
29850
|
"next-term"
|
29792
|
-
)
|
29851
|
+
)
|
29793
29852
|
end
|
29794
29853
|
|
29795
29854
|
rule(:flow_route_qualifier) do
|
@@ -29814,7 +29873,7 @@ rule(:flow_route_qualifier) do
|
|
29814
29873
|
policy_algebra
|
29815
29874
|
),
|
29816
29875
|
"fragment" arg
|
29817
|
-
)
|
29876
|
+
)
|
29818
29877
|
end
|
29819
29878
|
|
29820
29879
|
rule(:forwarding_table_type) do
|
@@ -29869,7 +29928,66 @@ rule(:juniper_sampling_options) do
|
|
29869
29928
|
"mpls"
|
29870
29929
|
)
|
29871
29930
|
),
|
29872
|
-
"instance"
|
29931
|
+
"instance" arg (
|
29932
|
+
sc(
|
29933
|
+
"disable",
|
29934
|
+
"input" (
|
29935
|
+
sc(
|
29936
|
+
"rate" arg,
|
29937
|
+
"run-length" arg,
|
29938
|
+
"max-packets-per-second" arg,
|
29939
|
+
"maximum-packet-length" arg
|
29940
|
+
)
|
29941
|
+
),
|
29942
|
+
"family" ("mpls" | "inet6" | "inet" ) (
|
29943
|
+
sc(
|
29944
|
+
"disable",
|
29945
|
+
"output" (
|
29946
|
+
sc(
|
29947
|
+
"aggregate-export-interval" arg,
|
29948
|
+
"flow-active-timeout" arg,
|
29949
|
+
"flow-inactive-timeout" arg,
|
29950
|
+
"extension-service" arg,
|
29951
|
+
"flow-server" arg (
|
29952
|
+
sc(
|
29953
|
+
"aggregation" (
|
29954
|
+
sc(
|
29955
|
+
"autonomous-system",
|
29956
|
+
"destination-prefix",
|
29957
|
+
"protocol-port",
|
29958
|
+
"source-destination-prefix" (
|
29959
|
+
"caida-compliant"
|
29960
|
+
),
|
29961
|
+
"source-prefix"
|
29962
|
+
)
|
29963
|
+
),
|
29964
|
+
"autonomous-system-type" ("origin" | "peer"),
|
29965
|
+
("local-dump" | "no-local-dump"),
|
29966
|
+
"port" arg,
|
29967
|
+
"source-address" ipaddr,
|
29968
|
+
"version" arg,
|
29969
|
+
"version9" (
|
29970
|
+
"template" arg
|
29971
|
+
)
|
29972
|
+
)
|
29973
|
+
),
|
29974
|
+
"interface" arg (
|
29975
|
+
sc(
|
29976
|
+
"engine-id" arg,
|
29977
|
+
"engine-type" arg,
|
29978
|
+
"source-address" ipaddr
|
29979
|
+
)
|
29980
|
+
),
|
29981
|
+
"inline-jflow" (
|
29982
|
+
"source-address" ipaddr,
|
29983
|
+
"flow-export-rate" arg
|
29984
|
+
)
|
29985
|
+
)
|
29986
|
+
)
|
29987
|
+
)
|
29988
|
+
)
|
29989
|
+
)
|
29990
|
+
)
|
29873
29991
|
)
|
29874
29992
|
end
|
29875
29993
|
|
@@ -30040,7 +30158,7 @@ rule(:juniper_system) do
|
|
30040
30158
|
"authentication-order" arg,
|
30041
30159
|
"location" (
|
30042
30160
|
location_type
|
30043
|
-
)
|
30161
|
+
),
|
30044
30162
|
"ports" (
|
30045
30163
|
sc(
|
30046
30164
|
"console" (
|
@@ -30135,7 +30253,7 @@ rule(:juniper_system) do
|
|
30135
30253
|
)
|
30136
30254
|
)
|
30137
30255
|
)
|
30138
|
-
)
|
30256
|
+
)
|
30139
30257
|
)
|
30140
30258
|
),
|
30141
30259
|
"allow-v4mapped-packets",
|
@@ -30194,7 +30312,7 @@ rule(:juniper_system) do
|
|
30194
30312
|
),
|
30195
30313
|
"alias" arg
|
30196
30314
|
)
|
30197
|
-
)
|
30315
|
+
),
|
30198
30316
|
"services" (
|
30199
30317
|
sc(
|
30200
30318
|
"finger" (
|
@@ -30405,7 +30523,7 @@ rule(:juniper_system) do
|
|
30405
30523
|
)
|
30406
30524
|
)
|
30407
30525
|
)
|
30408
|
-
)
|
30526
|
+
),
|
30409
30527
|
"traceoptions" (
|
30410
30528
|
sc(
|
30411
30529
|
"no-remote-trace",
|
@@ -30466,7 +30584,7 @@ rule(:juniper_system) do
|
|
30466
30584
|
"retry" arg,
|
30467
30585
|
"timeout" arg
|
30468
30586
|
)
|
30469
|
-
)
|
30587
|
+
)
|
30470
30588
|
)
|
30471
30589
|
)
|
30472
30590
|
)
|
@@ -30519,7 +30637,7 @@ rule(:juniper_system) do
|
|
30519
30637
|
)
|
30520
30638
|
)
|
30521
30639
|
)
|
30522
|
-
)
|
30640
|
+
),
|
30523
30641
|
"packet-triggered-subscribers",
|
30524
30642
|
"static-subscribers" (
|
30525
30643
|
jsscd_static_subscribers_type
|
@@ -30891,7 +31009,7 @@ rule(:juniper_system) do
|
|
30891
31009
|
)
|
30892
31010
|
).as(:oneline)
|
30893
31011
|
)
|
30894
|
-
)
|
31012
|
+
),
|
30895
31013
|
"resource-limits" (
|
30896
31014
|
sc(
|
30897
31015
|
"process" arg (
|
@@ -30946,7 +31064,7 @@ rule(:juniper_system) do
|
|
30946
31064
|
)
|
30947
31065
|
)
|
30948
31066
|
)
|
30949
|
-
)
|
31067
|
+
),
|
30950
31068
|
"fips" (
|
30951
31069
|
sc(
|
30952
31070
|
"level" arg,
|
@@ -31025,7 +31143,7 @@ rule(:juniper_system) do
|
|
31025
31143
|
pmond_traceoptions_type
|
31026
31144
|
)
|
31027
31145
|
)
|
31028
|
-
)
|
31146
|
+
),
|
31029
31147
|
"resource-cleanup" (
|
31030
31148
|
sc(
|
31031
31149
|
c(
|
@@ -31035,7 +31153,7 @@ rule(:juniper_system) do
|
|
31035
31153
|
res_cleanupd_traceoptions_type
|
31036
31154
|
)
|
31037
31155
|
)
|
31038
|
-
)
|
31156
|
+
),
|
31039
31157
|
"routing-socket-proxy" (
|
31040
31158
|
sc(
|
31041
31159
|
c(
|
@@ -31114,7 +31232,7 @@ rule(:juniper_system) do
|
|
31114
31232
|
"traceoptions"
|
31115
31233
|
)
|
31116
31234
|
),
|
31117
|
-
"mac-validation"
|
31235
|
+
"mac-validation",
|
31118
31236
|
"sbc-configuration-process" (
|
31119
31237
|
sc(
|
31120
31238
|
c(
|
@@ -31135,7 +31253,7 @@ rule(:juniper_system) do
|
|
31135
31253
|
ssd_traceoptions_type
|
31136
31254
|
)
|
31137
31255
|
)
|
31138
|
-
)
|
31256
|
+
),
|
31139
31257
|
"datapath-trace-service" (
|
31140
31258
|
sc(
|
31141
31259
|
c(
|
@@ -31145,7 +31263,7 @@ rule(:juniper_system) do
|
|
31145
31263
|
datapath_traced_traceoptions_type
|
31146
31264
|
)
|
31147
31265
|
)
|
31148
|
-
)
|
31266
|
+
),
|
31149
31267
|
"send" (
|
31150
31268
|
sc(
|
31151
31269
|
c(
|
@@ -31763,7 +31881,7 @@ rule(:ldap_server_object) do
|
|
31763
31881
|
"retry" arg,
|
31764
31882
|
"timeout" arg
|
31765
31883
|
)
|
31766
|
-
)
|
31884
|
+
)
|
31767
31885
|
end
|
31768
31886
|
|
31769
31887
|
rule(:ldp_sync_obj) do
|
@@ -31852,7 +31970,7 @@ rule(:location_type) do
|
|
31852
31970
|
"rack" arg
|
31853
31971
|
)
|
31854
31972
|
)
|
31855
|
-
)
|
31973
|
+
)
|
31856
31974
|
end
|
31857
31975
|
|
31858
31976
|
rule(:login_class_object) do
|
@@ -31929,12 +32047,12 @@ rule(:lr_interfaces_type) do
|
|
31929
32047
|
interface_unit
|
31930
32048
|
)
|
31931
32049
|
)
|
31932
|
-
)
|
32050
|
+
),
|
31933
32051
|
"interface-shared-with" (
|
31934
32052
|
sc(
|
31935
32053
|
"psd-name" arg
|
31936
32054
|
)
|
31937
|
-
)
|
32055
|
+
),
|
31938
32056
|
c(
|
31939
32057
|
"disable"
|
31940
32058
|
),
|
@@ -31942,7 +32060,7 @@ rule(:lr_interfaces_type) do
|
|
31942
32060
|
"per-session-scheduler",
|
31943
32061
|
"clear-dont-fragment-bit",
|
31944
32062
|
"reassemble-packets",
|
31945
|
-
"rpm"
|
32063
|
+
"rpm",
|
31946
32064
|
"description" arg,
|
31947
32065
|
"metadata" arg,
|
31948
32066
|
"dial-options",
|
@@ -32007,10 +32125,10 @@ rule(:lr_interfaces_type) do
|
|
32007
32125
|
),
|
32008
32126
|
"input-vlan-map" (
|
32009
32127
|
vlan_map
|
32010
|
-
)
|
32128
|
+
),
|
32011
32129
|
"output-vlan-map" (
|
32012
32130
|
vlan_map
|
32013
|
-
)
|
32131
|
+
),
|
32014
32132
|
"swap-by-poppush",
|
32015
32133
|
"receive-lsp" arg,
|
32016
32134
|
"transmit-lsp" arg,
|
@@ -32202,7 +32320,7 @@ rule(:lr_interfaces_type) do
|
|
32202
32320
|
)
|
32203
32321
|
).as(:oneline)
|
32204
32322
|
)
|
32205
|
-
)
|
32323
|
+
),
|
32206
32324
|
"mtu" arg,
|
32207
32325
|
"no-redirects",
|
32208
32326
|
"no-neighbor-learn",
|
@@ -32210,8 +32328,8 @@ rule(:lr_interfaces_type) do
|
|
32210
32328
|
"multicast-only",
|
32211
32329
|
"primary",
|
32212
32330
|
"ipsec-sa" arg,
|
32213
|
-
"demux-source"
|
32214
|
-
"demux-destination"
|
32331
|
+
"demux-source",
|
32332
|
+
"demux-destination",
|
32215
32333
|
"filter" (
|
32216
32334
|
sc(
|
32217
32335
|
c(
|
@@ -32267,7 +32385,7 @@ rule(:lr_interfaces_type) do
|
|
32267
32385
|
sc(
|
32268
32386
|
"ipsec-vpn" arg
|
32269
32387
|
)
|
32270
|
-
)
|
32388
|
+
),
|
32271
32389
|
"address" arg (
|
32272
32390
|
sc(
|
32273
32391
|
"destination" (
|
@@ -32311,7 +32429,7 @@ rule(:lr_interfaces_type) do
|
|
32311
32429
|
epd_threshold_config
|
32312
32430
|
).as(:oneline)
|
32313
32431
|
)
|
32314
|
-
)
|
32432
|
+
),
|
32315
32433
|
"arp" arg (
|
32316
32434
|
sc(
|
32317
32435
|
"l2-interface" (
|
@@ -32334,7 +32452,7 @@ rule(:lr_interfaces_type) do
|
|
32334
32452
|
"https",
|
32335
32453
|
"redirect-to-https"
|
32336
32454
|
)
|
32337
|
-
)
|
32455
|
+
),
|
32338
32456
|
"vrrp-group" (
|
32339
32457
|
vrrp_group
|
32340
32458
|
)
|
@@ -32396,7 +32514,7 @@ rule(:lr_interfaces_type) do
|
|
32396
32514
|
)
|
32397
32515
|
).as(:oneline)
|
32398
32516
|
)
|
32399
|
-
)
|
32517
|
+
),
|
32400
32518
|
"accounting" (
|
32401
32519
|
sc(
|
32402
32520
|
"source-class-usage" (
|
@@ -32490,11 +32608,11 @@ rule(:lr_interfaces_type) do
|
|
32490
32608
|
"https",
|
32491
32609
|
"redirect-to-https"
|
32492
32610
|
)
|
32493
|
-
)
|
32611
|
+
)
|
32494
32612
|
)
|
32495
32613
|
),
|
32496
|
-
"demux-source"
|
32497
|
-
"demux-destination"
|
32614
|
+
"demux-source",
|
32615
|
+
"demux-destination",
|
32498
32616
|
"unnumbered-address" (
|
32499
32617
|
sc(
|
32500
32618
|
"source" (
|
@@ -32729,7 +32847,7 @@ rule(:lr_interfaces_type) do
|
|
32729
32847
|
)
|
32730
32848
|
).as(:oneline)
|
32731
32849
|
)
|
32732
|
-
)
|
32850
|
+
),
|
32733
32851
|
c(
|
32734
32852
|
"isid-list" arg
|
32735
32853
|
)
|
@@ -32807,7 +32925,7 @@ rule(:lsp_set_match_type) do
|
|
32807
32925
|
"ingress",
|
32808
32926
|
"transit"
|
32809
32927
|
)
|
32810
|
-
)
|
32928
|
+
)
|
32811
32929
|
end
|
32812
32930
|
|
32813
32931
|
rule(:lsp_nh_obj) do
|
@@ -32825,7 +32943,7 @@ rule(:mac_aging_time_config) do
|
|
32825
32943
|
"time" arg,
|
32826
32944
|
"unlimited"
|
32827
32945
|
)
|
32828
|
-
)
|
32946
|
+
)
|
32829
32947
|
end
|
32830
32948
|
|
32831
32949
|
rule(:mac_list) do
|
@@ -32911,7 +33029,7 @@ rule(:match_simple_dscp_value) do
|
|
32911
33029
|
"be",
|
32912
33030
|
"range"
|
32913
33031
|
)
|
32914
|
-
)
|
33032
|
+
)
|
32915
33033
|
end
|
32916
33034
|
|
32917
33035
|
rule(:match_simple_port_value) do
|
@@ -32983,7 +33101,7 @@ rule(:match_simple_port_value) do
|
|
32983
33101
|
"cvspserver",
|
32984
33102
|
"range"
|
32985
33103
|
)
|
32986
|
-
)
|
33104
|
+
)
|
32987
33105
|
end
|
32988
33106
|
|
32989
33107
|
rule(:match_simple_protocol_value) do
|
@@ -33012,7 +33130,7 @@ rule(:match_simple_protocol_value) do
|
|
33012
33130
|
"vrrp",
|
33013
33131
|
"range"
|
33014
33132
|
)
|
33015
|
-
)
|
33133
|
+
)
|
33016
33134
|
end
|
33017
33135
|
|
33018
33136
|
rule(:metric_expression_type) do
|
@@ -33033,7 +33151,7 @@ rule(:metric_expression_type) do
|
|
33033
33151
|
"offset" arg
|
33034
33152
|
)
|
33035
33153
|
).as(:oneline)
|
33036
|
-
)
|
33154
|
+
)
|
33037
33155
|
end
|
33038
33156
|
|
33039
33157
|
rule(:mib_variable_name_object) do
|
@@ -33158,7 +33276,7 @@ rule(:cflowd_monitoring_type) do
|
|
33158
33276
|
sc(
|
33159
33277
|
"port" arg
|
33160
33278
|
)
|
33161
|
-
)
|
33279
|
+
)
|
33162
33280
|
end
|
33163
33281
|
|
33164
33282
|
rule(:monitor_export_intf_type) do
|
@@ -33199,7 +33317,7 @@ rule(:mpls_dialer_filter) do
|
|
33199
33317
|
"ignore"
|
33200
33318
|
)
|
33201
33319
|
)
|
33202
|
-
)
|
33320
|
+
)
|
33203
33321
|
)
|
33204
33322
|
)
|
33205
33323
|
)
|
@@ -33267,7 +33385,7 @@ rule(:mpls_filter) do
|
|
33267
33385
|
"next" arg
|
33268
33386
|
)
|
33269
33387
|
)
|
33270
|
-
)
|
33388
|
+
)
|
33271
33389
|
)
|
33272
33390
|
)
|
33273
33391
|
)
|
@@ -33280,7 +33398,7 @@ rule(:mpls_ifd_options) do
|
|
33280
33398
|
sc(
|
33281
33399
|
"required-depth" arg
|
33282
33400
|
)
|
33283
|
-
)
|
33401
|
+
)
|
33284
33402
|
)
|
33285
33403
|
end
|
33286
33404
|
|
@@ -33308,7 +33426,7 @@ rule(:multicast_interface_options_type) do
|
|
33308
33426
|
"subscriber-leave-timer" arg,
|
33309
33427
|
"no-qos-adjust"
|
33310
33428
|
)
|
33311
|
-
)
|
33429
|
+
)
|
33312
33430
|
end
|
33313
33431
|
|
33314
33432
|
rule(:named_address_book_type) do
|
@@ -33317,10 +33435,10 @@ rule(:named_address_book_type) do
|
|
33317
33435
|
"description" arg,
|
33318
33436
|
"address" (
|
33319
33437
|
address_type
|
33320
|
-
)
|
33438
|
+
),
|
33321
33439
|
"address-set" (
|
33322
33440
|
address_set_type
|
33323
|
-
)
|
33441
|
+
),
|
33324
33442
|
"attach" (
|
33325
33443
|
sc(
|
33326
33444
|
"zone" arg
|
@@ -33337,7 +33455,7 @@ rule(:address_set_type) do
|
|
33337
33455
|
"address" arg,
|
33338
33456
|
"address-set" arg
|
33339
33457
|
)
|
33340
|
-
)
|
33458
|
+
)
|
33341
33459
|
end
|
33342
33460
|
|
33343
33461
|
rule(:address_type) do
|
@@ -33356,10 +33474,10 @@ rule(:address_type) do
|
|
33356
33474
|
),
|
33357
33475
|
"range-address" (
|
33358
33476
|
range_address_type
|
33359
|
-
)
|
33477
|
+
)
|
33360
33478
|
)
|
33361
33479
|
)
|
33362
|
-
)
|
33480
|
+
)
|
33363
33481
|
end
|
33364
33482
|
|
33365
33483
|
rule(:dns_name_type) do
|
@@ -33376,7 +33494,7 @@ rule(:nameserver_object) do
|
|
33376
33494
|
end
|
33377
33495
|
|
33378
33496
|
rule(:network_type) do
|
33379
|
-
arg.as(:arg)
|
33497
|
+
arg.as(:arg)
|
33380
33498
|
end
|
33381
33499
|
|
33382
33500
|
rule(:next_hop_group_intf_type) do
|
@@ -33932,7 +34050,7 @@ rule(:periodic_oam) do
|
|
33932
34050
|
"flag" ("configuration" | "pipe" | "rpc-packet-details" | "database" | "network" | "traceroute" | "all").as(:oneline)
|
33933
34051
|
)
|
33934
34052
|
)
|
33935
|
-
)
|
34053
|
+
)
|
33936
34054
|
end
|
33937
34055
|
|
33938
34056
|
rule(:pim_bootstrap_options_type) do
|
@@ -34336,7 +34454,7 @@ rule(:profile_radius_server_object) do
|
|
34336
34454
|
),
|
34337
34455
|
"routing-instance" arg
|
34338
34456
|
)
|
34339
|
-
)
|
34457
|
+
)
|
34340
34458
|
end
|
34341
34459
|
|
34342
34460
|
rule(:profile_setting) do
|
@@ -34494,7 +34612,7 @@ rule(:radius_disconnect_object) do
|
|
34494
34612
|
unreadable
|
34495
34613
|
)
|
34496
34614
|
)
|
34497
|
-
)
|
34615
|
+
)
|
34498
34616
|
end
|
34499
34617
|
|
34500
34618
|
rule(:radius_server_object) do
|
@@ -34512,7 +34630,7 @@ rule(:radius_server_object) do
|
|
34512
34630
|
ipaddr
|
34513
34631
|
)
|
34514
34632
|
)
|
34515
|
-
)
|
34633
|
+
)
|
34516
34634
|
end
|
34517
34635
|
|
34518
34636
|
rule(:range_address_type) do
|
@@ -34526,7 +34644,7 @@ rule(:range_address_type) do
|
|
34526
34644
|
)
|
34527
34645
|
)
|
34528
34646
|
)
|
34529
|
-
)
|
34647
|
+
)
|
34530
34648
|
end
|
34531
34649
|
|
34532
34650
|
rule(:reconfigure_trigger_type) do
|
@@ -34823,7 +34941,7 @@ rule(:rib_aggregate_type) do
|
|
34823
34941
|
"passive"
|
34824
34942
|
)
|
34825
34943
|
)
|
34826
|
-
)
|
34944
|
+
)
|
34827
34945
|
)
|
34828
34946
|
end
|
34829
34947
|
|
@@ -34837,7 +34955,7 @@ rule(:rib_group_type) do
|
|
34837
34955
|
sc(
|
34838
34956
|
"inet" arg,
|
34839
34957
|
"inet6" arg
|
34840
|
-
)
|
34958
|
+
)
|
34841
34959
|
end
|
34842
34960
|
|
34843
34961
|
rule(:rib_static_metric_type) do
|
@@ -35108,7 +35226,7 @@ rule(:daily_object) do
|
|
35108
35226
|
"exclude",
|
35109
35227
|
"all-day"
|
35110
35228
|
)
|
35111
|
-
)
|
35229
|
+
)
|
35112
35230
|
end
|
35113
35231
|
|
35114
35232
|
rule(:scripts_type) do
|
@@ -35157,7 +35275,7 @@ rule(:commit_scripts_file_type) do
|
|
35157
35275
|
"sha1" arg,
|
35158
35276
|
"sha-256" arg
|
35159
35277
|
)
|
35160
|
-
)
|
35278
|
+
)
|
35161
35279
|
)
|
35162
35280
|
)
|
35163
35281
|
end
|
@@ -35181,7 +35299,7 @@ rule(:op_scripts_file_type) do
|
|
35181
35299
|
"sha1" arg,
|
35182
35300
|
"sha-256" arg
|
35183
35301
|
)
|
35184
|
-
)
|
35302
|
+
)
|
35185
35303
|
)
|
35186
35304
|
)
|
35187
35305
|
end
|
@@ -35207,7 +35325,7 @@ rule(:securid_server_object) do
|
|
35207
35325
|
sc(
|
35208
35326
|
"configuration-file" arg
|
35209
35327
|
)
|
35210
|
-
)
|
35328
|
+
)
|
35211
35329
|
end
|
35212
35330
|
|
35213
35331
|
rule(:security_group_vpn) do
|
@@ -35430,7 +35548,7 @@ rule(:gvpn_server_ike) do
|
|
35430
35548
|
"user-at-hostname" arg
|
35431
35549
|
)
|
35432
35550
|
)
|
35433
|
-
)
|
35551
|
+
)
|
35434
35552
|
),
|
35435
35553
|
"local-identity" (
|
35436
35554
|
sc(
|
@@ -35622,7 +35740,7 @@ rule(:security_ike) do
|
|
35622
35740
|
"connections-limit" arg,
|
35623
35741
|
"ike-user-type" arg
|
35624
35742
|
)
|
35625
|
-
)
|
35743
|
+
)
|
35626
35744
|
),
|
35627
35745
|
"dead-peer-detection" (
|
35628
35746
|
sc(
|
@@ -35634,7 +35752,7 @@ rule(:security_ike) do
|
|
35634
35752
|
"interval" arg,
|
35635
35753
|
"threshold" arg
|
35636
35754
|
)
|
35637
|
-
)
|
35755
|
+
),
|
35638
35756
|
"no-nat-traversal",
|
35639
35757
|
"nat-keepalive" arg,
|
35640
35758
|
"local-identity" (
|
@@ -36171,10 +36289,10 @@ rule(:address_book_type) do
|
|
36171
36289
|
sc(
|
36172
36290
|
"address" (
|
36173
36291
|
address_type
|
36174
|
-
)
|
36292
|
+
),
|
36175
36293
|
"address-set" (
|
36176
36294
|
address_set_type
|
36177
|
-
)
|
36295
|
+
)
|
36178
36296
|
)
|
36179
36297
|
end
|
36180
36298
|
|
@@ -36182,9 +36300,9 @@ rule(:server_group_type) do
|
|
36182
36300
|
sc(
|
36183
36301
|
"server-group" arg (
|
36184
36302
|
sc(
|
36185
|
-
"address" arg
|
36303
|
+
"address" arg
|
36186
36304
|
)
|
36187
|
-
)
|
36305
|
+
)
|
36188
36306
|
)
|
36189
36307
|
end
|
36190
36308
|
|
@@ -36240,7 +36358,7 @@ rule(:service_set_syslog_object) do
|
|
36240
36358
|
"nat-logs",
|
36241
36359
|
"ids-logs"
|
36242
36360
|
)
|
36243
|
-
)
|
36361
|
+
)
|
36244
36362
|
)
|
36245
36363
|
),
|
36246
36364
|
"message-rate-limit" arg
|
@@ -37285,7 +37403,7 @@ rule(:subscription_type) do
|
|
37285
37403
|
"ct1" arg,
|
37286
37404
|
"ct2" arg,
|
37287
37405
|
"ct3" arg
|
37288
|
-
)
|
37406
|
+
)
|
37289
37407
|
end
|
37290
37408
|
|
37291
37409
|
rule(:syslog_object) do
|
@@ -37319,7 +37437,7 @@ rule(:tacplus_server_object) do
|
|
37319
37437
|
ipv4addr
|
37320
37438
|
)
|
37321
37439
|
)
|
37322
|
-
)
|
37440
|
+
)
|
37323
37441
|
end
|
37324
37442
|
|
37325
37443
|
rule(:te_class_object) do
|
@@ -37397,7 +37515,7 @@ rule(:three_color_policer_action) do
|
|
37397
37515
|
sc(
|
37398
37516
|
"discard"
|
37399
37517
|
)
|
37400
|
-
)
|
37518
|
+
)
|
37401
37519
|
)
|
37402
37520
|
).as(:oneline)
|
37403
37521
|
end
|
@@ -37420,7 +37538,7 @@ rule(:tty_port_object) do
|
|
37420
37538
|
"insecure",
|
37421
37539
|
"type" arg,
|
37422
37540
|
"silent-with-modem"
|
37423
|
-
)
|
37541
|
+
)
|
37424
37542
|
end
|
37425
37543
|
|
37426
37544
|
rule(:tunable_object) do
|
@@ -37550,9 +37668,9 @@ rule(:v6_server_group_type) do
|
|
37550
37668
|
sc(
|
37551
37669
|
"server-group" arg (
|
37552
37670
|
sc(
|
37553
|
-
"address" arg
|
37671
|
+
"address" arg
|
37554
37672
|
)
|
37555
|
-
)
|
37673
|
+
)
|
37556
37674
|
)
|
37557
37675
|
end
|
37558
37676
|
|
@@ -37698,7 +37816,7 @@ rule(:vlan_map) do
|
|
37698
37816
|
"inner-tag-protocol-id" arg,
|
37699
37817
|
"vlan-id" arg,
|
37700
37818
|
"inner-vlan-id" arg
|
37701
|
-
)
|
37819
|
+
)
|
37702
37820
|
end
|
37703
37821
|
|
37704
37822
|
rule(:vpls_filter) do
|
@@ -37895,7 +38013,7 @@ rule(:vpls_filter) do
|
|
37895
38013
|
"port-mirror",
|
37896
38014
|
"next-hop-group" arg
|
37897
38015
|
)
|
37898
|
-
)
|
38016
|
+
)
|
37899
38017
|
)
|
37900
38018
|
)
|
37901
38019
|
)
|