├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ └── workflow.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── MODEL-GUIDE.md ├── api ├── api.yaml └── info.yaml ├── artifacts ├── openapi.html ├── openapi.yaml └── otg.proto ├── capture └── capture.yaml ├── common └── common.yaml ├── config ├── append.yaml ├── config.yaml ├── delete.yaml └── update.yaml ├── control ├── action.yaml ├── bgp.yaml ├── ipv4.yaml ├── ipv6.yaml ├── isis.yaml ├── ping.yaml ├── port.yaml ├── protocol.yaml ├── readme.md ├── state.yaml └── traffic.yaml ├── device ├── bgp │ ├── bgp.yaml │ ├── bgpaddpath.yaml │ ├── bgpadvanced.yaml │ ├── bgpaspath.yaml │ ├── bgpcapability.yaml │ ├── bgpcommunity.yaml │ ├── bgpextcommunity.yaml │ ├── bgpextendedcommunity.yaml │ ├── bgpgracefulrestart.yaml │ ├── bgplearnedinfofilter.yaml │ ├── bgpmplslabelbindings.yaml │ ├── bgproutedistinguisher.yaml │ ├── bgprouterange.yaml │ ├── bgproutetarget.yaml │ ├── bgpsrtebindingsubtlv.yaml │ ├── bgpsrteexplicitnulllabelpolicysubtlv.yaml │ ├── bgpsrtepolicycolorsubtlv.yaml │ ├── bgpsrtepolicynamesubtlv.yaml │ ├── bgpsrtepolicyprioritysubtlv.yaml │ ├── bgpsrtepreferencesubtlv.yaml │ ├── bgpsrtesegment.yaml │ ├── bgpsrtesegmentlist.yaml │ ├── bgpsrtev4policy.yaml │ ├── bgpsrtev4remoteendpointsubtlv.yaml │ ├── bgpsrtev4tunneltlv.yaml │ ├── bgpsrtev6policy.yaml │ ├── bgpsrtev6remoteendpointsubtlv.yaml │ ├── bgpsrtev6tunneltlv.yaml │ ├── bgpupdatereplay.yaml │ ├── bgpv4.yaml │ ├── bgpv4routerange.yaml │ ├── bgpv6.yaml │ ├── bgpv6routerange.yaml │ ├── bgpv6segmentrouting.yaml │ ├── evpn │ │ ├── bgpevpnbroadcastdomain.yaml │ │ ├── bgpevpnbroadcastdomainvxlan.yaml │ │ ├── bgpevpncmacranges.yaml │ │ ├── bgpevpnethernetsegment.yaml │ │ ├── bgpevpnevibase.yaml │ │ ├── bgpevpnevivxlan.yaml │ │ ├── bgpv4evpnbroadcastdomainvxlan.yaml │ │ ├── bgpv4evpnethernetsegment.yaml │ │ ├── bgpv4evpnevis.yaml │ │ ├── bgpv4evpnevivxlan.yaml │ │ ├── bgpv6evpnbroadcastdomainvxlan.yaml │ │ ├── bgpv6evpnethernetsegment.yaml │ │ ├── bgpv6evpnevis.yaml │ │ └── bgpv6evpnevivxlan.yaml │ └── routepathattributes.yaml ├── bmp │ └── bmp.yaml ├── device.yaml ├── dhcp │ ├── clients │ │ ├── v4 │ │ │ ├── dhcpclientparams.yaml │ │ │ └── dhcpv4client.yaml │ │ └── v6 │ │ │ └── dhcpv6client.yaml │ ├── common │ │ └── dhcpv6options.yaml │ └── servers │ │ ├── dhcpserver.yaml │ │ ├── v4 │ │ ├── dhcpv4server.yaml │ │ └── dhcpv4serverleases.yaml │ │ └── v6 │ │ └── dhcpv6server.yaml ├── ethernet.yaml ├── ipv4.yaml ├── ipv6.yaml ├── isis │ ├── adjacencysegmentid.yaml │ ├── gracefulrestart.yaml │ ├── interface.yaml │ ├── interfaceadvanced.yaml │ ├── interfaceauth.yaml │ ├── isis.yaml │ ├── linkprotection.yaml │ ├── multipleinstances.yaml │ ├── multitopology.yaml │ ├── prefixattributes.yaml │ ├── prefixsegmentid.yaml │ ├── routeradvanced.yaml │ ├── routerange.yaml │ ├── routerauth.yaml │ ├── routerbasic.yaml │ ├── segmentrouting.yaml │ ├── v4routerange.yaml │ └── v6routerange.yaml ├── linkstate │ └── teprofile.yaml ├── macsec │ ├── dataplane │ │ ├── cryptoengine.yaml │ │ ├── dataplane.yaml │ │ ├── rx.yaml │ │ └── tx.yaml │ ├── macsec.yaml │ ├── mka │ │ ├── basic.yaml │ │ ├── keyserver.yaml │ │ ├── mka.yaml │ │ ├── tx.yaml │ │ └── txsc.yaml │ └── statickey │ │ ├── rx.yaml │ │ ├── rxsc.yaml │ │ ├── statickey.yaml │ │ ├── tx.yaml │ │ └── txsc.yaml ├── ospfv2 │ ├── interface │ │ ├── auth.yaml │ │ ├── interface.yaml │ │ └── linkprotection.yaml │ ├── router.yaml │ └── routerange │ │ └── v4routerange.yaml ├── ospfv3 │ ├── interface │ │ └── interface.yaml │ ├── router.yaml │ └── routerange │ │ └── v6routerange.yaml ├── rocev2 │ ├── qps.yaml │ ├── rocev2.yaml │ ├── rocev2ipv4.yaml │ └── rocev2ipv6.yaml ├── routes │ └── routeaddresses.yaml ├── rsvp │ ├── rsvp.yaml │ ├── rsvpEgressLsp.yaml │ ├── rsvpEro.yaml │ ├── rsvpFastReroute.yaml │ ├── rsvpIngressP2PLsp.yaml │ ├── rsvpInterface.yaml │ ├── rsvpLspInterface.yaml │ ├── rsvpSessionAttribute.yaml │ └── rsvpTspec.yaml ├── vlan.yaml └── vxlan │ ├── destinationipmode.yaml │ ├── multicast.yaml │ ├── unicast.yaml │ └── vxlan.yaml ├── egress └── egressonlytracking.yaml ├── event └── event.yaml ├── flow ├── duration.yaml ├── endpoint.yaml ├── flow.yaml ├── metrics.yaml ├── packet-headers │ ├── arp.yaml │ ├── custom.yaml │ ├── ethernet.yaml │ ├── ethernetpause.yaml │ ├── gre.yaml │ ├── gtp.yaml │ ├── gtpv2.yaml │ ├── header.yaml │ ├── icmp.yaml │ ├── icmpv6.yaml │ ├── igmpv1.yaml │ ├── ipv4.yaml │ ├── ipv6.yaml │ ├── ipv6_routing.yaml │ ├── lacp.yaml │ ├── macsec.yaml │ ├── mpls.yaml │ ├── pfcpause.yaml │ ├── ppp.yaml │ ├── rsvp.yaml │ ├── snmpv2c.yaml │ ├── tcp.yaml │ ├── udp.yaml │ ├── vlan.yaml │ └── vxlan.yaml ├── payload.yaml ├── port-pattern.yaml ├── rate.yaml ├── rocev2flow.yaml ├── size.yaml └── statefulflow.yaml ├── images ├── use_case_1.PNG ├── use_case_2.PNG ├── use_case_3.PNG ├── use_case_4.PNG ├── use_case_5.PNG ├── use_case_5a.PNG ├── use_case_6.PNG ├── use_case_7.PNG └── use_case_8.PNG ├── lag └── lag.yaml ├── layer1 └── layer1.yaml ├── license ├── lldp └── lldp.yaml ├── port ├── perportoptions.yaml ├── port.yaml └── rocev2.yaml ├── readme.md ├── requirements.txt ├── result ├── bgpprefix.yaml ├── bgpv4.yaml ├── bgpv6.yaml ├── bmp.yaml ├── bmpserver.yaml ├── capability.yaml ├── capture.yaml ├── convergence.yaml ├── dhcpv4client.yaml ├── dhcpv4interface.yaml ├── dhcpv4server.yaml ├── dhcpv4serverleases.yaml ├── dhcpv6client.yaml ├── dhcpv6interface.yaml ├── dhcpv6server.yaml ├── dhcpv6serverleases.yaml ├── egressonlytracking.yaml ├── event.yaml ├── flow.yaml ├── isis.yaml ├── isisiihs.yaml ├── isislsp.yaml ├── lacp.yaml ├── lag.yaml ├── lldp.yaml ├── lldpneighbors.yaml ├── macsec.yaml ├── metrics.yaml ├── mka.yaml ├── neighborsv4.yaml ├── neighborsv6.yaml ├── ospfv2.yaml ├── ospfv2lsa.yaml ├── ospfv3.yaml ├── ospfv3lsa.yaml ├── port.yaml ├── request.yaml ├── resultbgpaspath.yaml ├── resultbgpcommunity.yaml ├── rocev2flow.yaml ├── rocev2ipv4.yaml ├── rocev2ipv6.yaml ├── rsvp.yaml ├── rsvplsp.yaml ├── state.yaml └── states.yaml └── scripts └── patch-proto.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /MODEL-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/MODEL-GUIDE.md -------------------------------------------------------------------------------- /api/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/api/api.yaml -------------------------------------------------------------------------------- /api/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/api/info.yaml -------------------------------------------------------------------------------- /artifacts/openapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/artifacts/openapi.html -------------------------------------------------------------------------------- /artifacts/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/artifacts/openapi.yaml -------------------------------------------------------------------------------- /artifacts/otg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/artifacts/otg.proto -------------------------------------------------------------------------------- /capture/capture.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/capture/capture.yaml -------------------------------------------------------------------------------- /common/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/common/common.yaml -------------------------------------------------------------------------------- /config/append.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/config/append.yaml -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/config/delete.yaml -------------------------------------------------------------------------------- /config/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/config/update.yaml -------------------------------------------------------------------------------- /control/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/action.yaml -------------------------------------------------------------------------------- /control/bgp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/bgp.yaml -------------------------------------------------------------------------------- /control/ipv4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/ipv4.yaml -------------------------------------------------------------------------------- /control/ipv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/ipv6.yaml -------------------------------------------------------------------------------- /control/isis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/isis.yaml -------------------------------------------------------------------------------- /control/ping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/ping.yaml -------------------------------------------------------------------------------- /control/port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/port.yaml -------------------------------------------------------------------------------- /control/protocol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/protocol.yaml -------------------------------------------------------------------------------- /control/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/readme.md -------------------------------------------------------------------------------- /control/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/state.yaml -------------------------------------------------------------------------------- /control/traffic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/control/traffic.yaml -------------------------------------------------------------------------------- /device/bgp/bgp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgp.yaml -------------------------------------------------------------------------------- /device/bgp/bgpaddpath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpaddpath.yaml -------------------------------------------------------------------------------- /device/bgp/bgpadvanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpadvanced.yaml -------------------------------------------------------------------------------- /device/bgp/bgpaspath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpaspath.yaml -------------------------------------------------------------------------------- /device/bgp/bgpcapability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpcapability.yaml -------------------------------------------------------------------------------- /device/bgp/bgpcommunity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpcommunity.yaml -------------------------------------------------------------------------------- /device/bgp/bgpextcommunity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpextcommunity.yaml -------------------------------------------------------------------------------- /device/bgp/bgpextendedcommunity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpextendedcommunity.yaml -------------------------------------------------------------------------------- /device/bgp/bgpgracefulrestart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpgracefulrestart.yaml -------------------------------------------------------------------------------- /device/bgp/bgplearnedinfofilter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgplearnedinfofilter.yaml -------------------------------------------------------------------------------- /device/bgp/bgpmplslabelbindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpmplslabelbindings.yaml -------------------------------------------------------------------------------- /device/bgp/bgproutedistinguisher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgproutedistinguisher.yaml -------------------------------------------------------------------------------- /device/bgp/bgprouterange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgprouterange.yaml -------------------------------------------------------------------------------- /device/bgp/bgproutetarget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgproutetarget.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtebindingsubtlv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtebindingsubtlv.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrteexplicitnulllabelpolicysubtlv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrteexplicitnulllabelpolicysubtlv.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtepolicycolorsubtlv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtepolicycolorsubtlv.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtepolicynamesubtlv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtepolicynamesubtlv.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtepolicyprioritysubtlv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtepolicyprioritysubtlv.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtepreferencesubtlv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtepreferencesubtlv.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtesegment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtesegment.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtesegmentlist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtesegmentlist.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtev4policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtev4policy.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtev4remoteendpointsubtlv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtev4remoteendpointsubtlv.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtev4tunneltlv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtev4tunneltlv.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtev6policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtev6policy.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtev6remoteendpointsubtlv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtev6remoteendpointsubtlv.yaml -------------------------------------------------------------------------------- /device/bgp/bgpsrtev6tunneltlv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpsrtev6tunneltlv.yaml -------------------------------------------------------------------------------- /device/bgp/bgpupdatereplay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpupdatereplay.yaml -------------------------------------------------------------------------------- /device/bgp/bgpv4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpv4.yaml -------------------------------------------------------------------------------- /device/bgp/bgpv4routerange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpv4routerange.yaml -------------------------------------------------------------------------------- /device/bgp/bgpv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpv6.yaml -------------------------------------------------------------------------------- /device/bgp/bgpv6routerange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpv6routerange.yaml -------------------------------------------------------------------------------- /device/bgp/bgpv6segmentrouting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/bgpv6segmentrouting.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpevpnbroadcastdomain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpevpnbroadcastdomain.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpevpnbroadcastdomainvxlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpevpnbroadcastdomainvxlan.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpevpncmacranges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpevpncmacranges.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpevpnethernetsegment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpevpnethernetsegment.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpevpnevibase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpevpnevibase.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpevpnevivxlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpevpnevivxlan.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpv4evpnbroadcastdomainvxlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpv4evpnbroadcastdomainvxlan.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpv4evpnethernetsegment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpv4evpnethernetsegment.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpv4evpnevis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpv4evpnevis.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpv4evpnevivxlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpv4evpnevivxlan.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpv6evpnbroadcastdomainvxlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpv6evpnbroadcastdomainvxlan.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpv6evpnethernetsegment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpv6evpnethernetsegment.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpv6evpnevis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpv6evpnevis.yaml -------------------------------------------------------------------------------- /device/bgp/evpn/bgpv6evpnevivxlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/evpn/bgpv6evpnevivxlan.yaml -------------------------------------------------------------------------------- /device/bgp/routepathattributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bgp/routepathattributes.yaml -------------------------------------------------------------------------------- /device/bmp/bmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/bmp/bmp.yaml -------------------------------------------------------------------------------- /device/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/device.yaml -------------------------------------------------------------------------------- /device/dhcp/clients/v4/dhcpclientparams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/dhcp/clients/v4/dhcpclientparams.yaml -------------------------------------------------------------------------------- /device/dhcp/clients/v4/dhcpv4client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/dhcp/clients/v4/dhcpv4client.yaml -------------------------------------------------------------------------------- /device/dhcp/clients/v6/dhcpv6client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/dhcp/clients/v6/dhcpv6client.yaml -------------------------------------------------------------------------------- /device/dhcp/common/dhcpv6options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/dhcp/common/dhcpv6options.yaml -------------------------------------------------------------------------------- /device/dhcp/servers/dhcpserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/dhcp/servers/dhcpserver.yaml -------------------------------------------------------------------------------- /device/dhcp/servers/v4/dhcpv4server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/dhcp/servers/v4/dhcpv4server.yaml -------------------------------------------------------------------------------- /device/dhcp/servers/v4/dhcpv4serverleases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/dhcp/servers/v4/dhcpv4serverleases.yaml -------------------------------------------------------------------------------- /device/dhcp/servers/v6/dhcpv6server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/dhcp/servers/v6/dhcpv6server.yaml -------------------------------------------------------------------------------- /device/ethernet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ethernet.yaml -------------------------------------------------------------------------------- /device/ipv4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ipv4.yaml -------------------------------------------------------------------------------- /device/ipv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ipv6.yaml -------------------------------------------------------------------------------- /device/isis/adjacencysegmentid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/adjacencysegmentid.yaml -------------------------------------------------------------------------------- /device/isis/gracefulrestart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/gracefulrestart.yaml -------------------------------------------------------------------------------- /device/isis/interface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/interface.yaml -------------------------------------------------------------------------------- /device/isis/interfaceadvanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/interfaceadvanced.yaml -------------------------------------------------------------------------------- /device/isis/interfaceauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/interfaceauth.yaml -------------------------------------------------------------------------------- /device/isis/isis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/isis.yaml -------------------------------------------------------------------------------- /device/isis/linkprotection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/linkprotection.yaml -------------------------------------------------------------------------------- /device/isis/multipleinstances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/multipleinstances.yaml -------------------------------------------------------------------------------- /device/isis/multitopology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/multitopology.yaml -------------------------------------------------------------------------------- /device/isis/prefixattributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/prefixattributes.yaml -------------------------------------------------------------------------------- /device/isis/prefixsegmentid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/prefixsegmentid.yaml -------------------------------------------------------------------------------- /device/isis/routeradvanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/routeradvanced.yaml -------------------------------------------------------------------------------- /device/isis/routerange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/routerange.yaml -------------------------------------------------------------------------------- /device/isis/routerauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/routerauth.yaml -------------------------------------------------------------------------------- /device/isis/routerbasic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/routerbasic.yaml -------------------------------------------------------------------------------- /device/isis/segmentrouting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/segmentrouting.yaml -------------------------------------------------------------------------------- /device/isis/v4routerange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/v4routerange.yaml -------------------------------------------------------------------------------- /device/isis/v6routerange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/isis/v6routerange.yaml -------------------------------------------------------------------------------- /device/linkstate/teprofile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/linkstate/teprofile.yaml -------------------------------------------------------------------------------- /device/macsec/dataplane/cryptoengine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/dataplane/cryptoengine.yaml -------------------------------------------------------------------------------- /device/macsec/dataplane/dataplane.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/dataplane/dataplane.yaml -------------------------------------------------------------------------------- /device/macsec/dataplane/rx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/dataplane/rx.yaml -------------------------------------------------------------------------------- /device/macsec/dataplane/tx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/dataplane/tx.yaml -------------------------------------------------------------------------------- /device/macsec/macsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/macsec.yaml -------------------------------------------------------------------------------- /device/macsec/mka/basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/mka/basic.yaml -------------------------------------------------------------------------------- /device/macsec/mka/keyserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/mka/keyserver.yaml -------------------------------------------------------------------------------- /device/macsec/mka/mka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/mka/mka.yaml -------------------------------------------------------------------------------- /device/macsec/mka/tx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/mka/tx.yaml -------------------------------------------------------------------------------- /device/macsec/mka/txsc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/mka/txsc.yaml -------------------------------------------------------------------------------- /device/macsec/statickey/rx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/statickey/rx.yaml -------------------------------------------------------------------------------- /device/macsec/statickey/rxsc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/statickey/rxsc.yaml -------------------------------------------------------------------------------- /device/macsec/statickey/statickey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/statickey/statickey.yaml -------------------------------------------------------------------------------- /device/macsec/statickey/tx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/statickey/tx.yaml -------------------------------------------------------------------------------- /device/macsec/statickey/txsc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/macsec/statickey/txsc.yaml -------------------------------------------------------------------------------- /device/ospfv2/interface/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ospfv2/interface/auth.yaml -------------------------------------------------------------------------------- /device/ospfv2/interface/interface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ospfv2/interface/interface.yaml -------------------------------------------------------------------------------- /device/ospfv2/interface/linkprotection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ospfv2/interface/linkprotection.yaml -------------------------------------------------------------------------------- /device/ospfv2/router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ospfv2/router.yaml -------------------------------------------------------------------------------- /device/ospfv2/routerange/v4routerange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ospfv2/routerange/v4routerange.yaml -------------------------------------------------------------------------------- /device/ospfv3/interface/interface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ospfv3/interface/interface.yaml -------------------------------------------------------------------------------- /device/ospfv3/router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ospfv3/router.yaml -------------------------------------------------------------------------------- /device/ospfv3/routerange/v6routerange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/ospfv3/routerange/v6routerange.yaml -------------------------------------------------------------------------------- /device/rocev2/qps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rocev2/qps.yaml -------------------------------------------------------------------------------- /device/rocev2/rocev2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rocev2/rocev2.yaml -------------------------------------------------------------------------------- /device/rocev2/rocev2ipv4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rocev2/rocev2ipv4.yaml -------------------------------------------------------------------------------- /device/rocev2/rocev2ipv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rocev2/rocev2ipv6.yaml -------------------------------------------------------------------------------- /device/routes/routeaddresses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/routes/routeaddresses.yaml -------------------------------------------------------------------------------- /device/rsvp/rsvp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rsvp/rsvp.yaml -------------------------------------------------------------------------------- /device/rsvp/rsvpEgressLsp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rsvp/rsvpEgressLsp.yaml -------------------------------------------------------------------------------- /device/rsvp/rsvpEro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rsvp/rsvpEro.yaml -------------------------------------------------------------------------------- /device/rsvp/rsvpFastReroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rsvp/rsvpFastReroute.yaml -------------------------------------------------------------------------------- /device/rsvp/rsvpIngressP2PLsp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rsvp/rsvpIngressP2PLsp.yaml -------------------------------------------------------------------------------- /device/rsvp/rsvpInterface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rsvp/rsvpInterface.yaml -------------------------------------------------------------------------------- /device/rsvp/rsvpLspInterface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rsvp/rsvpLspInterface.yaml -------------------------------------------------------------------------------- /device/rsvp/rsvpSessionAttribute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rsvp/rsvpSessionAttribute.yaml -------------------------------------------------------------------------------- /device/rsvp/rsvpTspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/rsvp/rsvpTspec.yaml -------------------------------------------------------------------------------- /device/vlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/vlan.yaml -------------------------------------------------------------------------------- /device/vxlan/destinationipmode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/vxlan/destinationipmode.yaml -------------------------------------------------------------------------------- /device/vxlan/multicast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/vxlan/multicast.yaml -------------------------------------------------------------------------------- /device/vxlan/unicast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/vxlan/unicast.yaml -------------------------------------------------------------------------------- /device/vxlan/vxlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/device/vxlan/vxlan.yaml -------------------------------------------------------------------------------- /egress/egressonlytracking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/egress/egressonlytracking.yaml -------------------------------------------------------------------------------- /event/event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/event/event.yaml -------------------------------------------------------------------------------- /flow/duration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/duration.yaml -------------------------------------------------------------------------------- /flow/endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/endpoint.yaml -------------------------------------------------------------------------------- /flow/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/flow.yaml -------------------------------------------------------------------------------- /flow/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/metrics.yaml -------------------------------------------------------------------------------- /flow/packet-headers/arp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/arp.yaml -------------------------------------------------------------------------------- /flow/packet-headers/custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/custom.yaml -------------------------------------------------------------------------------- /flow/packet-headers/ethernet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/ethernet.yaml -------------------------------------------------------------------------------- /flow/packet-headers/ethernetpause.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/ethernetpause.yaml -------------------------------------------------------------------------------- /flow/packet-headers/gre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/gre.yaml -------------------------------------------------------------------------------- /flow/packet-headers/gtp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/gtp.yaml -------------------------------------------------------------------------------- /flow/packet-headers/gtpv2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/gtpv2.yaml -------------------------------------------------------------------------------- /flow/packet-headers/header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/header.yaml -------------------------------------------------------------------------------- /flow/packet-headers/icmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/icmp.yaml -------------------------------------------------------------------------------- /flow/packet-headers/icmpv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/icmpv6.yaml -------------------------------------------------------------------------------- /flow/packet-headers/igmpv1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/igmpv1.yaml -------------------------------------------------------------------------------- /flow/packet-headers/ipv4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/ipv4.yaml -------------------------------------------------------------------------------- /flow/packet-headers/ipv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/ipv6.yaml -------------------------------------------------------------------------------- /flow/packet-headers/ipv6_routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/ipv6_routing.yaml -------------------------------------------------------------------------------- /flow/packet-headers/lacp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/lacp.yaml -------------------------------------------------------------------------------- /flow/packet-headers/macsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/macsec.yaml -------------------------------------------------------------------------------- /flow/packet-headers/mpls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/mpls.yaml -------------------------------------------------------------------------------- /flow/packet-headers/pfcpause.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/pfcpause.yaml -------------------------------------------------------------------------------- /flow/packet-headers/ppp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/ppp.yaml -------------------------------------------------------------------------------- /flow/packet-headers/rsvp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/rsvp.yaml -------------------------------------------------------------------------------- /flow/packet-headers/snmpv2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/snmpv2c.yaml -------------------------------------------------------------------------------- /flow/packet-headers/tcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/tcp.yaml -------------------------------------------------------------------------------- /flow/packet-headers/udp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/udp.yaml -------------------------------------------------------------------------------- /flow/packet-headers/vlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/vlan.yaml -------------------------------------------------------------------------------- /flow/packet-headers/vxlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/packet-headers/vxlan.yaml -------------------------------------------------------------------------------- /flow/payload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/payload.yaml -------------------------------------------------------------------------------- /flow/port-pattern.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/port-pattern.yaml -------------------------------------------------------------------------------- /flow/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/rate.yaml -------------------------------------------------------------------------------- /flow/rocev2flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/rocev2flow.yaml -------------------------------------------------------------------------------- /flow/size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/size.yaml -------------------------------------------------------------------------------- /flow/statefulflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/flow/statefulflow.yaml -------------------------------------------------------------------------------- /images/use_case_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/images/use_case_1.PNG -------------------------------------------------------------------------------- /images/use_case_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/images/use_case_2.PNG -------------------------------------------------------------------------------- /images/use_case_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/images/use_case_3.PNG -------------------------------------------------------------------------------- /images/use_case_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/images/use_case_4.PNG -------------------------------------------------------------------------------- /images/use_case_5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/images/use_case_5.PNG -------------------------------------------------------------------------------- /images/use_case_5a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/images/use_case_5a.PNG -------------------------------------------------------------------------------- /images/use_case_6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/images/use_case_6.PNG -------------------------------------------------------------------------------- /images/use_case_7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/images/use_case_7.PNG -------------------------------------------------------------------------------- /images/use_case_8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/images/use_case_8.PNG -------------------------------------------------------------------------------- /lag/lag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/lag/lag.yaml -------------------------------------------------------------------------------- /layer1/layer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/layer1/layer1.yaml -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/license -------------------------------------------------------------------------------- /lldp/lldp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/lldp/lldp.yaml -------------------------------------------------------------------------------- /port/perportoptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/port/perportoptions.yaml -------------------------------------------------------------------------------- /port/port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/port/port.yaml -------------------------------------------------------------------------------- /port/rocev2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/port/rocev2.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openapiart==0.3.37 2 | -------------------------------------------------------------------------------- /result/bgpprefix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/bgpprefix.yaml -------------------------------------------------------------------------------- /result/bgpv4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/bgpv4.yaml -------------------------------------------------------------------------------- /result/bgpv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/bgpv6.yaml -------------------------------------------------------------------------------- /result/bmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/bmp.yaml -------------------------------------------------------------------------------- /result/bmpserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/bmpserver.yaml -------------------------------------------------------------------------------- /result/capability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/capability.yaml -------------------------------------------------------------------------------- /result/capture.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/capture.yaml -------------------------------------------------------------------------------- /result/convergence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/convergence.yaml -------------------------------------------------------------------------------- /result/dhcpv4client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/dhcpv4client.yaml -------------------------------------------------------------------------------- /result/dhcpv4interface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/dhcpv4interface.yaml -------------------------------------------------------------------------------- /result/dhcpv4server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/dhcpv4server.yaml -------------------------------------------------------------------------------- /result/dhcpv4serverleases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/dhcpv4serverleases.yaml -------------------------------------------------------------------------------- /result/dhcpv6client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/dhcpv6client.yaml -------------------------------------------------------------------------------- /result/dhcpv6interface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/dhcpv6interface.yaml -------------------------------------------------------------------------------- /result/dhcpv6server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/dhcpv6server.yaml -------------------------------------------------------------------------------- /result/dhcpv6serverleases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/dhcpv6serverleases.yaml -------------------------------------------------------------------------------- /result/egressonlytracking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/egressonlytracking.yaml -------------------------------------------------------------------------------- /result/event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/event.yaml -------------------------------------------------------------------------------- /result/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/flow.yaml -------------------------------------------------------------------------------- /result/isis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/isis.yaml -------------------------------------------------------------------------------- /result/isisiihs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/isisiihs.yaml -------------------------------------------------------------------------------- /result/isislsp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/isislsp.yaml -------------------------------------------------------------------------------- /result/lacp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/lacp.yaml -------------------------------------------------------------------------------- /result/lag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/lag.yaml -------------------------------------------------------------------------------- /result/lldp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/lldp.yaml -------------------------------------------------------------------------------- /result/lldpneighbors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/lldpneighbors.yaml -------------------------------------------------------------------------------- /result/macsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/macsec.yaml -------------------------------------------------------------------------------- /result/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/metrics.yaml -------------------------------------------------------------------------------- /result/mka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/mka.yaml -------------------------------------------------------------------------------- /result/neighborsv4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/neighborsv4.yaml -------------------------------------------------------------------------------- /result/neighborsv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/neighborsv6.yaml -------------------------------------------------------------------------------- /result/ospfv2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/ospfv2.yaml -------------------------------------------------------------------------------- /result/ospfv2lsa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/ospfv2lsa.yaml -------------------------------------------------------------------------------- /result/ospfv3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/ospfv3.yaml -------------------------------------------------------------------------------- /result/ospfv3lsa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/ospfv3lsa.yaml -------------------------------------------------------------------------------- /result/port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/port.yaml -------------------------------------------------------------------------------- /result/request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/request.yaml -------------------------------------------------------------------------------- /result/resultbgpaspath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/resultbgpaspath.yaml -------------------------------------------------------------------------------- /result/resultbgpcommunity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/resultbgpcommunity.yaml -------------------------------------------------------------------------------- /result/rocev2flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/rocev2flow.yaml -------------------------------------------------------------------------------- /result/rocev2ipv4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/rocev2ipv4.yaml -------------------------------------------------------------------------------- /result/rocev2ipv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/rocev2ipv6.yaml -------------------------------------------------------------------------------- /result/rsvp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/rsvp.yaml -------------------------------------------------------------------------------- /result/rsvplsp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/rsvplsp.yaml -------------------------------------------------------------------------------- /result/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/state.yaml -------------------------------------------------------------------------------- /result/states.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/result/states.yaml -------------------------------------------------------------------------------- /scripts/patch-proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-traffic-generator/models/HEAD/scripts/patch-proto.py --------------------------------------------------------------------------------