Ubuntu サーバー 12.10 DHCP 構成

Ubuntu サーバー 12.10 DHCP 構成

Ubuntu Server12.10 をインストールするときにインターネットに接続されておらず、インストール中にネットワークを手動で構成することを選択しました。サーバーをインターネットに接続する必要があります。助けてください。よろしくお願いします。

答え1

ネットワークを手動で設定する場合は、

 nano /etc/network/interfaces

こんな感じになります

 auto lo
 iface lo inet loopback

 auto eth0
 iface eth0 inet static
 address ..
 netmask
 gateway
 network
 broadcast

それを変える必要がある

 auto lo 
 iface lo inet loopback

 auto eth0
 iface eth0 inet dhcp
 #comment out the lines below this and Save the file

そして実行する

 sudo /etc/init.d/networking restart

DHCP サーバーに接続している場合は、そのサーバーから IP を取得します。

関連情報