码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu 16.04.3 LTS 双网卡配置

时间:2018-04-08 18:10:33      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:ubuntu双网卡配置

Ubuntu 16.04.3 LTS 双网卡配置

需求

  • 双网卡实现一个静态ip分配,另外一个dhcp

    实现

  • 准备工作:
    wanghui@wanghui:~$ sudo su - #需要跳到root用户
    [sudo] password for wanghui:
    root@wanghui:~# apt-get install openssh-server vim -y #安装sshd服务和vim编辑器
    root@wanghui:~# /etc/init.d/ssh start #启动ssh服务
    root@wanghui:~# ifconfig | awk ‘{print $1}‘ | grep ‘en‘ #查看网卡
    ens33 #这个是要DHCP的
    ens34 #这个是要static的
  • 修改网卡配置文件
    root@wanghui:~# vim /etc/network/interfaces #修改网卡配置文件
    auto lo
    iface lo inet loopback
    auto ens33
    iface ens33 inet dhcp
    auto ens34
    iface ens34 inet static
    address 192.168.56.31
    netmask 255.255.255.0
  • 修改网管配置文件:
    root@wanghui:~# vim /etc/NetworkManager/NetworkManager.conf #修改网管文件,可以使得不重启就让修改的ip配置生效
    managed=true #把这个默认的false参数改成true,就能在重启网卡的时候刷新配置到系统
  • 服务重启
    root@wanghui:~# /etc/init.d/network-manager restart #重启网管
    root@wanghui:~# /etc/init.d/networking restart #重新加载ip配置
  • 此时就可以看到配置的ip了
    root@wanghui:~# hostname -I
    192.168.85.152 192.168.56.31

Ubuntu 16.04.3 LTS 双网卡配置

标签:ubuntu双网卡配置

原文地址:http://blog.51cto.com/11696827/2095733

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!