리눅스 네트워크 interface 추가 방법
Vultr VPS 에서 사설IP 추가하는 리눅스 종류별 예제이다.
Vultr 가 아니더라도 응용하면 된다.
▶ CentOS
/etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
ONBOOT=yes
BOOTPROTO=static
IPADDR=10.99.0.10
NETMASK=255.255.0.0
MTU=1450
▶ Debian / Ubuntu
/etc/network/interfaces 파일에 아래 내용 추가
auto eth1
iface eth1 inet static
address 10.99.0.10
netmask 255.255.0.0
mtu 1450
▶ FreeBSD
/etc/rc.conf 파일에 아래 내용 추가
ifconfig_vtnet1="inet 10.99.0.10 netmask 255.255.255.0 mtu 1450"
반응형
'LINUX' 카테고리의 다른 글
아파치 .htaccess ExpiresActive not allowed here (0) | 2016.07.04 |
---|---|
아파치 .htaccess 브라우저 캐시 설정하기 (0) | 2016.07.04 |
CentOS Network interface add (0) | 2016.06.22 |
dig 와 nslookup 으로 도메인 IP 알아내기 (0) | 2016.06.09 |
CentOS 7.x minimal 설치 후 해야되는 일들 정리 (0) | 2016.06.07 |