Ubuntu-server首次启动

Ubuntu-server首次启动

如何更改网络设置?

ifconfig给出ip 192.168.122.1

(我 ping 了一下,以太网卡工作正常)

sudo vi /etc/network/interfeces在编辑后使用

auto eth0 
ifaces eth0 inet dhcp

我无法保存。如何保存设置?

答案1

飞行中

你可以按如下方式配置 ip

ifconfig eth0 10.0.10.10 netmask 255.255.255.0 up

或静态

编辑 /etc/network/interfaces

auto eth0
  iface eth0 inet static
    address 10.0.10.10
    netmask 255.255.255.0
    gateway 10.10.0.1

然后

/etc/init.d/networking restart

相关内容