使用 PHP 更改域名 IP 地址
我目前有一个运行 Bind 的 Ubuntu 服务器。我有一个子域名 (home.example.com) 链接到我的家庭 IP 地址。我希望能够使用一个 php 脚本,当访问并通过身份验证时,该脚本会更改子域的 IP 地址。我想我可以使用 php 编辑绑定配置文件,然后运行命令“service bind restart”。这是最好的方法吗?
I currently have an Ubuntu server running Bind. I have a subdoamin (home.example.com) linking to my home ip address. I was wanting to be able to use a php script that, when visited and authenticated would change the ip address of the subdomain. I was thinking I could use php to edit the bind config files, then run the command "service bind restart". Would this be the best way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我同意“nsupdate”将是一个更好的解决方案,但它不需要 PHP,至少不需要重新启动服务器。我认为如果您的网络服务器可以这样做,那就非常糟糕了。
在 OS-X 中(我想在 Linux 中也有一个等效的 - 或者是 crontab),一旦 IP 更改(但似乎不在 WiFi 上 - 所以为此我使用了 crontab)。
触摸/etc/ppp/ip-up.sh
ln -s !$ /etc/ppp/ip-down.sh
/etc/ppp/ip-up.sh:
现在,如果您的主机确实通知/axfr/ixfr,那么您的区域将立即更新。
上面脚本中的 ip.php 只是一个简单的:
这些是基本上做同样事情的人的示例:
I agree 'nsupdate' would be a better solution, but it wont need PHP, at least not to restart the server. I think it's very bad if your webserver could do so.
In OS-X (and I guess in Linux there's a an equivalent - or else the crontab) the files /etc/ppp/ip-up.sh and /etc/ppp/ip-down.sh are executed once you IP changes (but appeareantly not on WiFi - so for that I use a crontab).
touch /etc/ppp/ip-up.sh
ln -s !$ /etc/ppp/ip-down.sh
/etc/ppp/ip-up.sh:
Now if your master does notify/axfr/ixfr then in no-time your zone is updated.
The ip.php in above script is just a simple:
These are examples of people who are doing basicly the same thing:
您应该查看 RFC 2136。“nsupdate”命令可以实现该功能,但这需要您的 PHP 脚本在服务器上运行命令。搜索“RFC 2136”会出现 https://pear.php.net/manual/en/package.networking.net-dns.net-dns-updates-example.php
You should look into RFC 2136. The 'nsupdate' command implements that, but that requires your PHP script to run a command on the server. A search for "RFC 2136" turns up https://pear.php.net/manual/en/package.networking.net-dns.net-dns-updates-example.php