본문 바로가기
OS/Linux

ubuntu / 우분투 네트워크 설정

by 하하IT 2020. 4. 27.

우분투 네트워크 설정
2007/04/30 20:55
 
출처 : 아즈키네 블로그


고정아이피 설정입니다 :]

azki@ubuntu:~$ 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


# DHCP로 아이피받기
#auto eth0
#iface eth0 inet dhcp



## 고정아이피
auto eth0
iface eth0 inet static
        address 192.168.0.73
        netmask 255.255.255.0
        network 192.168.0.1
        broadcast 255.255.255.255
        gateway  192.168.0.1


물론 주소는 상황따라 다르겠지염 (ethX 도.)

DNS 설정은 다음과 같이 합니다 (/etc/resolv.conf 은 처음에 없어서 만들어서 사용하였음.)


azki@ubuntu:~$ vi /etc/resolv.conf
nameserver 168.126.63.1
nameserver 168.126.63.2


물론 상황에 따라 마음대로, 예를 들면 Kornet의 주소인 168.126.63.1 과 같은 주소.


참고로 DHCP 를 사용한다면.. (유동아이피.)

/etc/network/interfaces 는 이렇게..


auto lo
auto eth0
iface lo inet loopback
iface eth0 inet dhcp

/etc/resolv.conf 는 DHCP 클라이언트가 알아서 해주므로 안해두 된다.

DHCP 클라이언트 설치는


# apt-get 사용시 -
apt-get install dhcp-client
# aptitude 사용시 -
aptitude install dhcp-client

(dhcp-client 가 설치된 경우 실행가능한 명령 'dhclient' 가 부팅시 네트워크 데몬에 의해 실행됨)

기타:
1. 랜카드 감지 확인은 'dmesg' 로 가능.
2. 설정 적용은 '/etc/init.d/networking restart' 나 'ifdown' 후 'ifup' 으로 가능.

'OS > Linux' 카테고리의 다른 글

centos 7 / tomcat / SSL / https / let's encrypt  (0) 2020.04.29
Let’s Encrypt / certbot-auto  (0) 2020.04.28
ubuntu / usb인식  (0) 2020.04.27
파일 분할 및 압축관련 tar , tgz , gzip ,split  (0) 2020.04.27
CentOS network 설정  (0) 2020.04.27