美文网首页
linux配置dns

linux配置dns

作者: 信仰与初衷 | 来源:发表于2018-06-08 10:30 被阅读0次
    • 修改网卡文件eth1(此处我的是eth1)
    echo 'DNS1="114.114.114.114" ' >> /etc/sysconfig/network-scripts/ifcfg-eth1
    
    • 修改主机表文件/etc/hosts
    echo "223.231.234.33 www.baidu.com" >> /etc/hosts 
    
    • 修改域名服务器文件/etc/resolv.conf
    echo 'nameserver 114.114.114.114' >> /etc/resolv.conf
    

    相关文章

      网友评论

          本文标题:linux配置dns

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