Raspberry Pi_Kor_11.6.2 Raspberry Pi 시스템에서 고정 IP address 지정하는 방법


Published Book on Amazon


All of IOT

Starting with the Latest Raspberry Pi from Beginner to Advanced – Volume 1

All of IOT

Starting with the Latest Raspberry Pi from Beginner to Advanced – Volume 2


출판된 한글판 도서


최신 라즈베리파이(Raspberry Pi)로 시작하는 사

물인터넷(IOT)의 모든 것 – 초보에서 고급까지 (상)

최신 라즈베리파이(Raspberry Pi)로 시작하는 사

물인터넷(IOT)의 모든 것 – 초보에서 고급까지 (하)


Original Book Contents


11.6.2  Raspberry Pi 시스템에서 고정 IP address 지정하는 방법

 

Raspberry Pi 시스템에서 IP address에 대한 기본설정은 /etc/network/interfaces 파일에 저장되어 있다. 통상 아래와 같은 내용이 저장되어 있다.

 

iface     lo         inet      lookback

iface     eth0      inet      dhcp

iface     wlan0    inet      dhcp

           wpa-ssid                      "wifissid"

           wpa-psk            "wifipassword"

 

Raspberry Pi 시스템에서 IP address를 고정시키기 위해서는 /etc/network/interfaces 파일의 내용을 수정해야 한다.

 

유선 network IP address를 고정할 경우는 eth0 adapter에 대한 내용을 변경하고, 무선 network IP address를 고정할 경우는 wlan0 adapter에 대한 내용을 변경한다. IP address를 고정시키고자 하는 항목에 대해서 DHCP 방식을 "static"으로 바꾸고 다음과 같이 내용을 수정한다. 다음은 유선 network에 대해서 IP address를 고정시키는 사례이다.

 

iface     eth0      inet      static

address            192.168.1.202

netmask            255.255.255.0

gateway            192.168.1.0

 

"address" 항목에 원하는 고정 IP를 지정하고, "netmask" 항목에는 통상 "255.255.255.0"을 설정하고, "gateway" 항목에는 DHCP 서버(network 서버, 공유기, router) IP address를 지정한다

 

이렇게 파일을 변경한 다음 reboot를 하면 Raspberry Pi 시스템에 "192.168.1.202"라는 IP address가 부여된다.

 

 


 

Leave a Reply