home lan puzzler

C

Chuck

I've done this and posted the results. Please note that I am not
getting the error your link discusses.

The link name was a little limiting. I expanded the content of the article, but
I'm stuck with the blog title / link til I figure out how to rename without
losing the current link, which is now published all over.

--
Cheers,
Chuck
http://nitecruzr.blogspot.com/
Paranoia is not necessarily a bad thing - it's a normal response from experience.
My email is AT DOT
actual address pchuck sonic net.
 
C

Chuck

Chuck,
I'm not sure if this is noteworthy but I'm noticing that running

`net view' on all winxp pro machines fails to display the subject
machine. (chub)

The interesting part is that running:

net view chub
(on any of the winxp pro)

Displays all of chubs shares.

net view:
Server Name Remark

-------------------------------------------------------------------------------
\\ANSIL
\\HARVEY
\\READER Samba 3.0.10
The command completed successfully.
======================================

net view chub:
Shared resources at chub



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk
chub-bk2 Disk
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.

Harry,

I think it is. The "net view" command, I believe, comes from the browser. The
"net view xxxx", I believe, interrogates computer xxxx directly.

You're running both commands from an XP computer, but the first is data coming
thru Reader.

Did you check restrictanonymous on Chub?
<http://nitecruzr.blogspot.com/2005/05/restrictanonymous-and-enumeration-of.html>
<http://nitecruzr.blogspot.com/2005/04/nt-browser-or-why-cant-i-always-see.html>

Did you check the firewall on Chub?
<http://nitecruzr.blogspot.com/2005/05/getting-access-denied-in-network.html#Firewall>

--
Cheers,
Chuck
http://nitecruzr.blogspot.com/
Paranoia is not necessarily a bad thing - it's a normal response from experience.
My email is AT DOT
actual address pchuck sonic net.
 
H

Harry Putnam

[...]
OK, so we're back to Samba involved.

Only by showing up as a server.... I can shut that down and all
symptems remain the same.
So far, I see 3 symmetrical browstats, only NBT transports. No obvious
problems.

I still have no idea of the scope of the problem, and without the ipconfigs I
doubt that I will. What we were going to do with the ipconfigs is run CDiag,
which might show us a pattern / scope of symptoms anyway. You're welcome to run
CDiag yourself, and describe any discrepancies found, without revealing details.
I'll coach you as much as I can.
<http://nitecruzr.blogspot.com/2005/05/what-is-cdiag-comprehensive-diagnosis.html>

After browsing these links and you pages a while I see no evidence of
a download link for cdiag. Is it just well hidden or really not
there? The word download appears nowhere on the cdiag page.
 
C

Chuck

[...]
OK, so we're back to Samba involved.

Only by showing up as a server.... I can shut that down and all
symptems remain the same.
So far, I see 3 symmetrical browstats, only NBT transports. No obvious
problems.

I still have no idea of the scope of the problem, and without the ipconfigs I
doubt that I will. What we were going to do with the ipconfigs is run CDiag,
which might show us a pattern / scope of symptoms anyway. You're welcome to run
CDiag yourself, and describe any discrepancies found, without revealing details.
I'll coach you as much as I can.
<http://nitecruzr.blogspot.com/2005/05/what-is-cdiag-comprehensive-diagnosis.html>

After browsing these links and you pages a while I see no evidence of
a download link for cdiag. Is it just well hidden or really not
there? The word download appears nowhere on the cdiag page.

Harry,

CDiag is not a downloadable product. It's straight text, copied from the web
page:
<http://nitecruzr.blogspot.com/2005/05/cdiag-comprehensive-diagnosis-source.html>

See for instructions (and why CDiag is straight text):
<http://nitecruzr.blogspot.com/2005/05/what-is-cdiag-comprehensive-diagnosis.html>

Take the following code (everything inside the "#####"). Edit computer name and
ip address in pairs without the "()" to FullTargetn lines, and edit ip address
of router to PingTargets line. For example,
set FullTarget1=chub (ip address of chub)
set FullTarget2=harvey (ip address of harvey)
set FullTarget3=ansil (ip address of ansil)
set PingTargets=www.yahoo.com 66.94.230.32 (ip address of router)

1. Open Notepad. Ensure that Format - Word Wrap is not checked. Highlight
then Copy the code (Ctrl-C), precisely as it is presented, and Paste (Ctrl-V)
into Notepad. Verify, and correct, names and addresses if necessary.
2. Save the Notepad file as "cdiag.cmd", as type "All Files", into the root
folder "C:\".
3. Run it by Start - Run - "c:\cdiag".
4. Wait patiently.
5. When Notepad opens up displaying c:\cdiag.txt, first check Format and
ensure that Word Wrap is NOT checked! Then, copy the entire contents (Ctrl-A
Ctrl-C) and paste (Ctrl-V) into your next post.


Do this from all computers, please, with all computers powered up and online.

#####

@echo off
set FullTarget1=
set FullTarget2=
set FullTarget3=
set FullTarget4=
set FullTargets=%FullTarget1% %FullTarget2% %FullTarget3% %FullTarget4%
set FullTargets=%FullTargets% 127.0.0.1
set PingTargets=www.yahoo.com 66.94.230.32
Set Version=V1.31
@echo CDiagnosis %Version% >c:\cdiag.txt
@echo Start diagnosis for %computername% >>c:\cdiag.txt
@echo Full Targets %FullTargets% >>c:\cdiag.txt
for %%a in (%FullTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% net view %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
net view %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo Ping Targets %PingTargets% >>c:\cdiag.txt
for %%a in (%PingTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo End diagnosis for %computername% >>c:\cdiag.txt
notepad c:\cdiag.txt
:EOF

#####

--
Cheers,
Chuck
http://nitecruzr.blogspot.com/
Paranoia is not necessarily a bad thing - it's a normal response from experience.
My email is AT DOT
actual address pchuck sonic net.
 
H

Harry Putnam

[...]
I think it is. The "net view" command, I believe, comes from the browser. The
"net view xxxx", I believe, interrogates computer xxxx directly.

You're running both commands from an XP computer, but the first is data coming
thru Reader.

Did you check restrictanonymous on Chub?
<http://nitecruzr.blogspot.com/2005/05/restrictanonymous-and-enumeration-of.html>
<http://nitecruzr.blogspot.com/2005/04/nt-browser-or-why-cant-i-always-see.html>

Looking at the exact address given there. I see it set to:
RestrictAnonymous 0x00000000 (0)

Bur right below it I see:
restrictAnonymoussam 0x00000001 (1)

RestrictAnonymous also appears in a 5-6 other locations in registry.

I've been running with it off, but on your suggestion I checked to
make sure and it was on. This has got to be a result of updating to
sp/2 ... ?

Hopefully that will turn out to be the whole problem. I can't shut
chub down right now after turning it off, as a rather hefty backup is
underway.

Back to RestrictAnonymous...

The fact that typing the UNC address
\\chub\chub-e\bk1\ghost-bk1\etc etc

Works would seem to indicate that the RestrictAnonymous thing is what
is wrong.
 
C

Chuck

[...]
I think it is. The "net view" command, I believe, comes from the browser. The
"net view xxxx", I believe, interrogates computer xxxx directly.

You're running both commands from an XP computer, but the first is data coming
thru Reader.

Did you check restrictanonymous on Chub?
<http://nitecruzr.blogspot.com/2005/05/restrictanonymous-and-enumeration-of.html>
<http://nitecruzr.blogspot.com/2005/04/nt-browser-or-why-cant-i-always-see.html>

Looking at the exact address given there. I see it set to:
RestrictAnonymous 0x00000000 (0)

Bur right below it I see:
restrictAnonymoussam 0x00000001 (1)

RestrictAnonymous also appears in a 5-6 other locations in registry.

I've been running with it off, but on your suggestion I checked to
make sure and it was on. This has got to be a result of updating to
sp/2 ... ?

Hopefully that will turn out to be the whole problem. I can't shut
chub down right now after turning it off, as a rather hefty backup is
underway.

Back to RestrictAnonymous...

The fact that typing the UNC address
\\chub\chub-e\bk1\ghost-bk1\etc etc

Works would seem to indicate that the RestrictAnonymous thing is what
is wrong.

Harry,

The restrictanonymous in the location I gave you is all that matters. The
restrictanonymoussam in that same location is not important for this exercise.
Not sure what other locations you found.

The browser uses the ra setting. You're running XP Pro with Simple File Sharing
on or off?

"\\chub\..." uses local authentication, as you are running it while logged in.
My money is on the firewall, you have to enable the File and Printer Sharing
exception.

--
Cheers,
Chuck
http://nitecruzr.blogspot.com/
Paranoia is not necessarily a bad thing - it's a normal response from experience.
My email is AT DOT
actual address pchuck sonic net.
 
H

Harry Putnam

[...]

The restrictanonymous in the location I gave you is all that matters. The
restrictanonymoussam in that same location is not important for this exercise.
Not sure what other locations you found.

The browser uses the ra setting. You're running XP Pro with Simple File Sharing
on or off?

"\\chub\..." uses local authentication, as you are running it while logged in.
My money is on the firewall, you have to enable the File and Printer Sharing
exception.

Lets hope so...

You've provided really indepth help on this I really appreciate it.
I'm afraid to do much more on chub while the backup is running so will
get back on the group tomorrow morning.

I'll provide the output of the cdiag runs.

You've been very helpfull ... thank you.
 
H

Harry Putnam

Harry Putnam said:
You've provided really indepth help on this I really appreciate it.
I'm afraid to do much more on chub while the backup is running so will
get back on the group tomorrow morning.

I'll provide the output of the cdiag runs.

You've been very helpfull ... thank you.

Chuck,
I managed to get two reports with cdiag.cmd which are inline below.

However two things of possible note first:
1)
Your instructions say to run diag.cmd from the `run' command on
start menu. That fails to find the command on all my machines.

However, double clicking C:\diag.cmd gets it done.

2)
On the one machine with the problems (chub), cdiag.cmd only produces
a long string of pings, no reports. I suspected it was finding the
wrong ping command since I have Cygwin (unix tools) installed.

I tried to rewrite you script and added the absolute filename of
ping command where ever the script said `ping' by itself.

That didn't work any better.

Below find 2 diag.cmd reports from (ansil and harvey)

NOTE:
The script was saved 3 times from one source to C:\ on each
machine (not the rewritten one) so it is identical on each
machine yet it fails to work right on chub.

The final part of this message is my rewritten cdiag.cmd. Maybe you
can see how to make it work on chub. Or what I've mucked up by
rewriting.

Cdiag reports:
===== Harvey ===
CDiagnosis V1.31
Start diagnosis for HARVEY
Full Targets 127.0.0.1

Target 127.0.0.1

"HARVEY ping 127.0.0.1"

Pinging 127.0.0.1 with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Ping statistics for 127.0.0.1:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),

Approximate round trip times in milli-seconds:

Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view 127.0.0.1"

Shared resources at 127.0.0.1


Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.

Ping Targets www.yahoo.com 192.168.0.20

Target www.yahoo.com

"HARVEY ping www.yahoo.com"

Pinging www.yahoo.akadns.net [216.109.118.71] with 32 bytes of data:

Reply from 216.109.118.71: bytes=32 time=27ms TTL=51

Reply from 216.109.118.71: bytes=32 time=28ms TTL=51

Reply from 216.109.118.71: bytes=32 time=27ms TTL=50

Reply from 216.109.118.71: bytes=32 time=27ms TTL=50

Ping statistics for 216.109.118.71:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 27ms, Maximum = 28ms, Average = 27ms

Target 192.168.0.20

"HARVEY ping 192.168.0.20"

Pinging 192.168.0.20 with 32 bytes of data:

Reply from 192.168.0.20: bytes=32 time=1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Ping statistics for 192.168.0.20:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 1ms, Average = 0ms

End diagnosis for HARVEY

=== Ansil ===
CDiagnosis V1.31
Start diagnosis for ANSIL
Full Targets 127.0.0.1

Target 127.0.0.1
"ANSIL ping 127.0.0.1"

Pinging 127.0.0.1 with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Ping statistics for 127.0.0.1:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view 127.0.0.1"

Shared resources at 127.0.0.1

Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.

Ping Targets www.yahoo.com 192.168.0.20

Target www.yahoo.com
"ANSIL ping www.yahoo.com"

Pinging www.yahoo.akadns.net [216.109.118.69] with 32 bytes of data:

Reply from 216.109.118.69: bytes=32 time=26ms TTL=50

Reply from 216.109.118.69: bytes=32 time=26ms TTL=51

Reply from 216.109.118.69: bytes=32 time=26ms TTL=51

Reply from 216.109.118.69: bytes=32 time=27ms TTL=50


Ping statistics for 216.109.118.69:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 26ms, Maximum = 27ms, Average = 26ms


Target 192.168.0.20
"ANSIL ping 192.168.0.20"

Pinging 192.168.0.20 with 32 bytes of data:

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Ping statistics for 192.168.0.20:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

End diagnosis for ANSIL

===============

Rewritten script (added absolute address for ping.exe)
@echo off
set FullTarget1=chub (192.168.0.2)
set FullTarget2=harvey (192.168.0.22)
set FullTarget3=ansil (192.168.0.21)
set FullTarget4=
set FullTargets=%FullTargets% 127.0.0.1
set PngTargets=www.yahoo.com 192.168.0.20
Set Version=V1.31
@echo CDiagnosis %Version% >c:\cdiag.txt
@echo Start diagnosis for %computername% >>c:\cdiag.txt
@echo Full Targets %FullTargets% >>c:\cdiag.txt
for %%a in (%FullTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% net view %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
net view %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo Ping Targets %PingTargets% >>c:\cdiag.txt
for %%a in (%PingTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo End diagnosis for %computername% >>c:\cdiag.txt
notepad c:\cdiag.txt
:EOF
 
C

Chuck

Harry Putnam said:
You've provided really indepth help on this I really appreciate it.
I'm afraid to do much more on chub while the backup is running so will
get back on the group tomorrow morning.

I'll provide the output of the cdiag runs.

You've been very helpfull ... thank you.

Chuck,
I managed to get two reports with cdiag.cmd which are inline below.

However two things of possible note first:
1)
Your instructions say to run diag.cmd from the `run' command on
start menu. That fails to find the command on all my machines.

However, double clicking C:\diag.cmd gets it done.

2)
On the one machine with the problems (chub), cdiag.cmd only produces
a long string of pings, no reports. I suspected it was finding the
wrong ping command since I have Cygwin (unix tools) installed.

I tried to rewrite you script and added the absolute filename of
ping command where ever the script said `ping' by itself.

That didn't work any better.

Below find 2 diag.cmd reports from (ansil and harvey)

NOTE:
The script was saved 3 times from one source to C:\ on each
machine (not the rewritten one) so it is identical on each
machine yet it fails to work right on chub.

The final part of this message is my rewritten cdiag.cmd. Maybe you
can see how to make it work on chub. Or what I've mucked up by
rewriting.

Cdiag reports:
===== Harvey ===
CDiagnosis V1.31
Start diagnosis for HARVEY
Full Targets 127.0.0.1

Target 127.0.0.1

"HARVEY ping 127.0.0.1"

Pinging 127.0.0.1 with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Ping statistics for 127.0.0.1:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),

Approximate round trip times in milli-seconds:

Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view 127.0.0.1"

Shared resources at 127.0.0.1


Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.

Ping Targets www.yahoo.com 192.168.0.20

Target www.yahoo.com

"HARVEY ping www.yahoo.com"

Pinging www.yahoo.akadns.net [216.109.118.71] with 32 bytes of data:

Reply from 216.109.118.71: bytes=32 time=27ms TTL=51

Reply from 216.109.118.71: bytes=32 time=28ms TTL=51

Reply from 216.109.118.71: bytes=32 time=27ms TTL=50

Reply from 216.109.118.71: bytes=32 time=27ms TTL=50

Ping statistics for 216.109.118.71:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 27ms, Maximum = 28ms, Average = 27ms

Target 192.168.0.20

"HARVEY ping 192.168.0.20"

Pinging 192.168.0.20 with 32 bytes of data:

Reply from 192.168.0.20: bytes=32 time=1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Ping statistics for 192.168.0.20:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 1ms, Average = 0ms

End diagnosis for HARVEY

=== Ansil ===
CDiagnosis V1.31
Start diagnosis for ANSIL
Full Targets 127.0.0.1

Target 127.0.0.1
"ANSIL ping 127.0.0.1"

Pinging 127.0.0.1 with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Ping statistics for 127.0.0.1:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view 127.0.0.1"

Shared resources at 127.0.0.1

Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.

Ping Targets www.yahoo.com 192.168.0.20

Target www.yahoo.com
"ANSIL ping www.yahoo.com"

Pinging www.yahoo.akadns.net [216.109.118.69] with 32 bytes of data:

Reply from 216.109.118.69: bytes=32 time=26ms TTL=50

Reply from 216.109.118.69: bytes=32 time=26ms TTL=51

Reply from 216.109.118.69: bytes=32 time=26ms TTL=51

Reply from 216.109.118.69: bytes=32 time=27ms TTL=50


Ping statistics for 216.109.118.69:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 26ms, Maximum = 27ms, Average = 26ms


Target 192.168.0.20
"ANSIL ping 192.168.0.20"

Pinging 192.168.0.20 with 32 bytes of data:

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Reply from 192.168.0.20: bytes=32 time<1ms TTL=127

Ping statistics for 192.168.0.20:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

End diagnosis for ANSIL

===============

Rewritten script (added absolute address for ping.exe)
@echo off
set FullTarget1=chub (192.168.0.2)
set FullTarget2=harvey (192.168.0.22)
set FullTarget3=ansil (192.168.0.21)
set FullTarget4=
set FullTargets=%FullTargets% 127.0.0.1
set PngTargets=www.yahoo.com 192.168.0.20
Set Version=V1.31
@echo CDiagnosis %Version% >c:\cdiag.txt
@echo Start diagnosis for %computername% >>c:\cdiag.txt
@echo Full Targets %FullTargets% >>c:\cdiag.txt
for %%a in (%FullTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% net view %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
net view %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo Ping Targets %PingTargets% >>c:\cdiag.txt
for %%a in (%PingTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo End diagnosis for %computername% >>c:\cdiag.txt
notepad c:\cdiag.txt
:EOF

Harry,

The assembled code that you're running on Ansil and Harvey appears to have:
set FullTarget1=
set FullTarget2=
set FullTarget3=

IOW, you aren't adding in the computer names and ip addresses.

The assembled code that you're running on Chub has:
set FullTarget1=chub (192.168.0.2)
set FullTarget2=harvey (192.168.0.22)
set FullTarget3=ansil (192.168.0.21)

Correctly written, this would be (copy this to all 3 computers):
set FullTarget1=chub 192.168.0.2
set FullTarget2=harvey 192.168.0.22
set FullTarget3=ansil 192.168.0.21

The assembled code that you're running on Chub has (in two places):
@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt

Correctly written (copy this to Chub, in 2 places in the code):
@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
C:\WINDOWS\system32\ping %%a >>c:\cdiag.txt

What's "192.168.0.20"?

So please try correcting and rerunning assembled CDiag code on all 3 computers.

You might find more help in my newest article:
<http://nitecruzr.blogspot.com/2005/05/using-cdiag-without-assistance.html>

--
Cheers,
Chuck
http://nitecruzr.blogspot.com/
Paranoia is not necessarily a bad thing - it's a normal response from experience.
My email is AT DOT
actual address pchuck sonic net.
 
H

Harry Putnam

Chuck said:
Harry,

The assembled code that you're running on Ansil and Harvey appears to have:
set FullTarget1=
set FullTarget2=
set FullTarget3=

IOW, you aren't adding in the computer names and ip addresses.

Wrong. Not sure why you would think such a thing but it is wrong.
I'm running the exact same code on all machines. Only after original
code failed on chub, I tried editing it as posted.

The source file was copied to chub,ansil, harvey from the same file.
No way it is different on any of the machines.

You now have full reports on ansil and harvey. You mentioned that
those full reports would enable you to know the `scope' of the
problem. Not sure what you mean by that but the scope is a home
network with 3 winxp pro machines and a linux machine on it.

cdiag.cmd seems to basically run a few pings and the net view command.

As I've already posted, chub is able to ping itself and all other
machines with no problems.

I'll include those here since I haven't been able to successfully run
cdiag.cmd on chub for some unknown reason.

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
NOTE: running these commands from computer chub on C:\WINDOWS\system3
C:\>cd C:\Windows\system32
C:\WINDOWS\system32>ping chub

Pinging chub [192.168.0.2] with 32 bytes of data:

Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.0.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

C:\WINDOWS\system32> ping ansil
Pinging ansil [192.168.0.21] with 32 bytes of data:

Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.21:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

C:\WINDOWS\system32>ping harvey

Pinging harvey [192.168.0.22] with 32 bytes of data:

Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.22:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

C:\WINDOWS\system32>net view
Server Name Remark
 
C

Chuck

Wrong. Not sure why you would think such a thing but it is wrong.
I'm running the exact same code on all machines. Only after original
code failed on chub, I tried editing it as posted.

Harry,

Look at the first 3 lines of the CDiag output from Harvey.
===== Harvey ===
CDiagnosis V1.31
Start diagnosis for HARVEY
Full Targets 127.0.0.1

Here's the first 3 lines of CDiag output from my computer (I just ran it as a
test):
===== Chuck1 ===
CDiagnosis V1.31
Start diagnosis for chuck1
Full Targets chuck1 192.168.0.50 chuck2 192.168.0.51 127.0.0.1

And here's the top lines of my assembled CDiag code:
@echo off
set FullTarget1=chuck1 192.168.0.50
set FullTarget2=chuck2 192.168.0.51
set FullTarget3=
set FullTarget4=
set FullTargets=%FullTarget1% %FullTarget2% %FullTarget3% %FullTarget4%
set FullTargets=%FullTargets% 127.0.0.1
set PingTargets=www.yahoo.com 66.94.230.32 192.168.0.1
Set Version=V1.31
@echo CDiagnosis %Version% >c:\cdiag.txt
@echo Start diagnosis for %computername% >>c:\cdiag.txt
@echo Full Targets %FullTargets% >>c:\cdiag.txt

Harry, CDiag outputs a header line, which lists the input in the run. That's so
I can take any CDiag run, and know what input was used. In my case,
Full Targets chuck1 192.168.0.50 chuck2 192.168.0.51 127.0.0.1

And the input is:
set FullTarget1=chuck1 192.168.0.50
set FullTarget2=chuck2 192.168.0.51

Your output was:
Full Targets 127.0.0.1

Which means your input was:
set FullTarget1=
set FullTarget2=

I'll try to help you Harry, but you have to trust me, and not to pull my leg. I
know how CDiag works - I wrote it.

--
Cheers,
Chuck
http://nitecruzr.blogspot.com/
Paranoia is not necessarily a bad thing - it's a normal response from experience.
My email is AT DOT
actual address pchuck sonic net.
 
H

Harry Putnam

Chuck said:
I'll try to help you Harry, but you have to trust me, and not to pull my leg. I
know how CDiag works - I wrote it.

Yikes ... sorry about that.. but it was not leg pulling. Somewhere I
got parens around the IPs. Not sure where that crept in. I think
it was one of your posts that says:
Take the following code (everything inside the "#####"). Edit computer name and
ip address in pairs without the "()" to FullTargetn lines, and edit ip address
of router to PingTargets line. For example,
set FullTarget1=chub (ip address of chub)
set FullTarget2=harvey (ip address of harvey)
set FullTarget3=ansil (ip address of ansil)
set PingTargets=www.yahoo.com 66.94.230.32 (ip address of router)

I think those parens are the culprit.
Further: I explained why I changed the cdiag.cmd on chub. Only after
it failing as written. We'll see in a minute if the corrected cdiag
will do the trick.

Again sorry to be such a pain in the butt but it was not intentional.

You asked about 192.168.0.20
That is a gateway DSL/router/firewall All the winxp pro machines are
pointed at it as gateway in the tcp/ip setup.

Please note that running the cdiag.cmd as presented on chub fails. It
pops up a dos window at C:\windows\system32\cmd.exe

But notepad never appears with the printout. I've let it run as long
as ten minutes but do not get output.

I've included the intire cdiag.cmd I'm using on all computers at the
very end


Ansil output:

CDiagnosis V1.31
Start diagnosis for ANSIL
Full Targets chub 192.168.0.2 harvey 192.168.0.22 ansil 192.168.0.21 127.0.0.1

Target chub

"ANSIL ping chub"


Pinging chub [192.168.0.2] with 32 bytes of data:

Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.0.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view chub"

Shared resources at chub



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk Y:
chub-bk2 Disk Z:
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target 192.168.0.2

"ANSIL ping 192.168.0.2"


Pinging 192.168.0.2 with 32 bytes of data:

Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.0.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view 192.168.0.2"

Shared resources at 192.168.0.2



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk
chub-bk2 Disk
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target harvey

"ANSIL ping harvey"


Pinging harvey [192.168.0.22] with 32 bytes of data:

Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.22:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view harvey"

Shared resources at harvey



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target 192.168.0.22

"ANSIL ping 192.168.0.22"


Pinging 192.168.0.22 with 32 bytes of data:

Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.22:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view 192.168.0.22"

Shared resources at 192.168.0.22



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target ansil

"ANSIL ping ansil"


Pinging ansil.local.net0 [192.168.0.21] with 32 bytes of data:

Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.21:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view ansil"

Shared resources at ansil



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Target 192.168.0.21

"ANSIL ping 192.168.0.21"


Pinging 192.168.0.21 with 32 bytes of data:

Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.21:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view 192.168.0.21"

Shared resources at 192.168.0.21



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Target 127.0.0.1

"ANSIL ping 127.0.0.1"


Pinging 127.0.0.1 with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Ping statistics for 127.0.0.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view 127.0.0.1"

Shared resources at 127.0.0.1



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Ping Targets www.yahoo.com 66.94.230.32

Target www.yahoo.com

"ANSIL ping www.yahoo.com"


Pinging www.yahoo.akadns.net [216.109.118.66] with 32 bytes of data:

Reply from 216.109.118.66: bytes=32 time=27ms TTL=51
Reply from 216.109.118.66: bytes=32 time=27ms TTL=50
Reply from 216.109.118.66: bytes=32 time=28ms TTL=50
Reply from 216.109.118.66: bytes=32 time=27ms TTL=50

Ping statistics for 216.109.118.66:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 27ms, Maximum = 28ms, Average = 27ms

Target 66.94.230.32

"ANSIL ping 66.94.230.32"


Pinging 66.94.230.32 with 32 bytes of data:

Reply from 66.94.230.32: bytes=32 time=63ms TTL=49
Reply from 66.94.230.32: bytes=32 time=64ms TTL=49
Reply from 66.94.230.32: bytes=32 time=63ms TTL=49
Reply from 66.94.230.32: bytes=32 time=63ms TTL=49

Ping statistics for 66.94.230.32:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 63ms, Maximum = 64ms, Average = 63ms

End diagnosis for ANSIL

======================================
======================================

Harvey output:

CDiagnosis V1.31
Start diagnosis for HARVEY
Full Targets chub 192.168.0.2 harvey 192.168.0.22 ansil 192.168.0.21 127.0.0.1

Target chub

"HARVEY ping chub"


Pinging chub [192.168.0.2] with 32 bytes of data:

Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.0.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view chub"

Shared resources at chub



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk
chub-bk2 Disk
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target 192.168.0.2

"HARVEY ping 192.168.0.2"


Pinging 192.168.0.2 with 32 bytes of data:

Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.0.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view 192.168.0.2"

Shared resources at 192.168.0.2



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk
chub-bk2 Disk
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target harvey

"HARVEY ping harvey"


Pinging harvey.local.net0 [192.168.0.22] with 32 bytes of data:

Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.22:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view harvey"

Shared resources at harvey



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target 192.168.0.22

"HARVEY ping 192.168.0.22"


Pinging 192.168.0.22 with 32 bytes of data:

Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.22:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view 192.168.0.22"

Shared resources at 192.168.0.22



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target ansil

"HARVEY ping ansil"


Pinging ansil [192.168.0.21] with 32 bytes of data:

Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.21:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view ansil"

Shared resources at ansil



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Target 192.168.0.21

"HARVEY ping 192.168.0.21"


Pinging 192.168.0.21 with 32 bytes of data:

Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.21:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view 192.168.0.21"

Shared resources at 192.168.0.21



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Target 127.0.0.1

"HARVEY ping 127.0.0.1"


Pinging 127.0.0.1 with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Ping statistics for 127.0.0.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view 127.0.0.1"

Shared resources at 127.0.0.1



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Ping Targets www.yahoo.com 66.94.230.32

Target www.yahoo.com

"HARVEY ping www.yahoo.com"


Pinging www.yahoo.akadns.net [68.142.226.55] with 32 bytes of data:

Reply from 68.142.226.55: bytes=32 time=27ms TTL=50
Reply from 68.142.226.55: bytes=32 time=27ms TTL=50
Reply from 68.142.226.55: bytes=32 time=27ms TTL=51
Reply from 68.142.226.55: bytes=32 time=28ms TTL=51

Ping statistics for 68.142.226.55:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 27ms, Maximum = 28ms, Average = 27ms

Target 66.94.230.32

"HARVEY ping 66.94.230.32"


Pinging 66.94.230.32 with 32 bytes of data:

Reply from 66.94.230.32: bytes=32 time=64ms TTL=49
Reply from 66.94.230.32: bytes=32 time=62ms TTL=49
Reply from 66.94.230.32: bytes=32 time=63ms TTL=49
Reply from 66.94.230.32: bytes=32 time=63ms TTL=49

Ping statistics for 66.94.230.32:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 62ms, Maximum = 64ms, Average = 63ms

End diagnosis for HARVEY

===========================================
===========================================

As reported `cdiag.cmd' never completes on chub.
 
H

Harry Putnam

Harry Putnam said:
I've included the intire cdiag.cmd I'm using on all computers at the
very end

I didn't include it but here it is:

@echo off
set FullTarget1=chub 192.168.0.2
set FullTarget2=harvey 192.168.0.22
set FullTarget3=ansil 192.168.0.21
set FullTarget4=
set FullTargets=%FullTarget1% %FullTarget2% %FullTarget3% %FullTarget4%
set FullTargets=%FullTargets% 127.0.0.1
set PingTargets=www.yahoo.com 66.94.230.32
Set Version=V1.31
@echo CDiagnosis %Version% >c:\cdiag.txt
@echo Start diagnosis for %computername% >>c:\cdiag.txt
@echo Full Targets %FullTargets% >>c:\cdiag.txt
for %%a in (%FullTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% net view %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
net view %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo Ping Targets %PingTargets% >>c:\cdiag.txt
for %%a in (%PingTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo End diagnosis for %computername% >>c:\cdiag.txt
notepad c:\cdiag.txt
:EOF
 
C

Chuck

I didn't include it but here it is:

@echo off
set FullTarget1=chub 192.168.0.2
set FullTarget2=harvey 192.168.0.22
set FullTarget3=ansil 192.168.0.21
set FullTarget4=
set FullTargets=%FullTarget1% %FullTarget2% %FullTarget3% %FullTarget4%
set FullTargets=%FullTargets% 127.0.0.1
set PingTargets=www.yahoo.com 66.94.230.32
Set Version=V1.31
@echo CDiagnosis %Version% >c:\cdiag.txt
@echo Start diagnosis for %computername% >>c:\cdiag.txt
@echo Full Targets %FullTargets% >>c:\cdiag.txt
for %%a in (%FullTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% net view %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
net view %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo Ping Targets %PingTargets% >>c:\cdiag.txt
for %%a in (%PingTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo End diagnosis for %computername% >>c:\cdiag.txt
notepad c:\cdiag.txt
:EOF

Harry,

Did you change CDiag on Chub as I mentioned before:

The assembled code that you're running on Chub has (in two places):
@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt

Correctly written (copy this to Chub, in 2 places in the code):
@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
C:\WINDOWS\system32\ping %%a >>c:\cdiag.txt

And it looks like you left 192.168.0.20 out of PingTargets above?

--
Cheers,
Chuck
http://nitecruzr.blogspot.com/
Paranoia is not necessarily a bad thing - it's a normal response from experience.
My email is AT DOT
actual address pchuck sonic net.
 
H

Harry Putnam

Chuck said:
Correctly written (copy this to Chub, in 2 places in the code):
@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
C:\WINDOWS\system32\ping %%a >>c:\cdiag.txt

And it looks like you left 192.168.0.20 out of PingTargets above?

Chuck you have been very patient and I thank you for that. Not sure
why I'm having such a hard time with this. It appears to be a simple
enough request. Only excuse I can come up with is that my background
is nearly exclusively unix and I have a very thick skull...

NOTE: I made another small change in cdiag.cmd on chub to get the
result to pop up in notepad. Needed the full path similar to the ping
command. (Full text at very end)
And it looks like you left 192.168.0.20 out of PingTargets above?

I thought we were interested only in the winxp pro boxes... sorry.
192.168.0.20 is an hardware gateway/firewall. (NETGEAR FVS-318)

I've included fw 192.168.0.20 in this output.

Due to having made so many blunders thus far here I will post the
results from the three runs of cdiag.cmd and the full text of what I
ran.
So an outline of this message looks like:

cdiag out from ansil
cdiag out from harvey
Full text of cdiag run on ansil and harvey
cdiag out from chub
Full text of cdiag run on chub


Ansil and Harvey diagnostic output
Ansil:
CDiagnosis V1.31
Start diagnosis for ANSIL
Full Targets chub 192.168.0.2 harvey 192.168.0.22 ansil 192.168.0.21 127.0.0.1

Target chub

"ANSIL ping chub"


Pinging chub [192.168.0.2] with 32 bytes of data:

Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.0.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view chub"

Shared resources at chub



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk Y:
chub-bk2 Disk Z:
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target 192.168.0.2

"ANSIL ping 192.168.0.2"


Pinging 192.168.0.2 with 32 bytes of data:

Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.0.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view 192.168.0.2"

Shared resources at 192.168.0.2



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk
chub-bk2 Disk
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target harvey

"ANSIL ping harvey"


Pinging harvey [192.168.0.22] with 32 bytes of data:

Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.22:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view harvey"

Shared resources at harvey



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target 192.168.0.22

"ANSIL ping 192.168.0.22"


Pinging 192.168.0.22 with 32 bytes of data:

Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.22:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view 192.168.0.22"

Shared resources at 192.168.0.22



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target ansil

"ANSIL ping ansil"


Pinging ansil.local.net0 [192.168.0.21] with 32 bytes of data:

Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.21:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view ansil"

Shared resources at ansil



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Target 192.168.0.21

"ANSIL ping 192.168.0.21"


Pinging 192.168.0.21 with 32 bytes of data:

Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.21:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view 192.168.0.21"

Shared resources at 192.168.0.21



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Target 127.0.0.1

"ANSIL ping 127.0.0.1"


Pinging 127.0.0.1 with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Ping statistics for 127.0.0.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"ANSIL net view 127.0.0.1"

Shared resources at 127.0.0.1



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Ping Targets www.yahoo.com 66.94.230.32

Target www.yahoo.com

"ANSIL ping www.yahoo.com"


Pinging www.yahoo.akadns.net [216.109.118.66] with 32 bytes of data:

Reply from 216.109.118.66: bytes=32 time=27ms TTL=51
Reply from 216.109.118.66: bytes=32 time=27ms TTL=50
Reply from 216.109.118.66: bytes=32 time=28ms TTL=50
Reply from 216.109.118.66: bytes=32 time=27ms TTL=50

Ping statistics for 216.109.118.66:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 27ms, Maximum = 28ms, Average = 27ms

Target 66.94.230.32

"ANSIL ping 66.94.230.32"


Pinging 66.94.230.32 with 32 bytes of data:

Reply from 66.94.230.32: bytes=32 time=63ms TTL=49
Reply from 66.94.230.32: bytes=32 time=64ms TTL=49
Reply from 66.94.230.32: bytes=32 time=63ms TTL=49
Reply from 66.94.230.32: bytes=32 time=63ms TTL=49

Ping statistics for 66.94.230.32:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 63ms, Maximum = 64ms, Average = 63ms

End diagnosis for ANSIL

=======================================================

Harvey:
CDiagnosis V1.31
Start diagnosis for HARVEY
Full Targets chub 192.168.0.2 harvey 192.168.0.22 ansil 192.168.0.21 127.0.0.1

Target chub

"HARVEY ping chub"


Pinging chub [192.168.0.2] with 32 bytes of data:

Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.0.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view chub"

Shared resources at chub



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk
chub-bk2 Disk
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target 192.168.0.2

"HARVEY ping 192.168.0.2"


Pinging 192.168.0.2 with 32 bytes of data:

Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64
Reply from 192.168.0.2: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.0.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view 192.168.0.2"

Shared resources at 192.168.0.2



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk
chub-bk2 Disk
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target harvey

"HARVEY ping harvey"


Pinging harvey.local.net0 [192.168.0.22] with 32 bytes of data:

Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.22:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view harvey"

Shared resources at harvey



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target 192.168.0.22

"HARVEY ping 192.168.0.22"


Pinging 192.168.0.22 with 32 bytes of data:

Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128
Reply from 192.168.0.22: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.22:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view 192.168.0.22"

Shared resources at 192.168.0.22



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target ansil

"HARVEY ping ansil"


Pinging ansil [192.168.0.21] with 32 bytes of data:

Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.21:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view ansil"

Shared resources at ansil



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Target 192.168.0.21

"HARVEY ping 192.168.0.21"


Pinging 192.168.0.21 with 32 bytes of data:

Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128
Reply from 192.168.0.21: bytes=32 time<1ms TTL=128

Ping statistics for 192.168.0.21:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view 192.168.0.21"

Shared resources at 192.168.0.21



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Target 127.0.0.1

"HARVEY ping 127.0.0.1"


Pinging 127.0.0.1 with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Ping statistics for 127.0.0.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

"HARVEY net view 127.0.0.1"

Shared resources at 127.0.0.1



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Ping Targets www.yahoo.com 66.94.230.32

Target www.yahoo.com

"HARVEY ping www.yahoo.com"


Pinging www.yahoo.akadns.net [68.142.226.55] with 32 bytes of data:

Reply from 68.142.226.55: bytes=32 time=27ms TTL=50
Reply from 68.142.226.55: bytes=32 time=27ms TTL=50
Reply from 68.142.226.55: bytes=32 time=27ms TTL=51
Reply from 68.142.226.55: bytes=32 time=28ms TTL=51

Ping statistics for 68.142.226.55:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 27ms, Maximum = 28ms, Average = 27ms

Target 66.94.230.32

"HARVEY ping 66.94.230.32"


Pinging 66.94.230.32 with 32 bytes of data:

Reply from 66.94.230.32: bytes=32 time=64ms TTL=49
Reply from 66.94.230.32: bytes=32 time=62ms TTL=49
Reply from 66.94.230.32: bytes=32 time=63ms TTL=49
Reply from 66.94.230.32: bytes=32 time=63ms TTL=49

Ping statistics for 66.94.230.32:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 62ms, Maximum = 64ms, Average = 63ms

End diagnosis for HARVEY


Full text of cdiag.txt run on Ansil and Harvey:

@echo off
set FullTarget1=chub 192.168.0.2
set FullTarget2=harvey 192.168.0.22
set FullTarget3=ansil 192.168.0.21
set FullTarget4=fw 192.168.0.20
set FullTargets=%FullTarget1% %FullTarget2% %FullTarget3% %FullTarget4%
set FullTargets=%FullTargets% 127.0.0.1
set PingTargets=www.yahoo.com 66.94.230.32
Set Version=V1.31
@echo CDiagnosis %Version% >c:\cdiag.txt
@echo Start diagnosis for %computername% >>c:\cdiag.txt
@echo Full Targets %FullTargets% >>c:\cdiag.txt
for %%a in (%FullTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% net view %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
net view %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo Ping Targets %PingTargets% >>c:\cdiag.txt
for %%a in (%PingTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
ping %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo End diagnosis for %computername% >>c:\cdiag.txt
notepad c:\cdiag.txt
:EOF

======================================================

Diagnostic output from chub:

Chub:
CDiagnosis V1.31
Start diagnosis for CHUB
Full Targets chub 192.168.0.2 harvey 192.168.0.22 ansil 192.168.0.21 fw 192.168.0.20 127.0.0.1

Target chub

"CHUB C:\WINDOWS\system32\ping chub"

Pinging chub [192.168.0.2] with 32 bytes of data:Reply from 192.168.0.2: bytes=32 time<1ms TTL=64Reply from 192.168.0.2: bytes=32 time<1ms TTL=64Reply from 192.168.0.2: bytes=32 time<1ms TTL=64Reply from 192.168.0.2: bytes=32 time<1ms TTL=64Ping statistics for 192.168.0.2: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
"CHUB net view chub"

Shared resources at chub



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk
chub-bk2 Disk
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target 192.168.0.2

"CHUB C:\WINDOWS\system32\ping 192.168.0.2"

Pinging 192.168.0.2 with 32 bytes of data:Reply from 192.168.0.2: bytes=32 time<1ms TTL=64Reply from 192.168.0.2: bytes=32 time<1ms TTL=64Reply from 192.168.0.2: bytes=32 time<1ms TTL=64Reply from 192.168.0.2: bytes=32 time<1ms TTL=64Ping statistics for 192.168.0.2: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
"CHUB net view 192.168.0.2"

Shared resources at 192.168.0.2



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk
chub-bk2 Disk
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target harvey

"CHUB C:\WINDOWS\system32\ping harvey"

Pinging harvey [192.168.0.22] with 32 bytes of data:Reply from 192.168.0.22: bytes=32 time<1ms TTL=128Reply from 192.168.0.22: bytes=32 time<1ms TTL=128Reply from 192.168.0.22: bytes=32 time<1ms TTL=128Reply from 192.168.0.22: bytes=32 time<1ms TTL=128Ping statistics for 192.168.0.22: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
"CHUB net view harvey"

Shared resources at harvey



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk (UNC)
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target 192.168.0.22

"CHUB C:\WINDOWS\system32\ping 192.168.0.22"

Pinging 192.168.0.22 with 32 bytes of data:Reply from 192.168.0.22: bytes=32 time<1ms TTL=128Reply from 192.168.0.22: bytes=32 time<1ms TTL=128Reply from 192.168.0.22: bytes=32 time<1ms TTL=128Reply from 192.168.0.22: bytes=32 time<1ms TTL=128Ping statistics for 192.168.0.22: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
"CHUB net view 192.168.0.22"

Shared resources at 192.168.0.22



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub2-g Disk IDE1_1
Harry Disk
harvey-c Disk
harvey-d Disk
Harvey-dvdburn Disk
harvey-e Disk
harvey-g Disk
harvey-printer Print Epson R800 photo
Printer Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Target ansil

"CHUB C:\WINDOWS\system32\ping ansil"

Pinging ansil [192.168.0.21] with 32 bytes of data:Reply from 192.168.0.21: bytes=32 time<1ms TTL=128Reply from 192.168.0.21: bytes=32 time<1ms TTL=128Reply from 192.168.0.21: bytes=32 time<1ms TTL=128Reply from 192.168.0.21: bytes=32 time<1ms TTL=128Ping statistics for 192.168.0.21: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
"CHUB net view ansil"

Shared resources at ansil



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk (UNC)
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Target 192.168.0.21

"CHUB C:\WINDOWS\system32\ping 192.168.0.21"

Pinging 192.168.0.21 with 32 bytes of data:Reply from 192.168.0.21: bytes=32 time<1ms TTL=128Reply from 192.168.0.21: bytes=32 time<1ms TTL=128Reply from 192.168.0.21: bytes=32 time<1ms TTL=128Reply from 192.168.0.21: bytes=32 time<1ms TTL=128Ping statistics for 192.168.0.21: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
"CHUB net view 192.168.0.21"

Shared resources at 192.168.0.21



Share name Type Used as Comment

-------------------------------------------------------------------------------
ansil-c Disk
ansil-d Disk
ansil-dvd Disk
ansil-g Disk
SharedDocs Disk
The command completed successfully.


Target fw

"CHUB C:\WINDOWS\system32\ping fw"

Pinging fw.local.net0 [192.168.0.20] with 32 bytes of data:Reply from 192.168.0.20: bytes=32 time<1ms TTL=63Reply from 192.168.0.20: bytes=32 time<1ms TTL=63Reply from 192.168.0.20: bytes=32 time<1ms TTL=63Reply from 192.168.0.20: bytes=32 time<1ms TTL=63Ping statistics for 192.168.0.20: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
"CHUB net view fw"


Target 192.168.0.20

"CHUB C:\WINDOWS\system32\ping 192.168.0.20"

Pinging 192.168.0.20 with 32 bytes of data:Reply from 192.168.0.20: bytes=32 time<1ms TTL=63Reply from 192.168.0.20: bytes=32 time<1ms TTL=63Reply from 192.168.0.20: bytes=32 time<1ms TTL=63Reply from 192.168.0.20: bytes=32 time<1ms TTL=63Ping statistics for 192.168.0.20: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
"CHUB net view 192.168.0.20"


Target 127.0.0.1

"CHUB C:\WINDOWS\system32\ping 127.0.0.1"

Pinging 127.0.0.1 with 32 bytes of data:Reply from 127.0.0.1: bytes=32 time<1ms TTL=64Reply from 127.0.0.1: bytes=32 time<1ms TTL=64Reply from 127.0.0.1: bytes=32 time<1ms TTL=64Reply from 127.0.0.1: bytes=32 time<1ms TTL=64Ping statistics for 127.0.0.1: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
"CHUB net view 127.0.0.1"

Shared resources at 127.0.0.1



Share name Type Used as Comment

-------------------------------------------------------------------------------
chub-a Disk
chub-bk1 Disk
chub-bk2 Disk
chub-c Disk
chub-d Disk
chub-dvdb Disk sony dui 330
chub-e Disk sata1_0
chub-g Disk sata2_0
chub-h Disk
chub-printer Print HP Mult-ifunction 7130
chub_02 Disk
E Disk
F Disk
harvey_22 Disk
IDE1_bad Disk
Printer Print hp officejet 7100 series fax
Printer2 Print SnagIt 7
SharedDocs Disk
The command completed successfully.


Ping Targets www.yahoo.com 66.94.230.32

Target www.yahoo.com

"CHUB C:\WINDOWS\system32\ping www.yahoo.com"

Pinging www.yahoo.akadns.net [216.109.117.106] with 32 bytes of data:Reply from 216.109.117.106: bytes=32 time=26ms TTL=51Reply from 216.109.117.106: bytes=32 time=26ms TTL=51Reply from 216.109.117.106: bytes=32 time=27ms TTL=51Reply from 216.109.117.106: bytes=32 time=27ms TTL=51Ping statistics for 216.109.117.106: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 26ms, Maximum = 27ms, Average = 26ms
Target 66.94.230.32

"CHUB C:\WINDOWS\system32\ping 66.94.230.32"

Pinging 66.94.230.32 with 32 bytes of data:Reply from 66.94.230.32: bytes=32 time=74ms TTL=45Reply from 66.94.230.32: bytes=32 time=74ms TTL=45Reply from 66.94.230.32: bytes=32 time=74ms TTL=45Reply from 66.94.230.32: bytes=32 time=74ms TTL=45Ping statistics for 66.94.230.32: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds: Minimum = 74ms, Maximum = 74ms, Average = 74ms
End diagnosis for CHUB

========================================

Full text of cdiag.cmd from chub:

@echo off
set FullTarget1=chub 192.168.0.2
set FullTarget2=harvey 192.168.0.22
set FullTarget3=ansil 192.168.0.21
set FullTarget4=fw 192.168.0.20
set FullTargets=%FullTarget1% %FullTarget2% %FullTarget3% %FullTarget4%
set FullTargets=%FullTargets% 127.0.0.1
set PingTargets=www.yahoo.com 66.94.230.32
Set Version=V1.31
@echo CDiagnosis %Version% >c:\cdiag.txt
@echo Start diagnosis for %computername% >>c:\cdiag.txt
@echo Full Targets %FullTargets% >>c:\cdiag.txt
for %%a in (%FullTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
C:\WINDOWS\system32\ping %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
@echo "%computername% net view %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
net view %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo Ping Targets %PingTargets% >>c:\cdiag.txt
for %%a in (%PingTargets%) do (
@echo. >>c:\cdiag.txt
@echo Target %%a >>c:\cdiag.txt
@echo. >>c:\cdiag.txt

@echo "%computername% C:\WINDOWS\system32\ping %%a" >>c:\cdiag.txt
@echo. >>c:\cdiag.txt
C:\WINDOWS\system32\ping %%a >>c:\cdiag.txt
)
@echo. >>c:\cdiag.txt
@echo End diagnosis for %computername% >>c:\cdiag.txt
C:\WINDOWS\system32\notepad c:\cdiag.txt
:EOF
 
H

Harry Putnam

Harry Putnam said:
Chuck you have been very patient and I thank you for that. Not sure
why I'm having such a hard time with this. It appears to be a simple
enough request. Only excuse I can come up with is that my background
is nearly exclusively unix and I have a very thick skull...

Chuck, can this disappearing act thing be the result of update
KB885250? That one has been reported here as causing a disappearing
act similar to what I see.

http://groups-beta.google.com/group...up:*windowsxp*&rnum=12&hl=en#35dc88f659e58bf1

It is installed. I don't think it was very recently installed though
 
C

Chuck

Chuck, can this disappearing act thing be the result of update
KB885250? That one has been reported here as causing a disappearing
act similar to what I see.

http://groups-beta.google.com/group...up:*windowsxp*&rnum=12&hl=en#35dc88f659e58bf1

It is installed. I don't think it was very recently installed though

Harry,

Well, we have ruled out any overall networking / file sharing problem. All
tests were negative on any problem, so KB885250 is a good candidate in my book.

It's not too hard to try. Just un install, reboot, and check it out. How
consistent are the symptoms - how long does it take til you typically notice a
problem?

--
Cheers,
Chuck
http://nitecruzr.blogspot.com/
Paranoia is not necessarily a bad thing - it's a normal response from experience.
My email is AT DOT
actual address pchuck sonic net.
 
H

Harry Putnam

Chuck said:
Harry,

Well, we have ruled out any overall networking / file sharing problem. All
tests were negative on any problem, so KB885250 is a good candidate in my book.
It's not too hard to try. Just un install, reboot, and check it out. How
consistent are the symptoms

Doing that now...
..... . ................- how long does it take til you typically notice a
problem?

I work thru a KVM alot, so accessing machines by filesharing isn't as
often as without KVM.

Further, the problem doens't appear until you've drilled down 3 layers
in file hierarchy. So it could have been a month or more I guess.

Not seeing chub in netowrk places wouldn't necessarily raise an
eyebrow because various machines at times are missing for short
periods following reboots.
 
C

Chuck

Doing that now...


I work thru a KVM alot, so accessing machines by filesharing isn't as
often as without KVM.

Further, the problem doens't appear until you've drilled down 3 layers
in file hierarchy. So it could have been a month or more I guess.

Not seeing chub in netowrk places wouldn't necessarily raise an
eyebrow because various machines at times are missing for short
periods following reboots.

If that isn't KB885250, then it's a ringer for the symptoms.

--
Cheers,
Chuck
http://nitecruzr.blogspot.com/
Paranoia is not necessarily a bad thing - it's a normal response from experience.
My email is AT DOT
actual address pchuck sonic net.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top