ネットワークインターフェイスeno1があり、それをbr1として設定します。
allow-hotplug eno1
iface eno1 inet manual
auto br1
iface br1 inet static
address 208.43.222.51
network 255.255.255.248
netmask 255.255.255.0
broadcast 208.43.222.55
gateway 208.43.222.49
bridge_ports eno1
bridge_stp off
bridge_fd 0
bridge_maxwait 0
これでより多くのIPが必要で、ISP 208.43.221.40/29で/ 29サブネットを注文しました。既存のbr1に追加するために/etc/network/interfacesを使用して設定する方法
答え1
使う仮想インターフェイスbr1:0
たとえば、「2番目の」インターフェイスを追加する場合です。
おおよその例は次のとおりです。
auto br1:0
iface br1:0 inet static
address x.x.x.x
network x.x.x.x
netmask x.x.x.x
broadcast x.x.x.x
gateway x.x.x.x
bridge_ports eno1
bridge_stp off
bridge_fd 0
bridge_maxwait 0
または特別に必要です。これにより、1つのインターフェイスに2つの異なるサブネットを持つことができます。
答え2
最後に、Debianでは簡単です。
auto br1
iface br1 inet static
address 208.43.222.51
network 255.255.255.248
netmask 255.255.255.0
broadcast 208.43.222.55
gateway 208.43.222.49
bridge_ports eno1
bridge_stp off
bridge_fd 0
bridge_maxwait 0
iface br1 inet static
address 208.43.221.42
network 208.43.221.40
netmask 255.255.255.248
broadcast 208.43.221.47
gateway 208.43.221.41
bridge_ports eno1
bridge_stp off
bridge_fd 0
bridge_maxwait 0
そして
systemctl restart networking.service