Ankur Gupta 65ac887564 NIT: replace os with openstack in command example
Change-Id: Iac1b0ec3b715ffa0eb41fc2fe9020781d834a7a3
2017-02-03 13:51:36 -06:00

3.4 KiB

network qos rule

A Network QoS rule specifies a rule defined in a Network QoS policy; its type is defined by the parameter 'type'. Can be assigned, within a Network QoS policy, to a port or a network. Each Network QoS policy can contain several rules, each of them

Network v2

network qos rule create

Create new Network QoS rule

network qos rule create

openstack network qos rule create
    --type <type>
    [--max-kbps <max-kbps>]
    [--max-burst-kbits <max-burst-kbits>]
    [--dscp-marks <dscp-marks>]
    [--min-kbps <min-kbps>]
    [--ingress | --egress]
    <qos-policy>

--type <type>

QoS rule type (minimum-bandwidth, dscp-marking, bandwidth-limit)

--max-kbps <min-kbps>

Maximum bandwidth in kbps

--max-burst-kbits <max-burst-kbits>

Maximum burst in kilobits, 0 means automatic

--dscp-mark <dscp-mark>

DSCP mark: value can be 0, even numbers from 8-56, excluding 42, 44, 50, 52, and 54

--min-kbps <min-kbps>

Minimum guaranteed bandwidth in kbps

--ingress

Ingress traffic direction from the project point of view

--egress

Egress traffic direction from the project point of view

<qos-policy>

QoS policy that contains the rule (name or ID)

network qos rule delete

Delete Network QoS rule

network qos rule delete

openstack network qos rule delete
     <qos-policy>
     <rule-id>

<qos-policy>

QoS policy that contains the rule (name or ID)

<rule-id>

Network QoS rule to delete (ID)

network qos rule list

List Network QoS rules

network qos rule list

openstack network qos rule list
     <qos-policy>

<qos-policy>

QoS policy that contains the rule (name or ID)

network qos rule set

Set Network QoS rule properties

network qos rule set

openstack network qos rule set
    [--max-kbps <max-kbps>]
    [--max-burst-kbits <max-burst-kbits>]
    [--dscp-marks <dscp-marks>]
    [--min-kbps <min-kbps>]
    [--ingress | --egress]
    <qos-policy>
    <rule-id>

--max-kbps <min-kbps>

Maximum bandwidth in kbps

--max-burst-kbits <max-burst-kbits>

Maximum burst in kilobits, 0 means automatic

--dscp-mark <dscp-mark>

DSCP mark: value can be 0, even numbers from 8-56, excluding 42, 44, 50, 52, and 54

--min-kbps <min-kbps>

Minimum guaranteed bandwidth in kbps

--ingress

Ingress traffic direction from the project point of view

--egress

Egress traffic direction from the project point of view

<qos-policy>

QoS policy that contains the rule (name or ID)

<rule-id>

Network QoS rule to delete (ID)

network qos rule show

Display Network QoS rule details

network qos rule show

openstack network qos rule show
    <qos-policy>
    <rule-id>

<qos-policy>

QoS policy that contains the rule (name or ID)

<rule-id>

Network QoS rule to delete (ID)