树莓派 自动发送公网IP至指定邮箱

第一步:获取公网ip,使用w3m工具,从whatismyip.org网站获取公网ip。

安装:sudo apt-get install w3m

使用:w3m -dump http://whatismyip.org

将获取到的内容保存到ip.txt

w3m -dump http://whatismyip.org > ip.txt (>>追加内容 >覆盖内容)

第二步:发送邮件,需要有sendEmail命令

安装:sudo apt-get install sendemail

格式:

sendemail -f ADDRESS [options]

-o message-charset  编码 中文用utf-8

-f ADDRESS             from(sender) email address

-t ADDRESS             to email address(es)

-u SUBJECT             message subject

-m MESSAGE           message body

-s SERVER[:PORT]     smtp mail relay.

-xu USERNAME         username for SMTP authentication

-xp PASSWORd         password for SMTP authentication

-a  FILE ...                 附件

使用:sendemail -o message-charset=utf-8 -f 目标邮箱 -t 个人邮箱 -s smtp.163.com -xu 个人邮箱用户名 -xp 个人邮箱密码 -u "树莓派公网ip" -m "见附件" -a "ip.txt"

注意:不同邮箱SERVER不同,附件ip.txt为获取到的公网ip内容。

第三步:编写shell脚本

vim SendIPEmail.sh

树莓派 自动发送公网IP至指定邮箱_第1张图片

调用:sh SendIPEmail.sh

第四步:自动定时执行shell脚本

注意:最好使用root用户

可用crontab  -e 直接编写cron表达式和要执行的命令

如安装了webmin也可直接使用Scheduled Cron Jobs功能。

 

你可能感兴趣的:(树莓派)