dns查看命令的方法讲解 dns怎么查看命令


dns查看命令的方法讲解 dns怎么查看命令

文章插图
Dog是一个用于DNS查询的命令行工具,它的工作原理类似于dig 。它具有丰富多彩的输出,支持DNS-over-TLS 和 DNS-over-HTTPS协议,并且可以输出JSON格式 。系统环境
Ubuntu 20.04.1 LTS
安装
Dog是用Rust编写的DNS查询工具 。Dog需要rustc的版本高于1.45.0,我们使用apt安装的版本达不到这个要求,下面我们会使用其他方式安装rustc 。下面需要先安装libssl-dev安装包:
[email protected]:~$ sudo apt install -y cargo libssl-dev下面安装rust,由于按照官方文档安装rust,有时下载没有进度,所以在这里先修改镜像源,改成国内的,然后执行安装:
[email protected]:~$ export RUSTUP_DIST_SERVER=https://mirrors.ustc.edu.cn/rust-static[email protected]:~$ export RUSTUP_UPDATE_ROOT=https://mirrors.ustc.edu.cn/rust-static/rustup[email protected]:~$ curl https://sh.rustup.rs -sSf | sh在下面的地方,选择选项1.


安装完成,需要执行下面命令,才能正常使用cargo命令:
[email protected]:~$ source $HOME/.cargo/env下面检查rustc的版本:
[email protected]:~$ rustc --versionrustc 1.47.0 (18bf6b4f0 2020-10-07)从github下载dog安装包,并解压:
[email protected]:~$ wget https://github.com/ogham/dog/archive/v0.1.0.tar.gz[email protected]:~$ tar xvf v0.1.0.tar.gz 进入解压出来的目录,并构建dog程序:
[email protected]:~$ cd dog-0.1.0/使用默认的仓库地址更新会比较慢,在这里按ctrl+c结束更新,在家目录会生成一个.cargo文件夹,进去新建一个config配置文件,将下面内容添加进去这样修改默认仓库,更新速度就快许多了:
[email protected]:~/dog-0.1.0$ cat ~/.cargo/config[source.crates-io]
registry = “https://github.com/rust-lang/crates.io-index” # 替换成你偏好的镜像源 replace-with = ‘sjtu’ #replace-with = ‘ustc’ # 清华大学
[source.tuna]
registry = “https://mirrors.tuna.tsinghua.edu.cn/git/crates.io-index.git” # 中国科学技术大学
[source.ustc]
registry = “git://mirrors.ustc.edu.cn/crates.io-index” # 上海交通大学
[source.sjtu]
registry = “https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index” # rustcc社区
[source.rustcc]
registry = “git://crates.rustcc.cn/crates.io-index”
修改完成之后,再回到dog-0.1.0目录里面,重新构建dog程序,并运行测试以下:
[email protected]:~/dog-0.1.0$ cargo build[email protected]:~/dog-0.1.0$ cargo test

确保dog命令从任何目录运行,将二进制文件放在/usr/local/bin目录中 。
[email protected]:~/dog-0.1.0$ sudo cp -p ~/dog-0.1.0/target/debug/dog /usr/local/bin运行dog工具,查看以下版本:
[email protected]:~$ dog --versiondog ● command-line DNS clientv0.1.0 [] built on 2020-11-19 (pre-release!)https://dns.lookup.dog/[email protected]:~$ 可以使用源码包里面的命令补全脚本,当需要提示的时候按两下TAB键,显示子命令:
[email protected]:~$ source ~/dog-0.1.0/completions/dog.bash 如何使用dog命令
现在,让我们看看如何使用dog命令查询不同的DNS记录 。
查询A记录
[email protected]:~$ dog www.baidu.comCNAME www.baidu.com.5s"www.a.shifen.com."A www.a.shifen.com. 4s180.101.49.12A www.a.shifen.com. 4s180.101.49.11查询NS记录
[email protected]:~$ dog aliyun.com NSNS aliyun.com. 5s"ns3.aliyun.com."NS aliyun.com. 5s"ns5.aliyun.com."NS aliyun.com. 5s"ns4.aliyun.com."


以上关于本文的内容,仅作参考!温馨提示:如遇健康、疾病相关的问题,请您及时就医或请专业人士给予相关指导!

「四川龙网」www.sichuanlong.com小编还为您精选了以下内容,希望对您有所帮助: