mslookup
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的更多相关文章
- 外媒速递:系统管理员必须掌握的20条Linux命令
[51CTO.com原创稿件]外媒速递是核子可乐精选的近日国外媒体的精彩文章推荐,希望大家喜欢! 今天推荐的内容包括:系统管理员必须掌握的20条Linux命令.五款最佳Linux屏幕记录应用.MySQ ...
随机推荐
- 对《[Unity官方实例教程 秘密行动] Unity官方教程《秘密行动》(十二) 角色移动》的一些笔记和个人补充,解决角色在地形上移动时穿透问题。
这里素材全是网上找的. 教程看这里: [Unity官方实例教程 秘密行动] Unity官方教程<秘密行动>(九) 角色初始设定 一.模型设置: 1.首先设置模型的动作无限循环. 不设置的话 ...
- TFS 2010 使用手册(二)项目集合与项目
1.项目集合 1.1 项目集合创建 打开TFS管理控制台,点击“团队项目集合”. 图1点击“团队项目集合” 图2 点击“创建集合” 然后按照向导一步步完成项目集合的创建. 1.2 项目集合的删除 选中 ...
- 《UNIX环境高级编程》学习心得 四 文件I/O(一)
这里说的文件I/O是相对标准I/O来说的.主要介绍在UNIX系统中常用的五个文件I/O函数:open.read.write.lseek.以及close. 一.open和opennat #include ...
- 【Warshall_Floyd】
模板: /* Problem: 任意两点间的最短路 Tips : 可以处理边时负数的情况. 判断图中是否有负圈,只需检查d[i][j]是负数的顶点i就可以. 复杂度 : O(n^3) */ #incl ...
- codeforces 677B B. Vanya and Food Processor(模拟)
题目链接: B. Vanya and Food Processor time limit per test 1 second memory limit per test 256 megabytes i ...
- some smart
1.ca.laplanete.mobile.pageddragdropgridhttps://github.com/mrKlar/PagedDragDropGridPagedDragDropGrid ...
- echo,printr,print_r之间的区别
echo 返回值是void,可以一次输出多个值,多个值之间用逗号分隔.echo是语言结构(language construct)也就是关键字,而并不是真正的函数,因此不能作为表达式的一部分使用.使用的 ...
- C#微信开发回复信息
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Web;usi ...
- 六.CSS浮动与清除
浮动 把元素从常规文档流中取出.是元素脱离常规文档流 浮动的作用: ①实现文本绕排图片效果 ②让原本在上下方向上堆叠的块级元素可以变成左右并列,从而实现多栏布局 文本绕排图片 首先HTML代码如下 & ...
- iOS UIView简单缩放动画
@interface ViewController () { UIView *animationView; UIButton *button; CGPoint animationPoint; } @e ...