命令行配置Ubuntu Server网络
命令行配置Ubuntu Server网络
首先配置你的ip地址等信息:
用vi打开/etc/network/interfaces :vi /etc/network/interfaces
如果你用的是固定的ip的话就输入下面的内容
auto eth0
iface eth0 inet static
address 192.168.0.2 #你的ip地址
netmask 255.255.255.0
gatway 192.168.0.1
用vi建立文件/etc/resolv.conf :vi /etc/resolv.conf
在该文件中输入如下内容
nameserver 202.117.0.20
nameserver 202.117.0.21#也可以不写,这是备用域名服务器地址
完成上面的人物以后在终端中输入: sudo /etc/init.d/networking restart 一般情况下会等待几秒钟,当弹出[ok]时就说明配置成功了
相关推荐
吹云 2020-11-05
84407805 2020-11-01
曾是土木人 2020-10-31
87201442 2020-10-15
java0 2020-09-29
81437716 2020-09-18
81437716 2020-09-13
bluecarrot 2020-09-11
myCat 2020-09-09
83427718 2020-09-07
85560694 2020-09-03
89520991 2020-08-21
89550191 2020-08-09
katie000 2020-08-04
hunningtu 2020-07-30
89961330 2020-07-28
yuzhongdelei0 2020-07-28
yuzhongdelei0 2020-07-27