-
Ubuntu 네트워크 설정Linux 2012. 7. 4. 14:01
우분투에서 ip를 dhcp가 아닌 수동으로 설정하고 싶다면 아래와 같이 파일을 수정한다
$ sudo vi /etc/network/interfaces
auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.20.20 netmask 255.255.255.0 gateway 192.168.20.1 dns-nameservers 168.126.63.1 8.8.8.8
이후 network를 다시 시작하자
$ sudo /etc/init.d/networking restart
혹시 게이트웨이만 따로 설정하고자 한다면 아래의 명령어를 사용하자
$ route add default gw 192.168.1.254 eth0
'Linux' 카테고리의 다른 글
Ubuntu DNS 설정 (0) 2012.07.15 Ubuntu Directory Listing(Index of) 방지 (0) 2012.07.06 Ubuntu 웹서버 구축 (APM setup) (0) 2012.07.04 Ubuntu ssh 설치 & 설정 (0) 2012.07.04 Ubuntu apt-get 오류시 대처법 (0) 2012.07.02