Changes between Version 5 and Version 6 of jazz/11-01-26


Ignore:
Timestamp:
Jan 26, 2011, 2:20:24 PM (13 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/11-01-26

    v5 v6  
    2020  * http://www.vyatta.com/ - 講者 Stephen 是 Linux Kernel 的開發者之一,目前就職於 Vyatta
    2121  * loopback 可以到 12Gbps 的速度,但是 CPU 處理 VM 的傳輸只能到 Mbps 等級.
     22 * <5> Network Bandwidth Control in Virtualised Environments - Simon Horman
     23  * 用 iptables 跟 fwmark 來作流量管制、過濾、封包排程(filter, scheduling)
     24  * http://linux.die.net/man/8/tc-htb - 使用 tc-htb 做對應的流量控制 QoS
     25  * Problem 1: UDP, VLANs and Lack of Flow Control
     26    * VLAN devices do not support scatter-gather
     27    * A guest can flood Dorm0 with packets (非惡意的網路阻斷攻擊??)
     28  * Problem 2: Bonding and Lack of Queues
     29    * The default queue on bond devices in no queue
     30    * qdiscs default the queue length of the device they are attached to
     31    * [解法] ip link set txqueuelen 1000 dev bond0
     32    * [解法] tc qdisc add dev bond0 parent 1:100 handle 1100: pfifo limit 100
     33  * Problem 3: TSO and Lack of Accounting Accuracy
     34    * 上一場演講有提到如果虛擬網卡的 MTU 封包大小大於實體網卡的設定,會有問題。所以得想辦法讓實體網卡與虛擬網卡的設定維持一致。