使用 PHP 更改域名 IP 地址

发布于 2024-10-11 19:24:16 字数 179 浏览 1 评论 0原文

我目前有一个运行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜血缘 2024-10-18 19:24:16

我同意“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:

#!/bin/bash
H=domain.mobi
IP=`curl -s http://domain.mobi/ip.php` # or wget, etc.

nsupdate -v -y tsig.$H:Wwr82TQdx3biQdx3biq2Pibi7IMq2PGxETCetcETC== > /dev/null << EOF
server 129.8.7.53
zone $H
update delete john.$H SPF
update delete john.$H TXT
update add    john.$H 600 SPF "v=spf1 ip4:$IP -all"
update add    john.$H 600 TXT "v=spf1 ip4:$IP -all"
send
EOF

现在,如果您的主机确实通知/axfr/ixfr,那么您的区域将立即更新。
上面脚本中的 ip.php 只是一个简单的:

<?php
header("Content-Type: text/plain");
echo $_SERVER['REMOTE_ADDR'];
?>

这些是​​基本上做同样事情的人的示例:

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:

#!/bin/bash
H=domain.mobi
IP=`curl -s http://domain.mobi/ip.php` # or wget, etc.

nsupdate -v -y tsig.$H:Wwr82TQdx3biQdx3biq2Pibi7IMq2PGxETCetcETC== > /dev/null << EOF
server 129.8.7.53
zone $H
update delete john.$H SPF
update delete john.$H TXT
update add    john.$H 600 SPF "v=spf1 ip4:$IP -all"
update add    john.$H 600 TXT "v=spf1 ip4:$IP -all"
send
EOF

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:

<?php
header("Content-Type: text/plain");
echo $_SERVER['REMOTE_ADDR'];
?>

These are examples of people who are doing basicly the same thing:

趁年轻赶紧闹 2024-10-18 19:24:16

您应该查看 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文