首页 | 联系我们 | 叶凡网络官方QQ群:323842844
游客,欢迎您! 请登录 免费注册 忘记密码
您所在的位置:首页 > 租用托管 > Linux服务器 > 正文

linux服务器修改ip地址、子网掩码、网关、dns(以ubuntu为例)

作者:cocomyyz 来源: 日期:2017-08-27 11:54:47 人气:1 加入收藏 评论:0 标签:linux服务器修改ip地址、子网掩码、网关、dns(以ubuntu为例)

修改IP地址 vi /etc/sysconfig/network-scripts/ifcfg-eth0(CentOS)

                   vi  /etc/network/interfaces(Ubuntu)


下面添加一下内容(Ubuntu为例)

auto eth0                      //设置自动启动eth0接口

iface eth0 inet static         //配置静态IP

address 192.168.1.189         //IP地址

netmask 255.255.255.0       //子网掩码

gateway 192.168.1.1         //网关


重启网路  /etc/init.d/networking restart


dns地址的目录在 /etc/resolv.conf (如果想修改可以自己修改)

nameserver 202.102.192.68

nameserver 8.8.8.8

本文网址:http://www.mingyangnet.com/html/linux/2307.html
读完这篇文章后,您心情如何?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
更多>>网友评论
发表评论
编辑推荐