XP Pro won't network after using Wizard

G

Guest

I had a devil of a time networking my two old PCs under WinXPPro. (And I
thought the Networking wizard was supposed to make it so easy.)
Any way, I ran the wizard on both new PCs. The connect to a D-Link Wireless
router which is connected in turn to my DSL router.
Here's the ipconfig for the one PC:
Windows IP Configuration
Host Name . . . . . . . . . . . . : caesar
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Unknown
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No

Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Marvell Yukon 88E8001/8003/8010
PCI Gigabit Ethernet Controller
Physical Address. . . . . . . . . : 00-0D-61-68-D7-81
Dhcp Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
IP Address. . . . . . . . . . . . : 10.226.90.202
Subnet Mask . . . . . . . . . . . : 255.255.255.248
Default Gateway . . . . . . . . . : 10.226.90.201
DHCP Server . . . . . . . . . . . : 10.226.90.201
DNS Servers . . . . . . . . . . . : 216.68.4.10
216.68.5.10

The other computer's ipconfig:
Windows IP Configuration
Host Name . . . . . . . . . . . . : alice
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Unknown
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No

Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Realtek RTL8139 Family PCI
Fast Ethernet NIC
Physical Address. . . . . . . . . : 00-30-BD-6B-35-33
Dhcp Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
IP Address. . . . . . . . . . . . : 10.226.90.204
Subnet Mask . . . . . . . . . . . : 255.255.255.248
Default Gateway . . . . . . . . . : 10.226.90.201
DHCP Server . . . . . . . . . . . : 10.226.90.201
DNS Servers . . . . . . . . . . . : 216.68.4.10
216.68.5.10

Any suggestions?
 
C

Chuck

I had a devil of a time networking my two old PCs under WinXPPro. (And I
thought the Networking wizard was supposed to make it so easy.)
Any way, I ran the wizard on both new PCs. The connect to a D-Link Wireless
router which is connected in turn to my DSL router.
Here's the ipconfig for the one PC:
Windows IP Configuration
Host Name . . . . . . . . . . . . : caesar
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Unknown
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No

Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Marvell Yukon 88E8001/8003/8010
PCI Gigabit Ethernet Controller
Physical Address. . . . . . . . . : 00-0D-61-68-D7-81
Dhcp Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
IP Address. . . . . . . . . . . . : 10.226.90.202
Subnet Mask . . . . . . . . . . . : 255.255.255.248
Default Gateway . . . . . . . . . : 10.226.90.201
DHCP Server . . . . . . . . . . . : 10.226.90.201
DNS Servers . . . . . . . . . . . : 216.68.4.10
216.68.5.10

The other computer's ipconfig:
Windows IP Configuration
Host Name . . . . . . . . . . . . : alice
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Unknown
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No

Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Realtek RTL8139 Family PCI
Fast Ethernet NIC
Physical Address. . . . . . . . . : 00-30-BD-6B-35-33
Dhcp Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
IP Address. . . . . . . . . . . . : 10.226.90.204
Subnet Mask . . . . . . . . . . . : 255.255.255.248
Default Gateway . . . . . . . . . : 10.226.90.201
DHCP Server . . . . . . . . . . . : 10.226.90.201
DNS Servers . . . . . . . . . . . : 216.68.4.10
216.68.5.10

Any suggestions?

That's a 10.226.90.200/29 subnet. It's small enough - 6 host addresses. Where
did you come up with the subnetting for that?

Take the following code (everything inside the "#####"). (Please verify
computer names and ip addresses).

Open Notepad. Ensure that Format - Word Wrap is not checked. Highlight then
Copy the code (Ctrl-C), precisely as it is keyed, and Paste (Ctrl-V) into
Notepad. Verify, and correct, names and addresses if necessary.
Save the Notepad file as "cdiag.cmd", as type "All Files", into the root folder
"C:\".
Run it by Start - Run - "c:\cdiag".
Wait patiently.
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 both computers, please, with both computers powered up and online.

#####

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

#####

--
Cheers,
Chuck
Paranoia comes from experience - and is not necessarily a bad thing.
My email is AT DOT
actual address pchuck sonic net.
 
G

Guest

Thanks for the code. I'll run it after a bit.
All of the addresses were set automatically by the systems. The only thing
I've done set the wireless router security.
 
G

Guest

Here's the one result:
CDiagnosis V1.07
Start diagnosis for CAESAR (Targets caesar 10.226.90.202 alice 10.226.90.204
)

"ping www.yahoo.com"

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



Reply from 216.109.118.74: bytes=32 time=38ms TTL=47

Reply from 216.109.118.74: bytes=32 time=37ms TTL=47

Reply from 216.109.118.74: bytes=32 time=37ms TTL=47

Reply from 216.109.118.74: bytes=32 time=37ms TTL=46



Ping statistics for 216.109.118.74:

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

Approximate round trip times in milli-seconds:

Minimum = 37ms, Maximum = 38ms, Average = 37ms


"ping 66.94.230.32"



Pinging 66.94.230.32 with 32 bytes of data:



Reply from 66.94.230.32: bytes=32 time=84ms TTL=46

Reply from 66.94.230.32: bytes=32 time=90ms TTL=46

Reply from 66.94.230.32: bytes=32 time=91ms TTL=47

Reply from 66.94.230.32: bytes=32 time=84ms TTL=46



Ping statistics for 66.94.230.32:

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

Approximate round trip times in milli-seconds:

Minimum = 84ms, Maximum = 91ms, Average = 87ms


Target caesar

"ping caesar"



Pinging caesar [10.226.90.202] with 32 bytes of data:



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

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

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

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



Ping statistics for 10.226.90.202:

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

Approximate round trip times in milli-seconds:

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


"net view caesar"

Shared resources at caesar

HomeBrew

Share name Type Used as Comment

-------------------------------------------------------------------------------
Printer Print Microsoft Office Document Image Writer
Printer2 Print Canon i550
SharedDocs Disk
The command completed successfully.


Target 10.226.90.202

"ping 10.226.90.202"



Pinging 10.226.90.202 with 32 bytes of data:



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

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

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

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



Ping statistics for 10.226.90.202:

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

Approximate round trip times in milli-seconds:

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


"net view 10.226.90.202"

Shared resources at 10.226.90.202

HomeBrew

Share name Type Used as Comment

-------------------------------------------------------------------------------
Printer Print Microsoft Office Document Image Writer
Printer2 Print Canon i550
SharedDocs Disk
The command completed successfully.


Target alice

"ping alice"



Pinging alice [10.226.90.204] with 32 bytes of data:



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

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

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

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



Ping statistics for 10.226.90.204:

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

Approximate round trip times in milli-seconds:

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


"net view alice"

Shared resources at alice

Alice

Share name Type Used as Comment

-------------------------------------------------------------------------------
Ghost files Disk
MyMusic Disk
Printer Print EPSON Stylus C40 Series
SharedDocs Disk
The command completed successfully.


Target 10.226.90.204

"ping 10.226.90.204"



Pinging 10.226.90.204 with 32 bytes of data:



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

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

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

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



Ping statistics for 10.226.90.204:

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

Approximate round trip times in milli-seconds:

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


"net view 10.226.90.204"

Shared resources at 10.226.90.204

Alice

Share name Type Used as Comment

-------------------------------------------------------------------------------
Ghost files Disk
MyMusic Disk
Printer Print EPSON Stylus C40 Series
SharedDocs Disk
The command completed successfully.


Target 127.0.0.1

"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


"net view 127.0.0.1"

Shared resources at 127.0.0.1

HomeBrew

Share name Type Used as Comment

-------------------------------------------------------------------------------
Printer Print Microsoft Office Document Image Writer
Printer2 Print Canon i550
SharedDocs Disk
The command completed successfully.


Target 10.226.90.201

"ping 10.226.90.201"



Pinging 10.226.90.201 with 32 bytes of data:



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

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

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

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



Ping statistics for 10.226.90.201:

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

Approximate round trip times in milli-seconds:

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


"net view 10.226.90.201"

End diagnosis for CAESAR


Here's the other:

CDiagnosis V1.07
Start diagnosis for ALICE (Targets caesar 10.226.90.202 alice 10.226.90.204
)

"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=37ms TTL=47

Reply from 216.109.118.66: bytes=32 time=37ms TTL=47

Reply from 216.109.118.66: bytes=32 time=37ms TTL=47

Reply from 216.109.118.66: bytes=32 time=38ms TTL=47



Ping statistics for 216.109.118.66:

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

Approximate round trip times in milli-seconds:

Minimum = 37ms, Maximum = 38ms, Average = 37ms


"ping 66.94.230.32"



Pinging 66.94.230.32 with 32 bytes of data:



Reply from 66.94.230.32: bytes=32 time=91ms TTL=46

Reply from 66.94.230.32: bytes=32 time=84ms TTL=47

Reply from 66.94.230.32: bytes=32 time=83ms TTL=47

Reply from 66.94.230.32: bytes=32 time=90ms TTL=47



Ping statistics for 66.94.230.32:

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

Approximate round trip times in milli-seconds:

Minimum = 83ms, Maximum = 91ms, Average = 87ms


Target caesar

"ping caesar"



Pinging caesar [10.226.90.202] with 32 bytes of data:



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

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

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

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



Ping statistics for 10.226.90.202:

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

Approximate round trip times in milli-seconds:

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


"net view caesar"

Shared resources at caesar

HomeBrew

Share name Type Used as Comment

-------------------------------------------------------------------------------
Printer Print Microsoft Office Document Image Writer
Printer2 Print Canon i550
SharedDocs Disk
The command completed successfully.


Target 10.226.90.202

"ping 10.226.90.202"



Pinging 10.226.90.202 with 32 bytes of data:



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

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

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

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



Ping statistics for 10.226.90.202:

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

Approximate round trip times in milli-seconds:

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


"net view 10.226.90.202"

Shared resources at 10.226.90.202

HomeBrew

Share name Type Used as Comment

-------------------------------------------------------------------------------
Printer Print Microsoft Office Document Image Writer
Printer2 Print Canon i550
SharedDocs Disk
The command completed successfully.


Target alice

"ping alice"



Pinging alice [10.226.90.204] with 32 bytes of data:



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

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

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

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



Ping statistics for 10.226.90.204:

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

Approximate round trip times in milli-seconds:

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


"net view alice"

Shared resources at alice

Alice

Share name Type Used as Comment

-------------------------------------------------------------------------------
Ghost files Disk
MyMusic Disk
Printer Print EPSON Stylus C40 Series
SharedDocs Disk
The command completed successfully.


Target 10.226.90.204

"ping 10.226.90.204"



Pinging 10.226.90.204 with 32 bytes of data:



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

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

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

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



Ping statistics for 10.226.90.204:

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

Approximate round trip times in milli-seconds:

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


"net view 10.226.90.204"

Shared resources at 10.226.90.204

Alice

Share name Type Used as Comment

-------------------------------------------------------------------------------
Ghost files Disk
MyMusic Disk
Printer Print EPSON Stylus C40 Series
SharedDocs Disk
The command completed successfully.


Target 127.0.0.1

"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


"net view 127.0.0.1"

Shared resources at 127.0.0.1

Alice

Share name Type Used as Comment

-------------------------------------------------------------------------------
Ghost files Disk
MyMusic Disk
Printer Print EPSON Stylus C40 Series
SharedDocs Disk
The command completed successfully.


Target 10.226.90.201

"ping 10.226.90.201"



Pinging 10.226.90.201 with 32 bytes of data:



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

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

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

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



Ping statistics for 10.226.90.201:

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

Approximate round trip times in milli-seconds:

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


"net view 10.226.90.201"

End diagnosis for ALICE

Killing Zone Alarm doesn't make any difference.
 
C

Chuck

On Fri, 11 Mar 2005 19:03:01 -0800, RealGomer

Killing Zone Alarm doesn't make any difference.

You absolutely cannot solve things by "killing" Zone Alarm. With Zone Alarm,
you have just 2 choices:
1) Enable it, and configure it properly.
2) Enable it, and un install it completely, following all procedures provided
by vendor.
3) A third solution does not exist.

Is this Zone Alarm Free? If so, put caesar into the Trusted Zone for Alice, and
put Alice in the Trusted Zone for caesar. After you enable it.

Or enable it, then un install it.
http://nh2.nohold.net/noHoldCust25/Prod_1/Articles55646/CompleteUninstallNonNT.html

--
Cheers,
Chuck
Paranoia comes from experience - and is not necessarily a bad thing.
My email is AT DOT
actual address pchuck sonic net.
 
G

Guest

Okay, Chuckie boy! You get a cookie. From Famous Amos, not some @#%$@!@ web
site. I place the boxes in ZL's Trusted Zones and voila! There they is!
Sometimes the simplest solutions are the hardest to find.
Thanks!!
 
C

Chuck

Okay, Chuckie boy! You get a cookie. From Famous Amos, not some @#%$@!@ web
site. I place the boxes in ZL's Trusted Zones and voila! There they is!
Sometimes the simplest solutions are the hardest to find.
Thanks!!

Mmm, cookie. Beats hella the cookies you get with Firefox or Internet
Destructor. ;)

Thanks for the feedback.

--
Cheers,
Chuck
Paranoia comes from experience - and is not necessarily a bad thing.
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