Andy said:
I can not get a Zyxel wireless router nbg 418n working correctly.
It gets a great connection but my browser will not connect ?
Andy
It's probably your DNS settings aren't working.
Try
http://www.sun.com and you'll tell us that doesn't work.
Try
http://156.151.59.35 and you'll tell us that does work.
If that's the pattern, that's DNS.
In command prompt, I cheated by doing
nslookup
www.sun.com
so it could give me the number 156.151.58.35 . I used
my DNS lookup, so yours would not need to be working.
By using the "number format", you're avoiding a DNS lookup
over the network. If you do this in the browser, DNS is not
consulted. It would be pretty hard for me to "give you
all the numbers", so you could browse all day
http://156.151.59.35
If that does not match your symptoms, try to explain
"browser will not connect". What does it say ? What
is the diagnostic message ? What is the visual appearance
after you hit <return> ?
*******
I found this page today, which is filled with Wifi goodies.
It turns out, this is for Vista, so the "netsh wlan show all"
doesn't work. This is for Vista or later. WinXP has different
and more useless options.
http://technet.microsoft.com/en-us/library/cc766215(v=WS.10).aspx
In WinXP, you can do in the Command Prompt window
netsh
diag
show ip [your IP address]
show ? [list the other (useless) options]
quit
So that's about as close to useful as WinXP gets there.
You'd be better off doing
ipconfig /all
to get a dump.
If you do it this way, the results can be
saved in a file.
ipconfig /all > C:\myipconfig.txt
and that would store it under C:\ . In Command Prompt,
then you'd do
notepad C:\myipconfig.txt
to open it, and after notepad is closed,
you could use
del C:\myipconfig.txt
to remove it. Safer, is to use (File) Explorer to
find the file and then delete it with a drag and drop,
as there are more safety features to save you from
a typing error. Never be "in a rush" with the
Command Prompt, as mis-typing some commands
can be deadly. One day, I lost a gigabyte of data
to a typing mistake. Don't join my exclusive club...
Paul