绑定ip到子域
我有一个 Linux 客户端,它将其 IP 地址报告给服务器,服务器将 IP 地址写在 mysql 表中。
现在我的问题是如何在客户端提交此 IP 地址时将其绑定到子域?
我听说过 Linux DNS Bind,但如果我没猜错的话,它们的地址在名为“named.conf”的文件中被声明为静态...
你会如何解决它? 提前致谢
I have a linux client that reports his ip adress to a server who writes the ip down in a mysql table.
Now my question is how to bind this ip adresse to a subdomain in the moment it is submitted by the client?
i heard about the Linux DNS Bind but the addresses their are declared static in a file called "named.conf" if im getting it right...
How would you solve it? Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DNS 服务器(例如 Bind)允许从 DHCP 服务器等进行动态 dns 更新:https: //www.isc.org/software/bind/documentation/arm95#dynamic_update 这里是提到的 RFC:http://www.ietf.org/rfc/rfc2136.txt
我想从技术上讲,它是您实际想要创建的 IP 地址 A 记录的主机。
DNS servers like bind allow for dynamic dns updates from DHCP servers and the like: https://www.isc.org/software/bind/documentation/arm95#dynamic_update and here is the RFC mentioned: http://www.ietf.org/rfc/rfc2136.txt
I guess technically it's a host to IP address A record you actually want to create.