1. 네트워크 설정
# /etc/network/interfaces
# The primary network interface
auto eth0
iface eth0 inet static
address 서버IP
netmask 255.255.255.0
network 네트워크대역 (C클래스니까 서버IP에서 마지막만 뒤에 0)
broadcast 브로드캐스트(C클래스니까 서버IP에서 뒤에만 255)
gateway 게이트웨이IP
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers dns서버IP
2. DNS 설정
(위에서 DNS 해도 됨..)
# /etc/resolv.conf
nameserver 192.xxx.xxx.xxx
3. 네트워크 재시작
# /etc/init.d/networking restart
이건 service network restart 가 아님!
'UNIX > ubuntu' 카테고리의 다른 글
우분투 12.04 에서 네트워크 본딩 하기 (0) | 2013.07.15 |
---|---|
우분투 본딩 옵션 (다른 계열 리눅스 포함) (0) | 2013.07.15 |
apt-get VS dpkg (0) | 2012.08.21 |
우분투 syslog 설정 (0) | 2012.08.20 |
우분투에서 zip 압축 풀기 (0) | 2012.08.14 |