diff --git a/doc/common/section_cli_nova_customize_flavors.xml b/doc/common/section_cli_nova_customize_flavors.xml index f443fa0134..8a54e4f7e5 100644 --- a/doc/common/section_cli_nova_customize_flavors.xml +++ b/doc/common/section_cli_nova_customize_flavors.xml @@ -259,10 +259,70 @@ the amount of bytes that can be burst at peak speed (kilobytes). The rate is shared equally within domains connected to the network. - The following example configures a bandwidth - limit for instance network traffic: - $ nova flavor-key m1.small set quota:inbound_average=10240 -$ nova flavor-key m1.small set quota:outbound_average=10240 + Below example sets network traffic bandwidth limits for + existing flavor as follow: + + + + Outbound traffic: + + + + average: 256 Mbps + (32768 kilobytes/second) + + + + + peak: 512 Mbps + (65536 kilobytes/second) + + + + + burst: 100 ms + + + + + + + + Inbound traffic: + + + + average: 256 Mbps + (32768 kilobytes/second) + + + + + peak: 512 Mbps + (65536 kilobytes/second) + + + + + burst: 100 ms + + + + + + + $ nova flavor-key nlimit set quota:vif_outbound_average=32768 +$ nova flavor-key nlimit set quota:vif_outbound_peak=65536 +$ nova flavor-key nlimit set quota:vif_outbound_burst=6553 +$ nova flavor-key nlimit set quota:vif_inbound_average=16384 +$ nova flavor-key nlimit set quota:vif_inbound_peak=32768 +$ nova flavor-key nlimit set quota:vif_inbound_burst=3276 + + + All the speed limit values in above example are + specified in kilobytes/second. And burst values are in + kilobytes. +