ubuntu server设置静态ip
ubuntu的网络配置信息放在/etc/network/interfaces 中
sudo vi /etc/network/interfaces
如果配置动态获取ip,则在上述文件中加入以下内容:(注:服务器通常不用动态IP)
auto eth0
iface eth0 inet dhcp
如果配置静态ip,则添加如下内容:
auto eth0
iface eth0 inet static
address 192.168.1.150
netmask 255.255.255.0
gateway 192.168.1.1
修改完成后,需要重新启动网络
sudo /etc/init.d/networking restart
- Running /etc/init.d/networking restart is deprecated because it may not enable again some interfaces
- Reconfiguring network interfaces…
然后需要重新登录服务器。