Ethernet Card 교체후 OS 부팅시 기존 /etc/sysconfig/network-scripts 이하에 ifcfg 상 정의 되어있는 HWADDR 가 있을 경우 아래와 같이 ifconfig 시 Device name 이 상이하게 표기 될 경우가 있다. [root@Server02 network-scripts]# ifconfig -a | more __tmp134357958 Link encap:Ethernet HWaddr 80:C1:6E:AA:13:80 BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 ..
1. ifconfig 명령으로 변경가능한 txqueuelen 값은 리부팅시 초기화됨. 따라서 아래와 같이 rc.local 등에 추가하는 방법으로 적용가능 ifconfig | grep eth | awk '{print $1}' | xargs -i{} ifconfig {} txqueuelen 10000 grep "txqueuelen 10000" /etc/rc.d/rc.local || echo -e "ifconfig | grep eth | awk '{print \$1}' | xargs -i{} ifconfig {} txqueuelen 10000" >> /etc/rc.d/rc.local 2. 또는 아래와 같이 ip 명령을 통해 변경도 가능. [root@s-node01 perl]# [root@s-node01 per..
Linux 시스템에서는 하나의 물리적인 Ethernet Device에 대해서 가상의 Device를 추가하여 할당 할 수 있으며 설정 과정은 아래와 같다. 1. ifconfig 명령을 통한 추가 [root@TEST02 ~]# [root@TEST02 ~]# ifconfig eth0:1 192.168.137.40 netmask 255.255.255.0 up [root@TEST02 ~]# 2. ip 명령을 통한 추가 [root@TEST02 ~]# [root@TEST02 ~]# ip addr add 192.168.137.40/24 dev eth0 [root@TEST02 ~]# 3. 추가된 Ethernet Alias 확인 [root@TEST02 ~]# ifconfig eth0 Link encap:Ethernet H..
Linux OS상에 인식된 Ethernet Device 에 대하여 Speed와 Link 여부를 아래와 같은 명령으로 확인 가능하다. [root@TEST01 ~]# [root@TEST01 ~]# for LIST in `ip addr | grep -w mtu | cut -d ":" -f 2 | egrep -v 'lo|inet|virbr'`; do echo "${LIST} - `ethtool ${LIST} | egrep 'Speed|Link detected'`" && echo; done eth0 - Speed: Unknown! Link detected: no eth1 - Speed: 10000Mb/s Link detected: yes eth2 - Speed: 10000Mb/s Link detected: yes..