운영체제/UBUNTU

[Ubuntu 18.04 LTS] 이전 네트워크 설정 방법으로 네트워크 설정하기

louky 2019. 3. 4. 13:57
반응형

[Ubuntu 18.04 LTS]  이전 네트워크 설정 방법으로 네트워크 설정하기 





우분투 18.04에서는 네트워크 설정 방법이 yaml형식으로 바뀌었다. 


이전 방식으로 사용하고자 할 경우에는  ifupdown pkg를 설치 후 사용할 수 있다. 



새로운 방식의 네트워크 설정 방법 -> [Ubuntu 18.04 LTS] 네트워크 설정하기



 환경 

OS:  Ubuntu 18.04 LTS

H/W : HP DL380G9



Step 1. PKG 설치 


Install PKG name  :  ifupdown

root@test:~# sudo apt install ifupdown
패키지 목록을 읽는 중입니다... 완료
의존성 트리를 만드는 중입니다
상태 정보를 읽는 중입니다... 완료
제안하는 패키지:
  ppp rdnssd
다음 새 패키지를 설치할 것입니다:
  ifupdown
0개 업그레이드, 1개 새로 설치, 0개 제거 및 24개 업그레이드 안 함.
55.9 k바이트 아카이브를 받아야 합니다.
이 작업 후 227 k바이트의 디스크 공간을 더 사용하게 됩니다.
받기:1 http://kr.archive.ubuntu.com/ubuntu bionic-updates/main amd64 ifupdown amd64 0.8.17ubuntu1.1 [55.9 kB]
내려받기 55.9 k바이트, 소요시간 1초 (54.1 k바이트/초)
Selecting previously unselected package ifupdown.
(데이터베이스 읽는중 ...현재 66179개의 파일과 디렉터리가 설치되어 있습니다.)
Preparing to unpack .../ifupdown_0.8.17ubuntu1.1_amd64.deb ...
Unpacking ifupdown (0.8.17ubuntu1.1) ...
ifupdown (0.8.17ubuntu1.1) 설정하는 중입니다 ...
Created symlink /etc/systemd/system/multi-user.target.wants/networking.service → /lib/systemd/system/networking.service.
Created symlink /etc/systemd/system/network-online.target.wants/networking.service → /lib/systemd/system/networking.service.
Processing triggers for ureadahead (0.100.0-20) ...
ureadahead will be reprofiled on next reboot
Processing triggers for systemd (237-3ubuntu10.12) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...



Step 2. 네트워크 config 설정



<설정 예시>

root@test:~# vi /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
        address 192.168.0.71
        netmask 255.255.255.0
        network 192.168.0.0
        broadcast 192.168.0.255
        gateway 192.168.0.1
        dns-nameservers 8.8.4.4




Step 3. 네트워크 재기동 


<예시 1> Daemon재시작 방법 

root@test:~# /etc/init.d/networking restart


<예시 2> Config reload 방법

root@test:~# ifdown eth0
root@test:~# ifup eth0


반응형