RaspberryPi- 네트워크에서 고정 IP로 할당하고 싶을 때 다음과 같은 파일로 접근합니다.
sudo nano /etc/dhcpcd.conf
그리고 아래와 같이 원하는 IP 주소를 할당합니다.
interface eth0
static ip_address=192.168.0.30
static netmask=255.255.255.0
static routers=192.168.0.1
static domain_name_servers=168.126.63.1
interface wlan0
static ip_address=192.168.0.40
static netmask=255.255.255.0
static routers=192.168.0.1
static domain_name_servers=168.126.63.1
'Embedded' 카테고리의 다른 글
RaspberryPi- booting하고 자동으로 프로그램 시작하기 (0) | 2021.08.10 |
---|---|
Linux- ssh의 root 접근 (0) | 2021.08.10 |
RaspberryPi- 부팅 화면 조정하기 (0) | 2021.08.10 |
RaspberryPi- IPv6 사용하지 않기 (0) | 2021.08.10 |
RaspberryPi- LCD 해상도 조정 (0) | 2021.08.09 |