こんにちは、eth0とeth1を含むDebianスクイーズボックスがあります。
/ etc/network/interfacesには次のようなものがあります。
auto eth1
iface eth1 inet static
address 10.1.2.208
netmask 255.255.255.0
gateway 10.1.2.1
しかし、24時間ごとに、eth1は静的に割り当てられたIPアドレスを失い、代わりにDHCPから1つをフェッチします。手動で行う:
# ifup eth1 && ifdown eth1
それをあるべき姿に戻します。
しかし、そもそもなぜ自然に壊れるのでしょうか?!
dhcpcd
/dhclient
はまだ実行されていますか?あなたがそれを殺さなければ、それはインターフェース上のDHCPアドレスを更新します。
また、Network Managerを設定しましたか?これにより、interfaces
ファイルが上書きされます。あなたがそれを使用していない場合はそれを取り除きます。
これを試して:
auto eth1
iface eth1 inet static
address 10.1.2.208
netmask 255.255.255.0
gateway 10.1.2.1
hwaddress ether mac_address_of_the_network_card_here
例えば:
...
hwaddress ether 00:00:5e:00:53:b2