페이지

[ubuntu] 네트워크 설정



우분투 네트워크 설정에 대한 내용을 정리합니다.
* 버전: 16.04 LTS


- 설정파일은 [/etc/network/ > interfaces] 입니다.
$ sudo vi /etc/network/interfaces


- 처음 설치시 아래와 같이 DHCP로 기본 설정되어 있습니다.
# The primary network interface
auto enp0s25
iface enp0s25 inet dhcp


- 고정 아이피(IP)로 바꾸려면 아래 내용을 참고해서 수정하면 됩니다.
# The primary network interface
auto enp0s25
iface enp0s25 inet static
address 192.168.0.xxx
netmask 255.255.255.0
gateway 192.168.0.xxx
dns-nameservers 8.8.8.8


- 네트워크 설정 변경후에는 reboot 또는 네트워크 재시작을 해줘야 합니다.
$ sudo reboot
OR
$ sudo systemctl restart networking.service

댓글 없음:

댓글 쓰기