いくつかのテストを行うためにdebianにxenをセットアップしていて、ブリッジに問題があります。
Wlan0をブリッジとして使用したいのですが、うまくいかないようです。現在私はこれを試しました:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet manual
wpa-ssid "myssid"
wpa-psk mypasscode
auto xenbr0
iface xenbr0 inet dhcp
bridge_ports wlan0
「しかし、表示されます:ブリッジxenbr0にwlan0を追加できません:操作はサポートされていません」
これも可能ですか?
エラーメッセージは、おそらくwlan0インターフェイスが起動していないことを意味します。
考えられる解決策:
#/ etc/network/interfaces auto xenbr0 iface xenbr0 inet dhcp bridge_ports eth0 wlan0 iface wlan0 inet manual wpa-ssid "myssid" wpa-psk mypasscode post-up brctl addif xenbr0 wlan0
最後の行で、wlan0
interfaceをxenbr0
に追加します。