标签:ubuntu双网卡配置
Ubuntu 16.04.3 LTS 双网卡配置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配置
root@wanghui:~# hostname -I
192.168.85.152 192.168.56.31
标签:ubuntu双网卡配置
原文地址:http://blog.51cto.com/11696827/2095733