美文网首页
linux笔记2-配置静态ip

linux笔记2-配置静态ip

作者: 木木_bfe8 | 来源:发表于2018-05-09 12:06 被阅读0次

修改文件

/etc/network/interfaces

#eth0是网卡 通过ifconfig status查看

auto eth0

iface eth0 inet static

address 192.168.1.151

netmask 255.255.255.0

gateway 192.168.1.1

要是配置生效,需要重启网卡:

ifconfig eth0 down

ifconfig eth0 up

重启网络

/etc/init.d/networking restart

二、配置dns服务器

3、执行

sudo vim /etc/resolvconf/resolv.conf.d/base

加入nameserver为你的DNS即可

nameserver 192.168.1.1

相关文章

  • linux笔记2-配置静态ip

    修改文件 /etc/network/interfaces #eth0是网卡 通过ifconfig status查看...

  • Linux安装及其静态IP配置,安装JDK与Tomcat

    Linux虚拟机安装及静态IP配置 环境 新建Linux虚拟电脑 Linux虚拟机系统安装 静态IP配置 安装JD...

  • 云平台配置1:伪分布式配置手册

    伪分布式配置手册 linux环境配置、linux环境下hadoop环境配置、linux静态ip设置 系统环境 VM...

  • (2)CentOS 7网络

    Linux配置静态IP 配置文件vi /etc/sysconfig/network-scripts/ifcfg-e...

  • linux命令学习

    Linux基本命令: 查看IP: 查看防火墙: 配置静态IP地址: 实时查看文件内容

  • Linux静态ip配置

    一、修改Linux的网络接口配置 二、设置DNS 三、重启网络服务 $ ifconfig查询ip #查看是否...

  • Linux静态IP配置

    问题 工作当中需要配置静态IP,我原来以为很简单,随便google了一下,于是照猫画虎配置了一通,结果发现不起作用...

  • Linux配置静态ip

    ubuntu16.04配置静态ip: 配置 手动设置dns /etc/resolv.conf 和 /etc/res...

  • Linux配置静态IP

    环境 系统:CentOS 7.2 编辑配置 重启生效

  • Linux 配置静态IP

    此篇文章开始在之前,我们默认你已经会安装Linux系统,或者已经安装好Linux系统。如果没有完成此项工作,请自行...

网友评论

      本文标题:linux笔记2-配置静态ip

      本文链接:https://www.haomeiwen.com/subject/jmynrftx.html