私はボンドに複数のアダプターを持つサーバーを持っています、bond0。
IPアドレスなしでbond0デバイスを起動する方法がわかりません(詳細な調査を行った後でも)。 VLANでbond0を使用したいのですが、サーバーにタグなしインターフェイスがありません。
auto eth0
iface eth0 inet manual
bond-master bond0
auto eth1
iface eth1 inet manual
bond-master bond0
auto bond0
iface bond0 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
bond-slaves none
bond-miimon 100
bond-mode 802.3ad
auto vlan50
iface vlan50 inet static
address 192.168.248.241
netmask 255.255.255.0
network 192.168.248.0
vlan-raw-device bond0
上記の構成は機能し、bond0のアドレスがタグ付きVLANにないことを除いて、正常に機能します。
スイッチは正しく設定されています。 VLANは正常に機能します。サーバーは複数のVLANのメンバーです。残りの構成は私の問題とは関係がないため、上記の構成は単純化されています。
はい、bond0インターフェイスにダミーアドレスをスローすることもできますが、それは私にはそれほどクリーンではないようです。
私は以下を試しました:
https://wiki.debian.org/NetworkConfiguration#Bringing_up_an_interface_without_an_IP_address
しかし、これは機能せず、bond0が未構成のままであったため、ネットワーク接続がありませんでした。
OS:Ubuntu 14.04.2 LTS
私はこのようなものがうまくいくと思います:
auto lo
iface lo inet loopback
auto bond0
iface bond0 inet static
pre-up ifconfig bond0 up
pre-up ifenslave bond0 eth0 || /bin/true
pre-up ifenslave bond0 eth1 || /bin/true
down ifenslave -d bond0 eth0 || /bin/true
down ifenslave -d bond0 eth1 || /bin/true
auto bond0.50
iface bond0.50 inet static
address 192.168.248.241
netmask 255.255.255.0
network 192.168.248.0
最近のDebianリリースのネットワーク構成ファイルの詳細はわかりませんが、次の手順に従って必要なものを確認する必要があります。
"ip addr flush dev bond0"
または"ifconfig bond0 ip 0.0.0.0"
を使用して、ベースインターフェイス(bond0)IPを削除します"iptables -I INPUT 1 -i bond0 -j DROP"
を使用して、タグなしインターフェイス(bond0)からのトラフィックをドロップするiptablesルールを挿入しますとにかく、ボンディングに使用される特定のネットワークポートとの間で送受信されるタグなしトラフィックをすべてドロップするようにスイッチを構成する方がおそらく簡単です。