Ubuntu 16.04.3 LTSデュアルNIC構成


Ubuntu 16.04.3 LTSデュアルNIC構成
需要
  • デュアルNICは1つの静的ip割り当てを実現し、もう1つの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 
  • NICプロファイル
    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
  • である.