我有一个用例,我想将默认监听指令(如“*:443”)限制到特定端口。
当监听环回 IP(如“127.0.54.1:443”)且具有默认监听配置“*:443”时,会触发冲突
Linux 中是否有指令将默认监听配置重定向到单个 IP 或接口?
我有一个用例,我想将默认监听指令(如“*:443”)限制到特定端口。
当监听环回 IP(如“127.0.54.1:443”)且具有默认监听配置“*:443”时,会触发冲突
Linux 中是否有指令将默认监听配置重定向到单个 IP 或接口?
我有两个子区域可以说:
zone "first.com" { type master; file "/etc/bind/zones/first.com.primary";};
zone "second.com" { type master; file "/etc/bind/zones/second.com.primary";};
首先我定义
$TTL 300
@ IN SOA ns1.org.com. postmaster.org.com. (
2022050902 ; serial
14400 ; refresh
1800 ; retry
604800 ; expire
86400 ) ; minimum
@ IN NS ns1.org.com.
subdomain IN A 127.0.0.1
第二个我想先参考
$TTL 86400
@ IN SOA ns1.org.com. postmaster.org.com. (
2019032601 ; serial
14400 ; refresh
1800 ; retry
604800 ; expire
86400 ) ; minimum
@ IN NS ns1.org.com.
@ IN CNAME subdomain.first.com.
www IN CNAME @
localhost IN A 127.0.0.1
loopback IN CNAME localhost
那可能吗?