티스토리 뷰

반응형
우분투(Ubuntu) 16.04 고정 아이피(Static IP) 설정 방법

설정 파일 위치 

/etc/network/interfaces

설정 파일 수정

sudo nano /etc/network/interfaces

# interfaces(5) file used by ifup(8) and ifdown(8)
#auto lo
#iface lo inet loopback
auto ens33
iface ens33 inet static
address xxx.xxx.xxx.xxx
netmask xxx.xxx.xxx.xxx
gateway xxx.xxx.xxx.xxx
dns-nameservers 168.126.63.1

xxx.xxx.xxx.xxx 는 본인의 환경 설정에 맞게 수정하세요!
여기서 ens33은 우분투 콘솔에서 ifconfig 명령어로 확인 할 수 있습니다.

아래 그림에서 보면 enp4s1, ens33, lo 가 보입니다.
저같은 경우 lan 카드가 2개이기때문에 lo를 제외한 Lancard 명이 2개 입니다.
현재 ip를 할당받은 랜카드(ens33)이 현재 사용중인 lancard입니다.
lo        : Local Loopback
ens33   : 현재 랜선이 물려있는 Lancard
enp4s1 : 미사용 중인 Lancard
IP설정시 현재 사용중인 LandCard명을 입력하면 됩니다.


 

마직막으로 네트워크 재시작

sudo systemctl restart networking.service

 네트워크를 재시작해도 IP가 변경되지 않는다면 다음 명령으로 서버를 재부팅합니다.

 sudo reboot

반응형
댓글