Ubuntu永久修改IP和临时修改IP

永久修改IP

第一步:配置文件

首先 修改 /etc/network/interfaces文件:
$ sudo vi /etc/network/interfaces

###interfaces中#######     

auto eth0                        //eth0为网卡名,具体根据自己的网卡名配置文件夹(ifconfig命令查看,入下图为ens33)
iface eth0 inet static      //eth0跟上面一致
address 192.168.1.200     
netmask 255.255.255.0                  #子网掩码     
gateway 192.168.1.1                      #网关
broadcast 192.168.1.255     
dns-nameservers 119.29.29.29    #设置dns服务器  ---这一行是新添加的

Ubuntu永久修改IP和临时修改IP_第1张图片

第二步 重启网卡,使之配置生效

$ sudo /etc/init.d/networking restart

或者

$ ifdown eth0 //关闭网卡

$ ifup eth0 //启动网卡

还不行的话重启Ubuntu,再次查看IP已经修改

临时修改IP

命令: ifconfig erh0 192.168.1.28  255.255.255.0

你可能感兴趣的:(知识总结)