세모튜브

RPI : 라즈베리파이 고정 IP설정 (유선/무선) 본문

설치

RPI : 라즈베리파이 고정 IP설정 (유선/무선)

iDevKim 2020. 12. 31. 17:37

====== 파일 하단에 아래 내용을 추가하자.

== interface eth0 는 유선 설정

== interface wlan0 는 무선 설정

 

$ sudo nano /etc/dhcpcd.conf

.

.

# fallback to static profile on eth0
interface eth0
static ip_address=192.168.1.111/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1
#fallback static_eth0

# Custom static IP address for wlan0.
interface wlan0
static ip_address=192.168.1.111/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1

 

저장후 sudo reboot