完成了CNAME+A记录类型
This commit is contained in:
parent
548ef4a34e
commit
af2df369e6
10
start.php
10
start.php
@ -32,6 +32,15 @@ if($type=='A'){
|
||||
$send['ttl']=30;
|
||||
};
|
||||
|
||||
#此处进行一个CNAME+A记录返回的实例
|
||||
if($type=='A' && $name='cn.bing.com'){
|
||||
$send['type']='CNAME+A';
|
||||
#CNAME+A和CNAME+AAAA的情况下,均只会返回一条CNAME,如多条CNAME的均衡负载请通过您的代码在此处服务端实现
|
||||
$send['detail']='china.bing123.com';
|
||||
$send['ttl']=30;
|
||||
};
|
||||
|
||||
|
||||
|
||||
if($type=='PTR'){
|
||||
/**
|
||||
@ -52,6 +61,7 @@ if($type=='NS'){
|
||||
$send['ttl']=600;
|
||||
};
|
||||
|
||||
#实际情况下很少直接返回CNAME,真实情况一般是CNAME+A同时还有CNAME+AAAA
|
||||
if($type=='CNAME'){
|
||||
$send['type']='CNAME';
|
||||
$send['detail'][1]='baidu.cn';
|
||||
|
3
test.php
Normal file
3
test.php
Normal file
@ -0,0 +1,3 @@
|
||||
<?php
|
||||
print_r(dns_get_record('cname.n2n.icu',DNS_A));
|
||||
?>
|
91
vendor/workerman/workerman.log
vendored
91
vendor/workerman/workerman.log
vendored
@ -594,3 +594,94 @@ Stack trace:
|
||||
2022-12-16 12:24:20 pid:2191 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-16 12:24:22 pid:2191 Workerman[start.php] stopping ...
|
||||
2022-12-16 12:24:22 pid:2191 Workerman[start.php] has been stopped
|
||||
2022-12-17 15:08:10 pid:14678 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-17 15:08:21 pid:14679 TypeError: dns_get_record(): Argument #1 ($hostname) must be of type string, stdClass given in /home/enoch/phpdns/vendor/workerman/workerman/Protocols/Dns.php:107
|
||||
Stack trace:
|
||||
#0 /home/enoch/phpdns/vendor/workerman/workerman/Protocols/Dns.php(107): dns_get_record()
|
||||
#1 /home/enoch/phpdns/vendor/workerman/workerman/Connection/UdpConnection.php(73): Workerman\Protocols\Dns::encode()
|
||||
#2 /home/enoch/phpdns/start.php(141): Workerman\Connection\UdpConnection->send()
|
||||
#3 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(2569): {closure}()
|
||||
#4 [internal function]: Workerman\Worker->acceptUdpConnection()
|
||||
#5 /home/enoch/phpdns/vendor/workerman/workerman/Events/Event.php(193): EventBase->loop()
|
||||
#6 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(2463): Workerman\Events\Event->loop()
|
||||
#7 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(1574): Workerman\Worker->run()
|
||||
#8 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(1416): Workerman\Worker::forkOneWorkerForLinux()
|
||||
#9 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(1390): Workerman\Worker::forkWorkersForLinux()
|
||||
#10 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(557): Workerman\Worker::forkWorkers()
|
||||
#11 /home/enoch/phpdns/start.php(145): Workerman\Worker::runAll()
|
||||
#12 {main}
|
||||
2022-12-17 15:08:21 pid:14678 worker[none:14679] exit with status 64000
|
||||
2022-12-17 15:08:23 pid:14678 Workerman[start.php] stopping ...
|
||||
2022-12-17 15:08:23 pid:14678 Workerman[start.php] has been stopped
|
||||
2022-12-17 15:08:37 pid:14785 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-17 15:08:39 pid:14786 TypeError: explode(): Argument #2 ($string) must be of type string, array given in /home/enoch/phpdns/vendor/workerman/workerman/Protocols/Dns.php:121
|
||||
Stack trace:
|
||||
#0 /home/enoch/phpdns/vendor/workerman/workerman/Protocols/Dns.php(121): explode()
|
||||
#1 /home/enoch/phpdns/vendor/workerman/workerman/Connection/UdpConnection.php(73): Workerman\Protocols\Dns::encode()
|
||||
#2 /home/enoch/phpdns/start.php(141): Workerman\Connection\UdpConnection->send()
|
||||
#3 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(2569): {closure}()
|
||||
#4 [internal function]: Workerman\Worker->acceptUdpConnection()
|
||||
#5 /home/enoch/phpdns/vendor/workerman/workerman/Events/Event.php(193): EventBase->loop()
|
||||
#6 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(2463): Workerman\Events\Event->loop()
|
||||
#7 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(1574): Workerman\Worker->run()
|
||||
#8 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(1416): Workerman\Worker::forkOneWorkerForLinux()
|
||||
#9 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(1390): Workerman\Worker::forkWorkersForLinux()
|
||||
#10 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(557): Workerman\Worker::forkWorkers()
|
||||
#11 /home/enoch/phpdns/start.php(145): Workerman\Worker::runAll()
|
||||
#12 {main}
|
||||
2022-12-17 15:08:39 pid:14785 worker[none:14786] exit with status 64000
|
||||
2022-12-17 15:08:40 pid:14785 Workerman[start.php] stopping ...
|
||||
2022-12-17 15:08:40 pid:14785 Workerman[start.php] has been stopped
|
||||
2022-12-17 15:09:24 pid:14851 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-17 15:09:43 pid:14851 Workerman[start.php] stopping ...
|
||||
2022-12-17 15:09:43 pid:14851 Workerman[start.php] has been stopped
|
||||
2022-12-17 15:10:17 pid:14987 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-17 15:10:20 pid:14987 Workerman[start.php] stopping ...
|
||||
2022-12-17 15:10:20 pid:14987 Workerman[start.php] has been stopped
|
||||
2022-12-17 15:11:39 pid:15339 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-17 15:11:50 pid:15339 Workerman[start.php] stopping ...
|
||||
2022-12-17 15:11:50 pid:15339 Workerman[start.php] has been stopped
|
||||
2022-12-17 15:11:51 pid:15399 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-17 15:12:52 pid:15399 Workerman[start.php] stopping ...
|
||||
2022-12-17 15:12:52 pid:15399 Workerman[start.php] has been stopped
|
||||
2022-12-17 15:15:28 pid:15556 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-18 04:03:30 pid:464 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-18 04:03:33 pid:464 Workerman[start.php] stopping ...
|
||||
2022-12-18 04:03:33 pid:464 Workerman[start.php] has been stopped
|
||||
2022-12-18 04:03:41 pid:547 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-18 04:03:54 pid:547 Workerman[start.php] stopping ...
|
||||
2022-12-18 04:03:54 pid:547 Workerman[start.php] has been stopped
|
||||
2022-12-18 04:04:04 pid:608 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-18 04:04:06 pid:609 TypeError: dechex(): Argument #1 ($num) must be of type int, string given in /home/enoch/phpdns/vendor/workerman/workerman/Protocols/Dns.php:129
|
||||
Stack trace:
|
||||
#0 /home/enoch/phpdns/vendor/workerman/workerman/Protocols/Dns.php(129): dechex()
|
||||
#1 /home/enoch/phpdns/vendor/workerman/workerman/Connection/UdpConnection.php(73): Workerman\Protocols\Dns::encode()
|
||||
#2 /home/enoch/phpdns/start.php(141): Workerman\Connection\UdpConnection->send()
|
||||
#3 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(2569): {closure}()
|
||||
#4 [internal function]: Workerman\Worker->acceptUdpConnection()
|
||||
#5 /home/enoch/phpdns/vendor/workerman/workerman/Events/Event.php(193): EventBase->loop()
|
||||
#6 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(2463): Workerman\Events\Event->loop()
|
||||
#7 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(1574): Workerman\Worker->run()
|
||||
#8 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(1416): Workerman\Worker::forkOneWorkerForLinux()
|
||||
#9 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(1390): Workerman\Worker::forkWorkersForLinux()
|
||||
#10 /home/enoch/phpdns/vendor/workerman/workerman/Worker.php(557): Workerman\Worker::forkWorkers()
|
||||
#11 /home/enoch/phpdns/start.php(145): Workerman\Worker::runAll()
|
||||
#12 {main}
|
||||
2022-12-18 04:04:06 pid:608 worker[none:609] exit with status 64000
|
||||
2022-12-18 04:04:08 pid:608 Workerman[start.php] stopping ...
|
||||
2022-12-18 04:04:08 pid:608 Workerman[start.php] has been stopped
|
||||
2022-12-18 04:04:44 pid:677 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-18 04:05:03 pid:677 Workerman[start.php] stopping ...
|
||||
2022-12-18 04:05:03 pid:677 Workerman[start.php] has been stopped
|
||||
2022-12-18 04:05:03 pid:729 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-18 04:05:09 pid:729 Workerman[start.php] stopping ...
|
||||
2022-12-18 04:05:09 pid:729 Workerman[start.php] has been stopped
|
||||
2022-12-18 04:08:48 pid:830 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-18 04:10:34 pid:830 Workerman[start.php] stopping ...
|
||||
2022-12-18 04:10:34 pid:830 Workerman[start.php] has been stopped
|
||||
2022-12-18 04:10:34 pid:882 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-18 04:11:46 pid:882 Workerman[start.php] stopping ...
|
||||
2022-12-18 04:11:46 pid:882 Workerman[start.php] has been stopped
|
||||
2022-12-18 04:11:46 pid:952 Workerman[start.php] start in DEBUG mode
|
||||
2022-12-18 04:13:27 pid:952 Workerman[start.php] stopping ...
|
||||
2022-12-18 04:13:27 pid:952 Workerman[start.php] has been stopped
|
||||
|
54
vendor/workerman/workerman/Protocols/Dns.php
vendored
54
vendor/workerman/workerman/Protocols/Dns.php
vendored
@ -99,6 +99,59 @@ class Dns
|
||||
$n=$n+1;
|
||||
};
|
||||
break;
|
||||
case 'CNAME+A':
|
||||
$type='0005';
|
||||
$ns=$buffer->detail;
|
||||
$nss=explode('.',$ns);
|
||||
$detail[0]='';
|
||||
foreach($nss as $part){
|
||||
$len=str_pad(dechex(strlen($part)),2,"0",STR_PAD_LEFT);
|
||||
$tpart=bin2hex($part);
|
||||
$detail[0]=$detail[0].$len.$tpart;
|
||||
};
|
||||
$detail[0]=$detail[0].'00';
|
||||
$lenth[0]=str_pad(dechex((strlen($detail[0])/2)),4,"0",STR_PAD_LEFT);
|
||||
|
||||
$ttl=str_pad(dechex($buffer->ttl),8,"0",STR_PAD_LEFT);
|
||||
|
||||
$answer='';
|
||||
$answer=$answer.'C00C'.$type.'0001'.$ttl.$lenth[0].$detail[0];
|
||||
|
||||
$ip=dns_get_record($ns,DNS_A);
|
||||
$type='0001';
|
||||
$n=0;
|
||||
foreach($ip as $i){
|
||||
$ttl=str_pad(dechex($i['ttl']),8,"0",STR_PAD_LEFT);
|
||||
$i=$i['ip'];
|
||||
$nss=explode('.',$i);
|
||||
$detail[$n]='';
|
||||
foreach($nss as $part){
|
||||
$tpart=str_pad(dechex($part),2,"0",STR_PAD_LEFT);
|
||||
$detail[$n]=$detail[$n].$tpart;
|
||||
};
|
||||
$lenth[$n]=str_pad(dechex((strlen($detail[$n])/2)),4,"0",STR_PAD_LEFT);
|
||||
$n=$n+1;
|
||||
|
||||
};
|
||||
$n=0;
|
||||
foreach($detail as $c){
|
||||
$rlenth='';
|
||||
$rlenth=$lenth[$n];
|
||||
$n=$n+1;
|
||||
$answer=$answer.'C02B'.$type.'0001'.$ttl.$rlenth.$c;
|
||||
}
|
||||
|
||||
$status='8180';
|
||||
$questions='0001';
|
||||
$AuthorityRRs='0000';
|
||||
$AdditionalRRs='0000';
|
||||
|
||||
$AnswerRRs=str_pad((count((array)$ip)+1),4,"0",STR_PAD_LEFT);
|
||||
|
||||
$response=$buffer->id.$status.$questions.$AnswerRRs.$AuthorityRRs.$AdditionalRRs.$buffer->query.$answer;
|
||||
return hex2bin($response);
|
||||
|
||||
break;
|
||||
case 'SOA':
|
||||
$type='0006';
|
||||
$ns=$buffer->detail;
|
||||
@ -179,7 +232,6 @@ class Dns
|
||||
$status='8180';
|
||||
$questions='0001';
|
||||
$AnswerRRs=str_pad(count((array)$buffer->detail),4,"0",STR_PAD_LEFT);
|
||||
#$AnswerRRs='0001';
|
||||
$AuthorityRRs='0000';
|
||||
$AdditionalRRs='0000';
|
||||
$answer='';
|
||||
|
Loading…
Reference in New Issue
Block a user