gpt4 book ai didi

linux - 从 linux dns 服务器重定向域名

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:39:22 29 4
gpt4 key购买 nike

因此,IT 部门决定更改一堆域名,这破坏了我实验室网络中的一堆东西。我有一个 suse linux dns 服务器(我没有设置也不太了解)。我想知道是否有办法让它手动将 ip 地址解析为旧域名。简单地修改我实验室中的软件以指向新域名是行不通的(因为其他站点的其他实验室仍将使用旧域名)。

最佳答案

以下是来自 this tutorial 的一些相关引述:

Examples Corporation has been assigned the network 192.0.2.0/24 and internally we are using 10.0.0.0/24.

Let's start serving the external names and IPs, we edit /etc/bind/named.conf.local4 and add:

zone "example.com" {
type master;
file "/etc/bind/db.example.com";
};

and then we create /etc/bind/db.example.com with the following contents:

; example.com
$TTL 604800
@ IN SOA ns1.example.com. root.example.com. (
2006020201 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800); Negative Cache TTL
;
@ IN NS ns1
IN MX 10 mail
IN A 192.0.2.1
ns1 IN A 192.0.2.1
mail IN A 192.0.2.128 ; We have our mail server somewhere else.
www IN A 192.0.2.1
client1 IN A 192.0.2.201 ; We connect to client1 very often.

因此,您要做的是将“example.com”替换为您的程序访问的任何域,将“192.0.2.whatever”替换为您的目标 ip,并删除“ns1”、“mail”、“www”, “clien1”行并将其替换为

*.yourdomain.com. IN      A       your.ip.address.255

关于linux - 从 linux dns 服务器重定向域名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9473962/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com