본문 바로가기
  • AI (Artificial Intelligence)
Skills/Ubuntu

[Ubuntu] 네트워크 설정

by 로샤스 2014. 1. 23.

우분투 네트워크 설정

# vi /etc/network/interfaces (사실 vi보다 나는 nano를 사용한다)

# The loopback network interface

auto lo

iface lo inet loopback

 

// 동적으로 할당 받을때 사용한다.

# The primary network interface

# auto eth0

# iface eth0 inet dhcp

 

// 고정으로 IP를 사용.

# menual

auto eth0   

iface eth0 inet static    

address 192.168.0.100   

netmask 255.255.255.0   

netwrok 192.168.0.0    

broadcast 192.168.0.255

gateway 192.168.0.1

dns-nameservers 168.126.63.1 168.126.63.2 8.8.8.8    

 

네트워크를 재시작하여 이를 적용한다.

$ sudo /etc/init.d/networking restart

 

Ping을 날려 정상 작동하는지 확인한다.

$ ping -c 3 8.8.8.8 (3번의 핑을 8.8.8.8 로 보낸다)

 

댓글