UbuntuのKVM環境でネットワークが遅い原因

* 本ページはプロモーションが含まれています

Ubuntu 11.04上にKVM環境を構築し、ネットワークをブリッジ構成にしたところ、ネットワークが激遅くなった。
外部DNSは引け、LAN内では繋がるが、Googleとかにpingすると、かなり遅い。

原因は、sysctlの設定不足でした。

/etc/sysctl.confに下記が足りなかったので、追加

net.bridge.bridge-nf-call-ip6tables = 0
net.bridge.bridge-nf-call-iptables = 0
net.bridge.bridge-nf-call-arptables = 0

追加、保存した後、下記で適用

/sbin/sysctl -p /etc/sysctl.conf

参考:https://wiki.libvirt.org/page/Networking


See also