2018년 1월 30일 화요일

리눅스 우분투 16.04 서버 고정 IP 설정 방법

1. 우분투 데스크톱을 쓰는 경우 네트워크 매니져가 자동 IP 부여하기 때문에 이를 제거
$ sudo apt-get remove -y --purge network-manager
2. 네트워크 환경설정 변경
$ sudo nano /etc/network/interfaces
여기서 자동 ip부여방식 dhcp를 고정 ip부여방식 static으로 설정변경
## 아래내용 참고하여 자신의 서버환경/네트워크 라우터 설정 등을 고려하여 복사 수정 입력
===========================================================
# 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

# primary network interface
auto enp3s0
#iface enp3s0 inet dhcp

# 고정 IP 설정 추가
iface enp3s0 inet static
  address 192.168.x.xx
  netmask 255.255.255.0
  gateway 192.168.x.x
  dns-nameservers 168.126.xx.1 168.126.xx.2
===========================================================

댓글 없음:

댓글 쓰기