centos
安装完了centos新系统之后,发现网络不通,实际上是并没有使能和配置网卡,通过修改在如下位置的配置文件:
网卡配置:/etc/sysconfig/network-scripts/ifcfg-enp0s3
自启动网卡:
使能自启动网卡选项:
ONBOOT=yes
自动获取IP:
需要使能dhcp服务自动获取IP,自启动网卡选项:
BOOTPROTO=dhcp
静态配置IP:
配置ip、netmask、gateway:
IPADDR='192.168.1.10'
NETMASK='255.255.255.0'
GATEWAY='192.168.1.1'
设置主机名: /etc/hostname
DNS配置:/etc/resolv.conf
ubuntu
ubuntu16.04 :
网卡配置: /etc/network/interfaces
DNS配置:/etc/resolv.conf
nameserver 127.0.0.53
ubuntu18.04 server:
新版本ubuntu启用了新的网络工具netplan,配置网络的方式也发生了改变:
/etc/netplan/01-netcfg.yaml
network:
version: 2
ethernets:
eth0:
dhcp4: true
ubuntu18.04
match:
macaddress: 08:00:27:1e:4f:4d