Ubuntu系统网卡IP配置方法

主要文件为:
/etc/network/interfaces

在没有任何配置的情况下,其内容为以下两行:

auto lo
iface lo inet loopback

配置网口为动态获取IP的,在末尾加上:
auto eth0
iface eth0 inet dhcp

配置网口为静态获取IP的,在末尾加上:

auto eth0
iface eth0 inet static
address 192.168.0.11
netmask 255.255.254.0

重启系统或者重新启动网络服务生效,推荐重启系统。

上一篇:window7下载安装桌面版ubuntu


下一篇:Android Studio开发快速创建MVP框架插件AndroidMVP