-
Notifications
You must be signed in to change notification settings - Fork 832
dns支持相关
wangyu- edited this page Jul 7, 2018
·
3 revisions
域名解析(gethostbyname系列函数)影响静态编译,所以udp2raw、UDPspeeder release中的binary不带域名解析功能。
如果需要解析域名,请自行用脚本解析:
[[email protected]:~]
$ dig +short g.cn
172.217.161.35
或:
root@debian9:~/Desktop/UDPspeeder# nslookup g.cn|grep Add |awk '!/#/{printf$2"\n"}'
203.208.41.47
203.208.41.55
203.208.41.56
203.208.41.63
apt-get install dnsutils
udp2raw可以编译出带dns解析支持的binary,需要自己编译,参考这个PR,UDPspeeder没有类似功能。