User Tools

Site Tools


networking:network_testing

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
networking:network_testing [2018/07/04 12:33]
jcooper
networking:network_testing [2023/07/04 14:32] (current)
gcooper
Line 1: Line 1:
 ====== Network Testing ====== ====== Network Testing ======
 +
 +===== Route Tracing =====
 +
 +
 +==== Using TCP ====
 +
 +:!: May require ''sudo''...
 +
 +  * Requires something listening on the port you specify
 +    * For example a web server listening on port 443 (SSL)
 +  * Use ''-n'' to eliminate name resolution
 +    * Faster
 +  * Uses TCP SYN and ACK instead of ICMP
 +
 +Using port 443: 
 +
 +<file>
 +traceroute -T -O info -p 443 hostname.domain.tld
 +
 +tcptraceroute hostname.domain.tld 443
 +</file>
 +
 +This will also illuminate **asymmetrical routing**:
 +
 +<file>
 +tracepath hostname.domain.tld
 +</file>
  
 ===== Latency Testing ===== ===== Latency Testing =====
Line 49: Line 76:
 <file> <file>
 iperf -s iperf -s
 +</file>
 +
 +Windows firewall:
 +
 +<file>
 +New-NetFirewallRule -DisplayName 'iPerf-Server-Inbound-TCP' -Direction Inbound -Protocol TCP -LocalPort 5201 -Action Allow | Enable-NetFirewallRule
 +New-NetFirewallRule -DisplayName 'iPerf-Server-Inbound-UDP' -Direction Inbound -Protocol UDP -LocalPort 5201 -Action Allow | Enable-NetFirewallRule
 </file> </file>
  
Line 149: Line 183:
 ===== 10Gb Network testing with NTttcp ===== ===== 10Gb Network testing with NTttcp =====
  
-http://www.cinevate.com/blog/confessions-of-a-10-gbe-network-newbie-part-2-test-toolkit/+https://www.smallnetbuilder.com/archives/lanwan/lanwan-features/32345-confessions-of-a-10-gbe-network-newbie-part-2-test-toolkit
  
 https://gallery.technet.microsoft.com/NTttcp-Version-528-Now-f8b12769 https://gallery.technet.microsoft.com/NTttcp-Version-528-Now-f8b12769
networking/network_testing.1530729229.txt.gz · Last modified: 2018/07/04 12:33 by jcooper