[TOC]
0x00 网络连接测试
Test-Connection 命令 - 向一台或多台计算机发送ICMP回显请求数据包或ping
描述:可以类比于cmd中的nbtstat明进行获取局域网中的指定计算机名的IPv4/6地址信息以及MAC地址;
基础语法:
[TOC]
描述:可以类比于cmd中的nbtstat明进行获取局域网中的指定计算机名的IPv4/6地址信息以及MAC地址;
基础语法:
[TOC]
描述:可以类比于cmd中的nbtstat明进行获取局域网中的指定计算机名的IPv4/6地址信息以及MAC地址;
基础语法:1
2
3
4
5PS > (Get-Command *-Connection).Name
Test-Connection
# 语法
Test-Connection [-ComputerName] <System.String[]> [-AsJob] [-BufferSize <System.Int32>] [-Count <System.Int32>] [-DcomAuthentication {Default | None | Connect | Call | Packet | PacketIntegrity | PacketPrivacy | Unchanged}] [-Delay <System.Int32>] [-Impersonation {Default | Anonymous | Identify | Impersonate | Delegate}] [-Protocol {DCOM | WSMan}] [-ThrottleLimit <System.Int32>] [-TimeToLive <System.Int32>] [-WsmanAuthentication {Default | Basic | Negotiate | CredSSP | Digest | Kerberos}] [<CommonParameters>]
基础示例:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39# 1.获取本机计算机名相关信息
PS C:\Users\WeiyiGeek> Test-Connection -ComputerName WeiyiGeek
# Source Destination IPV4Address IPV6Address Bytes Time(ms)
# ------ ----------- ----------- ----------- ----- --------
# WEIYIGEEK WeiyiGeek 10.10.10.107 fe80:::fe6c:10bf:4244%15 32 0
# 获取指定的计算机名称相关信息
Test-Connection -ComputerName Server01, Server02, Server12
# Source Destination IPV4Address IPV6Address Bytes Time(ms)
# ------ ----------- ----------- ----------- ----- --------
# WEIYIGEEK Server01 10.20.172.102 fe80::f5d4:6342:8038:f1b9%12 32 0
# WEIYIGEEK Server01 10.20.172.102 fe80::f5d4:6342:8038:f1b9%12 32 1
# WEIYIGEEK Server01 10.20.172.102 fe80::f5d4:6342:8038:f1b9%12 32 0
# WEIYIGEEK Server01 10.20.172.102 fe80::f5d4:6342:8038:f1b9%12 32 0
# 2.测试连接指定IP地址信息
Test-Connection 10.20.172.106
# Source Destination IPV4Address IPV6Address Bytes Time(ms)
# ------ ----------- ----------- ----------- ----- --------
# WEIYIGEEK 10.10.10.107 10.10.10.107 fe80::88cc:5b4:9dde:3e4d%12 32 1
# 3.从多台计算机向一台计算机发送回显请求
Test-Connection -Source Server02, Server12, localhost -ComputerName Server01 -Credential Domain01\Admin01
# 4.使用参数自定义测试命令(发送 256 字节, 32字节 节流阀)
Test-Connection -ComputerName WeiyiGeek -Count 3 -Delay 2 -TTL 255 -BufferSize 256 -ThrottleLimit 32
# 5.ComputerName参数的值是一个“Get Content”命令,它从`服务器.txt文件“”。该命令使用AsJob参数将命令作为后台作业运行,并将作业保存在“$job”变量中。
$job = Test-Connection -ComputerName (Get-Content Servers.txt) -AsJob
# “if”命令检查作业是否仍在运行。如果作业没有运行,“Receive job”获取结果并将其存储在“$results”变量中。
if ($job.JobStateInfo.State -ne "Running") {$Results = Receive-Job $job}
# 6.用凭据Ping远程计算机
# 该命令使用Credential参数指定有权ping远程计算机的用户帐户,并使用Impersonation参数更改要标识的模拟级别。
Test-Connection Server55 -Credential Domain55\User01 -Impersonation Identify
# 7.仅当连接测试成功时才创建会话
if (Test-Connection -ComputerName Server01 -Quiet) {New-PSSession Server01}
你好看友,欢迎关注博主微信公众号哟! ❤
这将是我持续更新文章的动力源泉,谢谢支持!(๑′ᴗ‵๑)
温馨提示: 未解锁的用户不能粘贴复制文章内容哟!
方式1.请访问本博主的B站【WeiyiGeek】首页关注UP主,
将自动随机获取解锁验证码。
Method 2.Please visit 【My Twitter】. There is an article verification code in the homepage.
方式3.扫一扫下方二维码,关注本站官方公众号
回复:验证码
将获取解锁(有效期7天)本站所有技术文章哟!
@WeiyiGeek - 为了能到远方,脚下的每一步都不能少
欢迎各位志同道合的朋友一起学习交流,如文章有误请在下方留下您宝贵的经验知识,个人邮箱地址【master#weiyigeek.top】
或者个人公众号【WeiyiGeek】
联系我。
更多文章来源于【WeiyiGeek Blog - 为了能到远方,脚下的每一步都不能少】, 个人首页地址( https://weiyigeek.top )
专栏书写不易,如果您觉得这个专栏还不错的,请给这篇专栏 【点个赞、投个币、收个藏、关个注、转个发、赞个助】,这将对我的肯定,我将持续整理发布更多优质原创文章!。
最后更新时间:
文章原始路径:_posts/编程世界/Powershell/Cmdlet/网络管理类命令/PS命令之网络查看管理和配置.md
转载注明出处,原文地址:https://blog.weiyigeek.top/2019/12-23-546.html
本站文章内容遵循 知识共享 署名 - 非商业性 - 相同方式共享 4.0 国际协议