首页 > 代码库 > Ubuntu 网络配置

Ubuntu 网络配置

1、默认情况下Ubuntu 的网络配置文件为: sudo vim /etc/network/interfaces

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto ens33
iface ens33 inet static
                                    #静态IP,如果需要设置成DHCP模式,那下面这3行已经不需要了,直接改成: iface ens33 inet dhcp
address 10.6.2.171
network 255.255.255.0
gateway 10.6.2.254

也可以手动增加静态路由:sudo route add default gw 10.6.2.254

2、配置DNS

默认情况下是修改:sudo vim /etc/resolv.conf

nameserver 10.6.1.1
nameserver 10.1.1.1

3、重启网络服务

sudo /etc/init.d/networking reload

sudo /etc/init.d/networking restart

停卡网卡:

sudo ifconfig ens33 down

sudo ifconfig ens33 up

4、如果是虚拟机克隆,可能会导致网卡检测不到或者启动不起来

sudo rm /etc/udev/rules.d/70-persistent-net.rules
把这个文件删掉,再重启Ubuntu 服务器就可以了。

5、更改服务器名

sudo hostnamectl set-hostname USRV-1

重启,即可


Ubuntu 网络配置