This tool tests the native, synthetic, and hardware network data path
Перейти к файлу
smoon193 f840d723ea
Regenerated API key
2024-05-01 11:22:27 -07:00
.vscode Stash 2021-03-21 00:28:12 -07:00
helpers multiplying base buffer size by link speed to try to account for 100 gig nics 2022-05-05 17:10:57 -07:00
tests Undo 2022-06-23 11:12:08 -07:00
tools replacing ctstraffic with ntttcp 2022-03-03 17:31:55 -08:00
.gitignore Editing git ignore 2020-03-05 09:52:07 -08:00
CODE_OF_CONDUCT.md Initial CODE_OF_CONDUCT.md commit 2019-10-28 09:56:38 -07:00
LICENSE Initial LICENSE commit 2019-10-28 09:56:40 -07:00
README.md Update README.md 2021-07-30 07:29:24 -07:00
SECURITY.md Initial SECURITY.md commit 2019-10-28 09:56:42 -07:00
Test-NetStack.psd1 Test Version Fix 2021-07-20 11:22:58 -07:00
Test-NetStack.psm1 fixing accidentally deleted word 2022-06-22 11:55:50 -07:00
appveyor.yml Regenerated API key 2024-05-01 11:22:27 -07:00

README.md

Build status downloads

Test-NetStack: A network integration testing tool

Synopsis

Test-NetStack is a PowerShell-based testing tool that performs ICMP, TCP, and RDMA traffic testing of networks. Test-NetStack can help identify potential network (fabric and host) misconfiguration or operational instability.

Test-NetStack can validate the various network data paths on Windows, testing native, synthetic, and hardware offloaded (RDMA) data paths for issues with:

  • Connectivity
  • Packet fragmention
  • Low throughput
  • Congestion

Test Details

Test-NetStack first performs connectivity mapping across a cluster, specific nodes, or IP targets then tests:

- Stage1: ICMP Connectivity, Reliability, and PMTUD
- Stage2: TCP Stress 1:1
- Stage3: RDMA Connectivity
- Stage4: RDMA Stress 1:1
- Stage5: RDMA Stress N:1
- Stage6: RDMA Stress N:N

For more information, run:

help Test-NetStack

Install the Tool

Install-Module Test-NetStack

Run the Tool

$NetStackResults = Test-NetStack
$NetStackResults = Test-Netstack -Nodes 'Node1', 'Node2', 'NodeN'
$NetStackResults = Test-Netstack -IPTarget '192.168.1.1', '192.168.1.2', '192.168.1.3', '192.168.1.4'

Reviewing Results

$NetStackResults.Stage1 | ft *
$NetStackResults.Stage2 | ft *
$NetStackResults.Stage3 | ft *
$NetStackResults.Stage4 | ft *
$NetStackResults.Stage5 | ft *
$NetStackResults.Stage6 | ft *

Testable vs Disqualified Networks

Test-NetStack will identify networks that can and cannot be tested. To review the Test-NetStack networks that will be tested, use:

$NetStack.TestableNetworks

To review the Test-NetStack networks that cannot be tested.

$NetStack.DisqualifiedNetworks

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.