一直想找能够开机发送cpolar的隧道的代码,但是貌似发现有没有人有这个需求,本代码在网络上已有代码的基础上增加了这个功能。
cpolar是内网穿透工具,非常好用,推荐!! 下面内容包括三个部分:
- 复制mail.py到您的派派上并进行相关信息修改。
- 修改/ect/rc.local信息,添加python3 /home/pi/mail.py >> /home/pi/mail.log 2>&1在exit0之前,注意文件的绝对路径位置。
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi
python3 /home/pi/mail.py >> /home/pi/mail.log 2>&1 #注意要修改为文件的绝对路径
exit 0