linux IP再起動NICの変更方法

2176 ワード

NICコマンドの変更:
ifconfig eth0 192.168.0.3 netmask 255.255.255.0 ⚠️一時的にIPを変更して有効になり、再起動しても有効になる場合は、NICプロファイルを変更できます.
NICコマンドを再起動するには:
centos: sudo service network restart ubuntu:sudo/etc/init.d/networking restart
NICプロファイル:
  • centos:修正/etc/sysconfig/network-scripts/ifcfg-eth 0
  • DEVICE=eth0      #         
    BOOTPROTO=static #    ip     (   dhcp,      )
    HWADDR=00:07:E9:05:E8:B4        #  MAC  (    )
    IPADDR=192.168.100.100          #IP  
    NETMASK=255.255.255.0           #     
    ONBOOT=yes                      #            
  • ubuntu:修正/etc/network/interfaces
  • auto eth0
    iface eth0 inet static
    address 192.168.3.90
    gateway 192.168.3.1
    netmask 255.255.255.0

    dnsの変更
    # vi /etc/resolv.conf
    nameserver 8.8.8.8              #google     
    nameserver 114.144.114.114      #       

    ubuntuリファレンス:http://www.linuxidc.com/Linux/2013-04/83577.htmcentosリファレンス:http://www.linuxidc.com/Linux/2015-02/112964.htm