Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。

C:\Users\Administrator>mslookup
'mslookup' 不是内部或外部命令,也不是可运行的程序
或批处理文件。

C:\Users\Administrator>ms lookup
'ms' 不是内部或外部命令,也不是可运行的程序
或批处理文件。

C:\Users\Administrator>nslookup
默认服务器:  ns.szptt.net.cn
Address:  202.96.134.133

> set type=ptr
> 121.34.248.73
服务器:  ns.szptt.net.cn
Address:  202.96.134.133

*** ns.szptt.net.cn 找不到 73.248.34.121.in-addr.arpa.: Non-existent domain
> set type=mx
> chinatelling.com
服务器:  ns.szptt.net.cn
Address:  202.96.134.133

非权威应答:
chinatelling.com        MX preference = 10, mail exchanger = mx.chinatelling.com

chinatelling.com        MX preference = 20, mail exchanger = mx1.chinatelling.co
m
> set type=a
> mx.chinatelling.com
服务器:  ns.szptt.net.cn
Address:  202.96.134.133

非权威应答:
名称:    mx.chinatelling.com
Address:  218.18.52.116

> set type=ptr
> 218.18.52.116
服务器:  ns.szptt.net.cn
Address:  202.96.134.133

非权威应答:
116.52.18.218.in-addr.arpa      name = mx.chinatelling.com
>
> set type=txt
> secomtel.com
服务器:  ns.szptt.net.cn
Address:  202.96.134.133

非权威应答:
secomtel.com    text =

"v=spf1 a:mail.secomtel.com mx:121.34.248.73 IP4:121.34.248.73~all"
> 163.com
服务器:  ns.szptt.net.cn
Address:  202.96.134.133

非权威应答:
163.com text =

"v=spf1 include:spf.163.com -all"
> microsoft.com
服务器:  ns.szptt.net.cn
Address:  202.96.134.133

非权威应答:
microsoft.com   text =

"FbUF6DbkE+Aw1/wi9xgDi8KVrIIZus5v8L6tbIQZkGrQ/rVQKJi8CjQbBtWtE64ey4NJJwj
5J65PIggVYNabdQ=="
microsoft.com   text =

"v=spf1 include:_spf-a.microsoft.com include:_spf-b.microsoft.com includ
e:_spf-c.microsoft.com include:_spf-ssg-a.microsoft.com include:spf-a.hotmail.co
m ip4:131.107.115.215 ip4:131.107.115.214 ip4:205.248.106.64 ip4:205.248.106.30
ip4:205.248.106.32 ~all"
>

mslookup的更多相关文章

  1. 外媒速递:系统管理员必须掌握的20条Linux命令

    [51CTO.com原创稿件]外媒速递是核子可乐精选的近日国外媒体的精彩文章推荐,希望大家喜欢! 今天推荐的内容包括:系统管理员必须掌握的20条Linux命令.五款最佳Linux屏幕记录应用.MySQ ...

随机推荐

  1. (二)u-boot2013.01.01 for TQ210:《Makefile分析》

           当时写的时候看的是2012-10版本的,但是略对比了一遍和2013.01.01没什么改动,所以这不影响对2013.01.01版本的makefile的理解.本文比较侧重于语法句意的分析,框 ...

  2. 将Winform程序快速转换为在浏览器中运行的程序

    http://www.codeproject.com/Articles/31429/Embedding-a-NET-WinForms-Application-in-an-Interne 详见以上文章. ...

  3. oracle数据操纵语言(DML)data manipulation language

    数据库操纵语言(DML)用于查询和操纵模式对象中的数据,它不隐式地提交当前事务. SELECTINSERTUPDATEDELETECALLEXPLAIN PLANLOCK TABLEMERGE使用算术 ...

  4. python 基础——变量

    变量赋值 1. 把任意类型的变量[名称]赋值给新的变量,总是增加对象引用,而不是创建新的对象 2. 对于list.dict可变类型,操作的都是同一个对象 3. 使用del删除的是该对象的一个引用,只有 ...

  5. CF Two Substrings

    Two Substrings time limit per test 2 seconds memory limit per test 256 megabytes input standard inpu ...

  6. GSS6 4487. Can you answer these queries VI splay

    GSS6 Can you answer these queries VI 给出一个数列,有以下四种操作: I x y: 在位置x插入y.D x  : 删除位置x上的元素.R x y: 把位置x用y取替 ...

  7. Asp.net的内置对象!!!

    还记得自己第一次面试的时候,面试官问的问题就是.net内置对象的问题,当时就让尴尬的要死... 所以作为新手的我们还是要知道这些轮廓的东西的! 1.Response对象 2.Request对象 3.A ...

  8. nodejs5-package.json

    name:包名,唯一,由小写字符.数字和下划线组成,不能有空格 preferglobal:是否支持全局安装,true表示支持 descrition:描述 version:版本号 author:作者信息 ...

  9. Socket 两平台互相 通信 .NET

    两个平台互相通信,对方发送数据过来,我方接收数据,对数据进行处理后发送结果给对方,对方进行相应的操作. 首页,我方开启服务监听: Socket socket = new Socket(AddressF ...

  10. django 学习-18 用户管理Auth系统使用

    1.首先跟之前说的admin的要求有点像, vim urls.py from django.contrib import adminadmin.autodiscover()               ...