Changes between Version 4 and Version 5 of linux/centos


Ignore:
Timestamp:
2015/10/08 12:43:15 (9 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/centos

    v4 v5  
    3232|| netstat -i || ip -s link 
    3333|| arp        || ip neighbor || 
     34 
     35== ネットワークインタフェースの名前変更 
     36 
     37/etc/udev/rules.d/70-persistence-net.rules ファイルにネットワークインタフェース名 
     38固定の設定を記述する。例えば、00:0c:29:21:78:d7のインタフェースをeth1に設定する例。 
     39 
     40{{{ 
     41ACTION=="add", SUBSYSTEM=="net", DRIVERS=="?*", ATTR{type}=="1", KERNEL=="ens*", ATTR{address}=="00:0c:29:21:78:d7", NAME="eth1" 
     42}}}