I work for a Database specialist, and in the course of a day 95% of the problems i come across are Network based (mainly just a poorly put together network)
We all know the adage, "there is no such thing as a perfect network"
Out of frustration and boredom I knocked up this batch file which has turned out to be invalueable (if you can't stump up for a protocol analyzer)
Ping SERVER > C:\ping.txt
Route print > c:\R1.txt
IPCONFIG /ALL > c:\r2.TXT
netstat -n > C:\r3.txt
netstat -s > C:\r4.txt
netstat -a > C:\r5.txt
tracert > c:\Trace.txt
ipconfig /displaydns > C:\DNS.txt
COPY c:\R1.TXT + c:\r2.TXT C:\tcp.TXT
copy C:\r3.txt + C:\r4.txt C:\ip.txt
copy C:\tcp.txt + C:\ip.txt C:\PIP.txt
copy C:\PIP.txt + C:\r5.txt C:\CPIP.txt
copy C:\CPIP.txt + C:\Trace.txt C:\P.txt
copy C:\P.txt + C:\DNS.txt C:\TCPI.txt
copy C:\Ping.txt + C:\TCPI.txt C:\TCPIP.txt
DEL c:\PIP.TXT
DEL c:\r5.TXT
DEL c:\R1.TXT
DEL c:\r2.TXT
DEL C:\r3.txt
DEL C:\tcp.txt
DEL C:\r4.txt
DEL C:\ip.txt
DEL C:\CPIP.txt
DEL C:\Trace.txt
DEL C:\P.txt
DEL C:\DNS.txt
DEL C:\Ping.txt
DEL C:\TCPI.txt
Cut and paste this text into notepad (changing SERVER to your servers name and changing WEBSITE to a site of your choice), give it a *.bat file extension, then run it.
browse to the root of your C:\ drive and check the log file it produces called TCPIP.txt
I have resolved so many Network communication problems with this simple file.
We all know the adage, "there is no such thing as a perfect network"
Out of frustration and boredom I knocked up this batch file which has turned out to be invalueable (if you can't stump up for a protocol analyzer)
Ping SERVER > C:\ping.txt
Route print > c:\R1.txt
IPCONFIG /ALL > c:\r2.TXT
netstat -n > C:\r3.txt
netstat -s > C:\r4.txt
netstat -a > C:\r5.txt
tracert > c:\Trace.txt
ipconfig /displaydns > C:\DNS.txt
COPY c:\R1.TXT + c:\r2.TXT C:\tcp.TXT
copy C:\r3.txt + C:\r4.txt C:\ip.txt
copy C:\tcp.txt + C:\ip.txt C:\PIP.txt
copy C:\PIP.txt + C:\r5.txt C:\CPIP.txt
copy C:\CPIP.txt + C:\Trace.txt C:\P.txt
copy C:\P.txt + C:\DNS.txt C:\TCPI.txt
copy C:\Ping.txt + C:\TCPI.txt C:\TCPIP.txt
DEL c:\PIP.TXT
DEL c:\r5.TXT
DEL c:\R1.TXT
DEL c:\r2.TXT
DEL C:\r3.txt
DEL C:\tcp.txt
DEL C:\r4.txt
DEL C:\ip.txt
DEL C:\CPIP.txt
DEL C:\Trace.txt
DEL C:\P.txt
DEL C:\DNS.txt
DEL C:\Ping.txt
DEL C:\TCPI.txt
Cut and paste this text into notepad (changing SERVER to your servers name and changing WEBSITE to a site of your choice), give it a *.bat file extension, then run it.
browse to the root of your C:\ drive and check the log file it produces called TCPIP.txt
I have resolved so many Network communication problems with this simple file.