树莓派官方系统默认hostname是raspberrypi.local
,当启动1-2分钟连上网络以后,可以通过电脑ping raspberrypi.local
来获取树莓派的ip地址。同样的,你也可以直接通过ssh pi@raspberrypi.local
来登录你的树莓派。
ping raspberrypi.local
PING raspberrypi.local (192.168.123.34): 56 data bytes
64 bytes from 192.168.123.34: icmp_seq=0 ttl=64 time=2.730 ms
64 bytes from 192.168.123.34: icmp_seq=1 ttl=64 time=1.071 ms
64 bytes from 192.168.123.34: icmp_seq=2 ttl=64 time=1.601 ms
Note:如果你有多块树莓派,需要制定不同的名称,可以修改如下两个文件内的raspberrypi
字符串,然后重启即可。
/etc/hosts
/etc/hostname
import socket
def get_host_ip():
try:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 80))
ip = s.getsockname()[0]
finally:
s.close()
return ip
if __name__ == '__main__':
#获取LAN IP
print("LAN IP:",get_host_ip())
# 获取本机计算机名称
hostname = socket.gethostname()
print("hostname:",hostname)
进一步地,树莓派启动以后把ip地址发给自己的微信。
去server酱申请SCKEY并绑定你的微信,就可以把信息地址发到你的微信上了。
只要让pi开机运行如下程序/home/pi/getip.py
即可。可以在crontab加上@reboot (python /home/pi/getip.py)
# -*- encoding: utf-8 -*-
#File Name /home/pi/getip.py
import time
import socket
import requests
def get_host_ip():
try:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 80))
ip = s.getsockname()[0]
finally:
s.close()
return ip
def post(ip):
#要把SCKEY替换为你自己的SCKEY,例子:
#url = "https://sc.ftqq.com/SCUaf874358199b22ef70b589ce14bacba0.send"
url = "https://sc.ftqq.com/SCKEY.send"
data = "text=树莓派的IP地址:%s"%ip
results = requests.get(url, data)
print(results)
if __name__ == '__main__':
#等待联网
time.sleep(5)
while True:
ip = get_host_ip()
if ip == False:
print("Wait for network to be ready")
time.sleep(10)
else:
print(ip)
post(ip)
time.sleep(5)
break
print("IP Info is Sent")
参考文献:
树莓派python获取自身IP 树莓派开机后把 IP 地址信息,自动推送到微信的方法 | 中心线 Server酱