'네트워크카드추가'에 해당되는 글 1건

CentOS Network interface add

LINUX 2016. 6. 22. 10:02

CentOS Network interface add



네트워크 카드를 하나 더 추가했을때 재부팅 되더라도 자동으로 잡히도록 해주는 방법이다.



▶ 네트워크 인터페이스 확인


[root@conoha-jp ~]# ifconfig -a

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500

        inet 133.130.101.232  netmask 255.255.254.0  broadcast 133.130.101.255

        inet6 fe80::1:85ff:fe82:65e8  prefixlen 64  scopeid 0x20<link>

        ether 02:01:85:82:65:e8  txqueuelen 1000  (Ethernet)

        RX packets 419  bytes 42410 (41.4 KiB)

        RX errors 0  dropped 0  overruns 0  frame 0

        TX packets 70  bytes 10193 (9.9 KiB)

        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


eth1: flags=4098<BROADCAST,MULTICAST>  mtu 1500

        ether fa:16:3e:ba:df:b4  txqueuelen 1000  (Ethernet)

        RX packets 0  bytes 0 (0.0 B)

        RX errors 0  dropped 0  overruns 0  frame 0

        TX packets 0  bytes 0 (0.0 B)

        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536

        inet 127.0.0.1  netmask 255.0.0.0

        inet6 ::1  prefixlen 128  scopeid 0x10<host>

        loop  txqueuelen 0  (Local Loopback)

        RX packets 0  bytes 0 (0.0 B)

        RX errors 0  dropped 0  overruns 0  frame 0

        TX packets 0  bytes 0 (0.0 B)

        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0



▶ 네트워크 설정 추가


[root@conoha-jp ~]# cd /etc/sysconfig/network-scripts/

[root@conoha-jp network-scripts]# cp ifcfg-eth0 ifcfg-eth1

[root@conoha-jp network-scripts]# vi ifcfg-eth1


TYPE="Ethernet"

BOOTPROTO="static"

DEVICE="eth1"

ONBOOT="yes"

HWADDR="fa:16:3e:ba:df:b4"

IPADDR="10.10.10.2"

NETMASK="255.255.255.0"

HWADDR 는 ifconfig eth1 에서 확인하면 된다.

표기 하지 않아도 된다.



▶ 네트워크 활성화


[root@conoha-jp network-scripts]# ifup eth1

[root@conoha-jp network-scripts]# systemctl restart network

[root@conoha-jp network-scripts]# ping 10.10.10.2

PING 10.10.10.2 (10.10.10.2) 56(84) bytes of data.

64 bytes from 10.10.10.2: icmp_seq=1 ttl=64 time=0.053 ms

64 bytes from 10.10.10.2: icmp_seq=2 ttl=64 time=0.059 ms


이제 재부팅 하더라도 eth1 이 자동으로 잡힐 것이다.


블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,