l286397978 自己解决了,在/var/www/html/icons_lan或icons_wan下更改html文件,把<?php echo $lanip ?>改成你的zerotier分配到的IP地址,这样你就能在zerotier网络下访问了,但改了之后这个html就无法在局域网访问,所以你要规划好icons_lan和icons_wan这两个文件夹,我是把lan的在局域网访问,wan的在外网访问
例如青龙面板:
<li>
<a href="javascript:disp_ql('设备的zerotier IP',<?php $ckql=shell_exec("cat /etc/qlinstalled");echo $ckql ?>)"><img class="shake" src="img/png/ql.png" /><strong>青龙面板</strong></a>
</li>
<script type="text/javascript">
function disp_ql(lanip,ql)
{
if(ql){
window.open("http://"+ lanip+":5700")
}else{
alert("青龙面板未安装,请在终端运行以下命令一键安装\n install-qinglong.sh")
}
}
</script>