1.9.2007 12:27
Here is a set of scripts for windows and linux for executing my favourite network tools.
P - infinite ping
PP - infinite 1kB ping (no more remembering what parameter to use - l/s)
P4 - ping IPv4
PP4 - 1kB ping IPv4
P6 - ping IPv6
PP6 - 1kB ping IPv6
T - traceroute
TT - traceroute without NS resolve (faster)
N - nslookup
All must be entered with a target host as a first parameter.
Linux set is just a bunch of alias commands to add to your ~/.bashrc file and re-login:
Windows bath files are distributed with an installer. The installation directory is automatically added to user's path variable.
They can be later executed using Start->Run and entering the command.
P - infinite ping
PP - infinite 1kB ping (no more remembering what parameter to use - l/s)
P4 - ping IPv4
PP4 - 1kB ping IPv4
P6 - ping IPv6
PP6 - 1kB ping IPv6
T - traceroute
TT - traceroute without NS resolve (faster)
N - nslookup
All must be entered with a target host as a first parameter.
Linux set is just a bunch of alias commands to add to your ~/.bashrc file and re-login:
Code:
alias p='ping'
alias pp='ping -s 1024'
alias p6='ping6'
alias pp6='ping6 -s 1024'
alias t='traceroute'
alias tt='traceroute -n'
alias n='nslookup'
Windows bath files are distributed with an installer. The installation directory is automatically added to user's path variable.
They can be later executed using Start->Run and entering the command.
Coffee phreak!