새 네트워크 인터페이스를 영구적으로 추가하는 방법

새 네트워크 인터페이스를 영구적으로 추가하는 방법

새 네트워크 인터페이스를 영구적으로 추가하는 방법 centos 6을 실행하는 virtualbox를 사용하고 있습니다. 새 네트워크 인터페이스를 생성했지만 eth1컴퓨터를 다시 시작한 후 사라졌습니다. 컴퓨터를 시작할 때 자동으로 추가하는 방법

sudo ifconfig eth1 192.168.56.10 netmask 255.255.255.0 up

답변1

명령 사용

# nmcli connection add type ethernet ifname etho con-name name autoconnect yes ip4 xxx.xxx.xxx.xxx/cidr ipv4.gateway xxx.xxx.xxx.xxx ipv4.dns xxx.xxx.xxx.xxx

그런 다음

# nmcli connection up name

또는 GUI 기반을 사용할 수 있습니다

# nmtui 

답변2

vi /etc/sysconfig/network-scripts/ifcfg-eth1

DEVICE=eth1
TYPE=Ethernet
ONBOOT=yes
BOOTPROTO=static
DEFROUTE=no
PEERDNS=no
PEERROUTES=yes
NAME=eth1
IPADDR=192.168.56.10
NETMASK=255.255.255.0

관련 정보