Changeset 41842 in vbox for trunk/doc/manual/en_US
- Timestamp:
- Jun 20, 2012 11:46:31 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/user_Networking.xml
r41304 r41842 770 770 </footnote></para> 771 771 </sect1> 772 773 <sect1 id="network_bandwidth_limit"> 774 <title>Limiting bandwidth for network I/O</title> 775 776 <para>Starting with version 4.2, VirtualBox allows for limiting the 777 maximum bandwidth used for network transmission. Several network adapters 778 of one VM may share limits through bandwidth groups. It is possible 779 to have more than one such limit.</para> 780 781 <para>Limits are configured through 782 <computeroutput>VBoxManage</computeroutput>. The example below creates a 783 bandwidth group named "Limit", sets the limit to 20 Mbit/s and assigns the 784 group to the first and second adapters of the VM:<screen>VBoxManage bandwidthctl "VM name" add Limit --type network --limit 20m 785 VBoxManage modifyvm "VM name" --nicbandwidthgroup1 Limit 786 VBoxManage modifyvm "VM name" --nicbandwidthgroup2 Limit</screen></para> 787 788 <para>All adapters in a group share the bandwidth limit, meaning that in the 789 example above the bandwidth of both adapters combined can never exceed 20 790 Mbit/s. However, if one disk doesn't require bandwidth the other can use the 791 remaining bandwidth of its group.</para> 792 793 <para>The limits for each group can be changed while the VM is running, 794 with changes being picked up immediately. The example below changes the 795 limit for the group created in the example above to 100 Kbit/s:<screen>VBoxManage bandwidthctl "VM name" set Limit --limit 100k</screen></para> 796 </sect1> 772 797 </chapter>
Note:
See TracChangeset
for help on using the changeset viewer.