| 8 | |
| 9 | * [http://d.hatena.ne.jp/sinki1973/20110511/1305100047 KVMでブリッジ接続 - チラシの裏] |
| 10 | * [http://www.oss-d.net/virt/kvm#za76e76f CentOS/KVMによるサーバ仮想化 - OSSでLinuxサーバ構築] |
| 11 | * [http://wiki.libvirt.org/page/Networking#Debian.2FUbuntu_Bridging libvirt: Wiki: Networking] |
| 12 | > To ensure that the bridge sysctl settings get loaded on boot, add this line to '/etc/rc.local' just before the 'exit 0' line. This is a work around for [https://bugs.launchpad.net/ubuntu/+source/procps/+bug/50093 Ubuntu bug #50093]. |
| 13 | > {{{ |
| 14 | > /sbin/sysctl -p /etc/sysctl.conf |
| 15 | > }}} |
| 16 | * 実際、/etc/sysctl.d/network.confなどに「net.bridge.bridge-nf-call-iptables = 0」等々設定しても、再起動すると「cat /proc/sys/net/bridge/bridge-nf-call-iptables => 1」となっていたりする(きちんと0になる場合もある)。従って、上記の様にrc.localに記述するか、ufwを使っている場合は「-A ufw-before-forward -i br0 -j ACCEPT」をあわせて設定するなどする必要がある |