[우분투]고정 IP 설정 (Ubuntu Static IP setup)

2017. 7. 10. 15:30리눅스

우분투는 처음 사용해 보는데 CentOS 계열과 명령어 및 세팅 방법이 많이 다른 것 같다.


1. vim /etc/network/interfaces  ( CentOS의 /etc/sysconfig/network-scripts/ifcfg-eth0 와 비슷한 파일로 보면 된다.)

 

root@xen1:~# cat /etc/network/interfaces

# This file describes the network interfaces available on your system

# and how to activate them. For more information, see interfaces(5).


source /etc/network/interfaces.d/*


# The loopback network interface

auto lo

iface lo inet loopback


# The primary network interface

auto enp0s25

iface enp0s25 inet static

        address 192.168.8.201                               --> 설정하려는 IP 

        netmask 255.255.255.0                              --> netmask

        gateway 192.168.8.1                                 --> gateway

        dns-nameservers 8.8.8.8                            --> DNS 서버


 



2. vim /etc/resolv.conf


root@xen1:~# cat /etc/resolv.conf

# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)

#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN

nameserver 8.8.8.8

 


3. 네트워크 재시작

root@xen1:~# systemctl restart networking.service


4. IP 확인

 - ifconfig


 ※ 만약, 네트워크 재시작해도 IP가 변경되지 않으면, 재부팅을 한다.