-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
3039 lines (3031 loc) · 97.9 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: Open Traffic Generator API
description: >-
The open traffic generator API
version: 0.1.15
contact:
name: Open Traffic Generator Project Team
email: [email protected]
license:
name: MIT
url: https://opensource.org/licenses/MIT
x-extensions:
- x-pattern: ../flow/packet-header/patterns.yaml#/components/schemas/Flow.Pattern
format: Valid formats of string value, values, start, step are ipv4, ipv6, hex,
mac, integer, number
default: Default value of Flow.Pattern/properties/value
- x-status: "current | under-review | deprecated | obsolete - If no status is specified,\
\ the default is \"current\". - the `x-status` keyword takes as an argument\
\ one of the strings \"current\", \"deprecated\", or \"obsolete\", \"under-review.\
\ - \"current\" means that the definition is current and valid. - \"deprecated\"\
\ indicates an obsolete definition, but it permits new/\n continued implementation\
\ in order to foster interoperability with\n older/existing implementations.\n\
- \"obsolete\" means the definition is obsolete and SHOULD NOT be\n implemented\
\ and/or can be removed from implementations.\n \nExample Usage:\n components:\n\
\ schemas:\n Device.BgpAsPath:\n x-status: under-review\n \
\ type:object"
servers:
- url: /
paths:
/config:
post:
tags:
- Configuration
operationId: set_config
description: >-
Sets configuration resources on the traffic generator.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Config'
responses:
'200':
$ref: '#/components/responses/Success'
'409':
$ref: '#/components/responses/Conflict'
'590':
$ref: '#/components/responses/Fail'
patch:
tags:
- Configuration
operationId: update_config
description: >-
Updates configuration resources on the traffic generator.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Config'
responses:
'200':
$ref: '#/components/responses/Success'
'409':
$ref: '#/components/responses/Conflict'
'590':
$ref: '#/components/responses/Fail'
get:
tags:
- Configuration
operationId: get_config
responses:
'200':
description: >-
Config response from the traffic generator
content:
application/json:
schema:
$ref: '#/components/schemas/Config'
/control/transmit:
post:
tags:
- Control
operationId: set_transmit_state
description: >-
Updates the state of configuration resources on the traffic generator.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Transmit.State'
responses:
'200':
$ref: '#/components/responses/Success'
'409':
$ref: '#/components/responses/Conflict'
'590':
$ref: '#/components/responses/Fail'
/control/link:
post:
tags:
- Control
operationId: set_link_state
description: >-
Updates the state of configuration resources on the traffic generator.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Link.State'
responses:
'200':
$ref: '#/components/responses/Success'
'409':
$ref: '#/components/responses/Conflict'
'590':
$ref: '#/components/responses/Fail'
/control/capture:
post:
tags:
- Control
operationId: set_capture_state
description: >-
Updates the state of configuration resources on the traffic generator.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Capture.State'
responses:
'200':
$ref: '#/components/responses/Success'
'409':
$ref: '#/components/responses/Conflict'
'590':
$ref: '#/components/responses/Fail'
/results/metrics:
description: >-
Traffic metrics API
post:
tags:
- Results
operationId: get_metrics
requestBody:
description: >-
Request to traffic generator for metrics of choice
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Metrics.Request'
responses:
'200':
description: >-
Response from traffic generator for chosen metrics
content:
application/json:
schema:
$ref: '#/components/schemas/Metrics.Response'
/results/state:
post:
tags:
- Results
operationId: get_state_metrics
responses:
'200':
description: >-
List of states
content:
application/json:
schema:
$ref: '#/components/schemas/State.Metrics'
/results/capabilities:
description: >-
Capability results API
post:
tags:
- Results
operationId: get_capabilities
responses:
'200':
description: >-
Capability results response from the traffic generator
content:
application/json:
schema:
$ref: '#/components/schemas/Capabilities'
/results/capture:
description: >-
Capture results API
post:
tags:
- Results
operationId: get_capture
requestBody:
description: >-
Capture results request to the traffic generator.
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Capture.Request'
responses:
'200':
description: "Capture results response from the traffic generator. "
content:
application/octet-stream:
schema:
type: string
format: binary
components:
responses:
Success:
description: >-
The request has succeeded. Detailed warnings if any will be returned as a
list.
content:
application/json:
schema:
$ref: '#/components/schemas/Details'
SuccessNoContent:
description: >-
The traffic generator has successfully completed the request and there is
no content to return.
Pending:
description: >-
The traffic generator is currently processing the request which has not yet
completed. If a traffic generator implementation follows an asynchronous model
it should use this response to indicate that an operation has been accepted
but has not completed.
content:
application/json:
schema:
$ref: '#/components/schemas/Pending.Detail'
Conflict:
description: >-
The request is denied as the traffic generator is currently processing another
request.
content:
application/json:
schema:
$ref: '#/components/schemas/Details'
Fail:
description: >-
The request has failed. Detailed errors will be returned as a list.
content:
application/json:
schema:
$ref: '#/components/schemas/Details'
schemas:
Config:
description: >-
A container for all models that are part of the configuration.
type: object
properties:
ports:
description: >-
The ports that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Port'
lags:
description: >-
The lags that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Lag'
layer1:
description: >-
The layer1 settings that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Layer1'
captures:
description: >-
The capture settings that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Capture'
devices:
description: >-
The emulated device settings that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Device'
flows:
description: >-
The flows that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Flow'
options:
$ref: '#/components/schemas/Config.Options'
Config.Options:
description: >-
Global configuration options.
type: object
properties:
port_options:
$ref: '#/components/schemas/Port.Options'
Port:
description: >-
An abstract test port.
type: object
properties:
location:
description: >-
The location of a test port. It is the endpoint where packets will emit
from.
Test port locations can be the following:
- physical appliance with multiple ports
- physical chassis with multiple cards and ports
- local interface
- virtual machine, docker container, kubernetes cluster
The test port location format is implementation specific. Use the /results/capabilities
API to determine what formats an implementation supports for the location
property.
Get the configured location state by using the /results/port API.
type: string
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Port.Options:
description: "Common port options that apply to all configured Port objects. "
type: object
properties:
location_preemption:
description: >-
Preempt all the test port locations as defined by the Port.Port.properties.location.
If the test ports defined by their location values are in use and this
value is true, the test ports will be preempted.
type: boolean
default: false
Lag:
description: >-
A container for LAG settings.
type: object
required:
- protocol
- name
properties:
port_names:
description: >-
A list of unique names of port objects that will be part of the same
lag. The value of the port_names property is the count for any child property
in this hierarchy that is a container for a device pattern.
type: array
items:
type: string
x-constraint:
- /components/schemas/Port/properties/name
protocol:
description: >-
Static lag or LACP protocol settings.
$ref: '#/components/schemas/Lag.Protocol'
ethernet:
description: >-
Per port ethernet and vlan settings.
$ref: '#/components/schemas/Device.Ethernet'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
Lag.Protocol:
type: object
required:
- choice
properties:
choice:
description: >-
The type of lag protocol.
type: string
enum:
- lacp
- static
lacp:
description: >-
The container for link aggregation control protocol settings.
$ref: '#/components/schemas/Lag.Lacp'
static:
description: >-
The container for link aggregation static protocol settings.
$ref: '#/components/schemas/Lag.Static'
Lag.Static:
type: object
properties:
lag_id:
description: >-
The static lag id.
$ref: '#/components/schemas/Device.Pattern'
Lag.Lacp:
type: object
properties:
actor_key:
description: >-
The actor key.
$ref: '#/components/schemas/Device.Pattern'
actor_port_number:
description: >-
The actor port number.
$ref: '#/components/schemas/Device.Pattern'
actor_port_priority:
description: >-
The actor port priority.
$ref: '#/components/schemas/Device.Pattern'
actor_system_id:
description: >-
The actor system id.
$ref: '#/components/schemas/Device.Pattern'
actor_system_priority:
description: >-
The actor system priority.
$ref: '#/components/schemas/Device.Pattern'
Device.Ethernet:
description: >-
Emulated ethernet protocol. A top level in the emulated device stack.
type: object
properties:
mac:
description: >-
Media access control address (MAC) is a 48bit identifier for use as a
network address. The value can be an int or a hex string with or without
spaces or colons separating each byte. The min value is 0 or '00:00:00:00:00:00'.
The max value is 281474976710655 or 'FF:FF:FF:FF:FF:FF'.
x-pattern:
format: mac
default: 0
$ref: '#/components/schemas/Device.Pattern'
mtu:
description: >-
Maximum transmission unit. default is 1500
x-pattern:
format: integer
default: 1500
$ref: '#/components/schemas/Device.Pattern'
vlans:
description: >-
List of vlans
type: array
items:
$ref: '#/components/schemas/Device.Vlan'
ipv4:
$ref: '#/components/schemas/Device.Ipv4'
ipv6:
$ref: '#/components/schemas/Device.Ipv6'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Device.Pattern:
description: >-
A container for emulated device property patterns.
type: object
required:
- choice
properties:
choice:
type: string
enum:
- value
- values
- increment
- decrement
value:
type: string
values:
type: array
items:
type: string
increment:
$ref: '#/components/schemas/Device.Counter'
decrement:
$ref: '#/components/schemas/Device.Counter'
Device.Counter:
description: >-
An incrementing pattern.
type: object
properties:
start:
type: string
step:
type: string
Device.Vlan:
description: >-
Emulated vlan protocol
type: object
x-constants:
tpid_8100: 8100
tpid_88a8: 88a8
tpid_9100: 9100
tpid_9200: 9200
tpid_9300: 9300
properties:
tpid:
description: >-
Vlan tag protocol identifier.
x-pattern:
format: hex
default: 8100
$ref: '#/components/schemas/Device.Pattern'
priority:
description: >-
Vlan priority.
x-pattern:
format: integer
default: 0
$ref: '#/components/schemas/Device.Pattern'
id:
description: >-
Vlan id.
x-pattern:
format: integer
default: 1
$ref: '#/components/schemas/Device.Pattern'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Device.Ipv4:
description: >-
Emulated ipv4 interface
type: object
properties:
address:
description: >-
The ipv4 address.
$ref: '#/components/schemas/Device.Pattern'
gateway:
description: >-
The ipv4 address of the gateway.
$ref: '#/components/schemas/Device.Pattern'
prefix:
description: >-
The prefix of the ipv4 address.
$ref: '#/components/schemas/Device.Pattern'
bgpv4:
description: >-
The bgpv4 device.
$ref: '#/components/schemas/Device.Bgpv4'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Device.Ipv4Loopback:
x-status: under-review
description: >-
Emulated ipv4 loopback interface
type: object
properties:
address:
description: >-
The ipv4 address.
$ref: '#/components/schemas/Device.Pattern'
bgpv4:
description: >-
The bgpv4 device.
$ref: '#/components/schemas/Device.Bgpv4'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Device.Bgpv4:
x-status: under-review
description: >-
Emulated BGPv4 router
type: object
properties:
router_id:
description: "The BGP router identifier. It must be the string representation\
\ of an IPv4 address "
$ref: '#/components/schemas/Device.Pattern'
as_number:
description: >-
Autonomous system (AS) number of 4 byte
$ref: '#/components/schemas/Device.Pattern'
as_type:
description: >-
The type of BGP autonomous system. External BGP (EBGP) is used for BGP
links between two or more autonomous systems. Internal BGP (IBGP) is used
within a single autonomous system.
type: string
enum:
- ibgp
- ebgp
hold_time_interval:
description: >-
Number of seconds the sender proposes for the value of the Hold Timer
$ref: '#/components/schemas/Device.Pattern'
keep_alive_interval:
description: >-
Number of seconds between transmissions of Keep Alive messages by router
$ref: '#/components/schemas/Device.Pattern'
dut_ipv4_address:
description: >-
IPv4 address of the BGP peer for the session
$ref: '#/components/schemas/Device.Pattern'
dut_as_number:
description: >-
Autonomous system (AS) number of the BGP peer router (DUT)
$ref: '#/components/schemas/Device.Pattern'
bgpv4_route_ranges:
description: >-
Emulated bgpv4 route ranges
type: array
items:
$ref: '#/components/schemas/Device.Bgpv4RouteRange'
bgpv6_route_ranges:
description: >-
Emulated bgpv6 route ranges
type: array
items:
$ref: '#/components/schemas/Device.Bgpv6RouteRange'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Device.Bgpv4RouteRange:
description: >-
Emulated bgpv4 route ranges. Contains 1..n route ranges. A single route range
takes shape as an address/prefix
type: object
properties:
range_count:
description: "The number of route ranges per parent bgpv4 device.\nIf creating\
\ sequential routes the range count should default to 1 and the address_count\
\ can be used to create a range of \nIf the parent device_count is 6\
\ and the range_count is 2 that means there will be 2 route_range entries\
\ for every device for a total of 12 route ranges. Any child patterns\
\ will be applied across the total number of route ranges which implies\
\ a pattern count of 12."
type: integer
minimum: 1
default: 1
address_count:
description: >-
The number of ipv4 addresses in each route range.
type: integer
minimum: 1
default: 1
address:
description: >-
The network address of the first network
$ref: '#/components/schemas/Device.Pattern'
address_step:
description: >-
The amount to increase each address by.
$ref: '#/components/schemas/Device.Pattern'
prefix:
description: "The network prefix to be applied to each address. "
$ref: '#/components/schemas/Device.Pattern'
next_hop_address:
description: >-
IP Address of next router to forward a packet to its final destination
$ref: '#/components/schemas/Device.Pattern'
community:
type: array
items:
$ref: '#/components/schemas/Device.BgpCommunity'
as_path:
$ref: '#/components/schemas/Device.BgpAsPath'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Device.BgpCommunity:
description: >-
BGP communities provide additional capability for tagging routes and for
modifying BGP routing policy on upstream and downstream routers BGP community
is a 32-bit number which broken into 16-bit AS number and a 16-bit custom
value
type: object
properties:
community_type:
description: >-
The type of community AS number.
type: string
enum:
- manual_as_number
- no_export
- no_advertised
- no_export_subconfed
- llgr_stale
- no_llgr
as_number:
description: >-
First two octets of 32 bit community AS number
$ref: '#/components/schemas/Device.Pattern'
as_custom:
description: "Last two octets of the community AS number "
$ref: '#/components/schemas/Device.Pattern'
Device.BgpAsPath:
description: >-
Autonomous Systems (AS) numbers that a route passes through to reach the
destination
type: object
properties:
override_peer_as_set_mode:
x-pattern:
format:
- integer
default: 1
$ref: '#/components/schemas/Device.Pattern'
as_set_mode:
type: string
enum:
- do_not_include_local_as
- include_as_seq
- include_as_set
- include_as_confed_seq
- include_as_confed_set
- prepend_to_first_segment
as_path_segments:
description: >-
The AS path segments (non random) per route range
type: array
items:
$ref: '#/components/schemas/Device.BgpAsPathSegment'
Device.BgpAsPathSegment:
type: object
properties:
segment_type:
description: >-
as_seq is the most common type of AS_PATH PA, it contains the list of
ASNs starting with the most recent ASN being added read from left to
right.
The other three AS_PATH types are used for Confederations - AS_SET is
the type of AS_PATH attribute that summarizes routes using using the aggregate-address
command, allowing AS_PATHs to be summarized in the update as well. -
AS_CONFED_SEQ gives the list of ASNs in the path starting with the most
recent ASN to be added reading left to right - AS_CONFED_SET will allow
summarization of multiple AS PATHs to be sent in BGP Updates.
type: string
enum:
- as_seq
- as_set
- as_confed_seq
- as_confed_set
default: as_sequence
as_numbers:
description: >-
The AS numbers in this AS path segment. The implementation must correctly
assign delimeters between ASNs.
type: array
items:
type: integer
default: 1
Device.Bgpv6RouteRange:
x-status: under-review
description: >-
Emulated bgpv6 route range
type: object
properties:
range_count:
description: "The number of route ranges per parent bgpv4 device.\nIf creating\
\ sequential routes the range count should default to 1 and the address_count\
\ can be used to create a range of \nIf the parent device_count is 6\
\ and the range_count is 2 that means there will be 2 route_range entries\
\ for every device for a total of 12 route ranges. Any child patterns\
\ will be applied across the total number of route ranges which implies\
\ a pattern count of 12."
type: integer
minimum: 1
default: 1
address_count:
description: >-
The number of ipv6 addresses in each route range.
type: integer
minimum: 1
default: 1
address:
description: >-
The network address of the first network
$ref: '#/components/schemas/Device.Pattern'
address_step:
description: >-
The amount to increase each address by.
$ref: '#/components/schemas/Device.Pattern'
prefix:
description: >-
Ipv6 prefix length with minimum value is 0 to maximum value is 128
$ref: '#/components/schemas/Device.Pattern'
next_hop_address:
description: >-
IP Address of the next router to forward a packet to its final destination
$ref: '#/components/schemas/Device.Pattern'
community:
type: array
items:
$ref: '#/components/schemas/Device.BgpCommunity'
as_path:
$ref: '#/components/schemas/Device.BgpAsPath'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Device.Ipv6:
description: >-
Emulated ipv6 protocol
type: object
properties:
address:
$ref: '#/components/schemas/Device.Pattern'
gateway:
$ref: '#/components/schemas/Device.Pattern'
prefix:
$ref: '#/components/schemas/Device.Pattern'
bgpv6:
$ref: '#/components/schemas/Device.Bgpv6'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Device.Ipv6Loopback:
x-status: under-review
description: >-
Emulated ipv6 loopback interface
type: object
properties:
address:
description: >-
The ipv6 address.
$ref: '#/components/schemas/Device.Pattern'
bgpv6:
description: >-
The bgpv6 device.
$ref: '#/components/schemas/Device.Bgpv6'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Device.Bgpv6:
x-status: under-review
description: >-
Emulated BGPv4 router and routes
type: object
properties:
router_id:
description: "The BGP router identifier. It must be the string representation\
\ of an IPv4 address "
$ref: '#/components/schemas/Device.Pattern'
as_number:
description: >-
Autonomous system (AS) number of 4 byte
$ref: '#/components/schemas/Device.Pattern'
as_type:
description: >-
The type of BGP autonomous system. External BGP (EBGP) is used for BGP
links between two or more autonomous systems. Internal BGP (IBGP) is used
within a single autonomous system.
type: string
enum:
- ibgp
- ebgp
hold_time_interval:
description: >-
Number of seconds the sender proposes for the value of the Hold Timer
$ref: '#/components/schemas/Device.Pattern'
keep_alive_interval:
description: >-
Number of seconds between transmissions of Keep Alive messages by router
$ref: '#/components/schemas/Device.Pattern'
dut_ipv6_address:
description: >-
IPv4 address of the BGP peer for the session
$ref: '#/components/schemas/Device.Pattern'
dut_as_number:
description: >-
Autonomous system (AS) number of the BGP peer router (DUT)
$ref: '#/components/schemas/Device.Pattern'
bgpv4_route_ranges:
description: >-
Emulated bgpv4 route ranges
type: array
items:
$ref: '#/components/schemas/Device.Bgpv4RouteRange'
bgpv6_route_ranges:
description: >-
Emulated bgpv6 route ranges
type: array
items:
$ref: '#/components/schemas/Device.Bgpv6RouteRange'
name:
description: >-
Globally unique name of an object. It also serves as the primary key for
arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Layer1:
description: >-
A container for layer1 settings.
type: object
required:
- port_names
- name
properties:
port_names:
description: "A list of unique names of port objects that will share the\
\ choice settings. "
type: array
items:
type: string
x-constraint:
- /components/schemas/Port/properties/name
speed:
description: >-
Set the speed if supported.
type: string
enum:
- speed_10_fd_mbps
- speed_10_hd_mbps
- speed_100_fd_mbps
- speed_100_hd_mbps
- speed_1_gbps
- speed_10_gbps
- speed_25_gbps
- speed_40_gbps
- speed_100_gbps
- speed_200_gbps
- speed_400_gbps
default: speed_10_gbps
media:
description: >-
Set the type of media interface if supported.
type: string
enum:
- copper
- fiber
- sgmii
promiscuous:
description: >-
Enable promiscuous mode if supported.
type: boolean
default: false
mtu:
description: >-
Set the maximum transmission unit size if supported.
type: integer
default: 1500
ieee_media_defaults:
description: >-
Set to true to override the auto_negotiate, link_training and rs_fec settings
for gigabit ethernet interfaces.
type: boolean
default: true
auto_negotiate:
description: >-