[Raspberry Pi 라즈베리파이] 고정 ip 설정하기

라즈베리파이에 고정 아이피 할당하기

현재 ip주소 확인

ifconfig

ip설정 변경

sudo nano /etc/dhcpcd.conf
interface eth0
static ip_address=" "
static routers=" "

(wlan0: 무선, eth0: 유선)

재시작

sudo /etc/init.d/networking restart

sudo reboot