LinuxシステムのDHCPでIPアドレスを解放して更新する方法は?

LinuxシステムのDHCPでIPアドレスを解放して更新する方法は?

システム:

  • Linux Mint 18.2 Cinnamon 64ビット(デスクトップモード、実習)

  • GNU/Linux Debian 9.2 Cinnamon 64ビット(ヘッドレスモード、SSH)

質問:

これらのLinuxシステムのDHCPサーバー(ルーター)でIPアドレスを解放して更新する方法は?

ベストアンサー1

ネットワークでリッスンしている次のプログラムが見つかりました。

dhclient

引用するマニュアルページ:

-r     Release the current lease and stop the running DHCP client as  previously  recorded
       in  the  PID  file.  When shutdown via this method dhclient-script will be executed
       with the specific reason for calling the script set.  The client  normally  doesn't
       release  the  current  lease  as this is not required by the DHCP protocol but some
       cable ISPs require their clients to notify the server if they wish  to  release  an
       assigned IP address.

したがって、すべてのインターフェイスのソリューションは次のとおりです。

sudo dhclient -r
sudo dhclient

あるいは、特定のインターフェースについて便利に言うことができますeth0

sudo dhclient -r eth0
sudo dhclient eth0

もちろん、SSHを介してサーバーに接続するときは、これら2つのコマンドを実行する必要があります。投稿または、以下のようにスクリプトを作成してください。この回答

おすすめ記事