Raspbian Jessie를 실행하는 내 Raspberry Pi 3는 직접 이더넷 연결을 통해 외부 하드웨어에 연결되어 있습니다.
두 장치를 연결하려면 RasPi에 eth0에 고정 IP 주소가 필요하다고 생각합니다. 나는 이미 외부 하드웨어의 주소인 192.168.1.158을 알고 있습니다.
다음을 포함하도록 /etc/dhcpcd.conf 파일을 편집할 때:
interface eth0
static ip_address = 192.168.1.100/24
static routers = 192.168.1.1
static domain_name_servers = 192.168.1.1
그리고 /etc/network/interfaces에는 기본 설정이 있습니다:
iface eth0 inet manual
재부팅하고 sudo ifconfig를 실행한 후에도 여전히 잘못된 eth0 IP 주소 169.xxx.xxx.xx를 얻습니다.
어떤 제안이 있으십니까? 이전에 iface eth0 inet manual이 iface eth0 inet static이 되도록 /etc/network/interfaces 파일을 편집한 다음 거기에서 주소를 설정하려고 시도했습니다. sudo ifconfig를 실행하면 적절한 IP 주소가 제공되었지만 여전히 장치에 제대로 ping을 보낼 수 없었습니다.
답변1
파일을 편집해야 한다는 말이 맞습니다 /etc/network/interfaces
. 기본 고정 IP 구성의 경우 다음과 같은 것이 필요합니다.
# interfaces(5) file used by ifup(8) and ifdown(8)
# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 10.0.0.100
netmask 255.255.255.0
gateway 10.0.0.1
dns-nameservers 8.8.8.8
dns-nameservers 8.8.4.4
파일을 수정한 후 고정 IP 주소를 적용할 수 ifdown eth0
있습니다 . ifup eth0
를 확인하여 확인하세요 ifconfig eth0
.
올바른 IP 주소를 얻었지만 여전히 장치를 ping할 수 없는 경우 ping하려는 서버에서 ICMP 에코 요청을 수락하는지 확인해야 합니다.