본문 바로가기

NetWork

우분투(Ubuntu) 서버 네트워크 설정

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

1. 네트워크 설정 파일 접근

1
$ vi /etc/network/interfaces

 

2-1. DHCP로 설정

1
2
3
4
5
6
7
8
# 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
# The primary network interface
 auto eth0
 iface eth0 inet dhcp

 

2-2. static으로 설정

01
02
03
04
05
06
07
08
09
10
11
12
# 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
# The primary network interface
 auto eth0
 iface eth0 inet static
 address xxx.xxx.xxx.xxx
 netmask xxx.xxx.xxx.xxx
 gateway xxx.xxx.xxx.xxx
 dns-nameservers xxx.xxx.xxx.xxx

 

3. 네트워크 재시작

1
$ sudo service networking restart

 

ubuntu 12.04 기준임 

'NetWork' 카테고리의 다른 글

리눅스 SFTP만 되는 계정 설정  (0) 2013.10.15
Linux(리눅스) 계정 관리(추가,수정,삭제)  (0) 2013.10.15
UBUNTU server 설치  (0) 2013.09.22
REST  (0) 2013.05.06
NoSQL이란 무엇인가?  (0) 2013.05.03