Presentation is loading. Please wait.

Presentation is loading. Please wait.

CH7. 데비안에서 고정 ip를 설정하는 방법.

Similar presentations


Presentation on theme: "CH7. 데비안에서 고정 ip를 설정하는 방법."— Presentation transcript:

1 CH7. 데비안에서 고정 ip를 설정하는 방법

2 [고정 IP 사용시] 1. 중지 sudo ifdown eth0 2. 네트워크 인터페이스 설정 sudo vi /etc/network/interfaces auto lo iface lo inet loopback auto eth0 iface eth0 inet static address xxx.xxx.xxx.xxx netmask network xxx.xxx.xxx broadcast xxx.xxx.xxx gateway xxx.xxx.xxx dns-nameservers 3. 네임 서버 설정 $ sudo vi /etc/resolv.conf nameserver nameserver 동작 sudo ifup eth0 [유동 IP 사용시] sudo vi /etc/network/interfaces auto lo iface lo inet loopback allow-hotplug eth0 iface eth0 inet dhcp

3 [하나의 랜카드에 2개이상의 IP설정] (가상이더넷 설정) sudo vi /etc/network/interfaces auto lo allow-hotplug eth0 iface lo inet loopback   # The primary network interface auto eth0 iface eth0 inet static         address         netmask         network         broatcast         gateway         dns-nameservers   auto eth0:0 iface eth0:0 inet static         address         netmask [참고] sudo apt-get install ifplugd sudo dpkg-reconfigure ifplugd

4

5 $vim /etc/network/interfaces
auto eth0 ^iface eth0 inet static ^^^^address xxx.xxx.xxx.xxx ^^^^netmask ^^^^network xxx.xxx.xxx.0 ^^^^broadcast xxx.xxx.xxx.255 ^^^^gateway xxx.xxx.xxx.254 ^^^^dns-nameservers 이렇게 띄어쓰기를 하면 해결된다. Reboot 후, 셋팅이 제대로 먹히면 ifdown ifup 모두 잘된다. 또, ip도 원하는 ip로 변경된다.

6 $ifconfig $ifconfig $ifconfig


Download ppt "CH7. 데비안에서 고정 ip를 설정하는 방법."

Similar presentations


Ads by Google