Ubuntu 16.04.3 LTSデュアルNIC構成
Ubuntu 16.04.3 LTSデュアルNIC構成
需要デュアルNICは1つの静的ip割り当てを実現し、もう1つのdhcpは を実現する.準備作業: NICプロファイル を変更ネットワーク管理プロファイルの変更: サービス再開 この時点で構成されたipは である.
需要
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