码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu 网络配置

时间:2017-05-26 21:57:20      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:available   activate   describes   network   微软雅黑   

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 网络配置

标签:available   activate   describes   network   微软雅黑   

原文地址:http://tengq.blog.51cto.com/2004324/1929916

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!