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。

相关内容