Windows 7 IPSetup not seeing 0.0.0.1

Discussion to talk about software related topics only.
Post Reply
aaronbc
Posts: 1
Joined: Mon Feb 15, 2010 12:36 pm

Windows 7 IPSetup not seeing 0.0.0.1

Post by aaronbc »

We have an issue where IPSetup will not see devices with an IP address of 0.0.0.1 This happens when a device is setup as DHCP but no DHCP server exists so the IP address stays 0.0.0.1
Windows XP works fine. What would cause this issue?
Thanks,
Aaron
User avatar
tod
Posts: 587
Joined: Sat Apr 26, 2008 8:27 am
Location: Southern California
Contact:

Re: Windows 7 IPSetup not seeing 0.0.0.1

Post by tod »

When it has a valid address does IP Setup under Windows 7 see it? I ask just in case you never had a need to run IPSetup until it got the invalid address. It's possible Windows 7 blocks UDP port 20034 and you'll have to adjust the firewall to open it up.

Also to avoid the problem you can always do something like

Code: Select all

if (GetDHCPAddress() != DHCP_OK) EthernetIP = AsciiToIp("192.168.1.32");
User avatar
Forrest
Posts: 288
Joined: Wed Apr 23, 2008 10:05 am

Re: Windows 7 IPSetup not seeing 0.0.0.1

Post by Forrest »

aaronbc wrote:We have an issue where IPSetup will not see devices with an IP address of 0.0.0.1 This happens when a device is setup as DHCP but no DHCP server exists so the IP address stays 0.0.0.1
Windows XP works fine. What would cause this issue?
Thanks,
Aaron
This was a bug that was in our code affecting Windows 7. If you update to the release Rel24_rc2, this should be resolved.
Forrest Stanley
Project Engineer
NetBurner, Inc

NetBurner Learn Articles: http://www.netburner.com/learn
User avatar
lgitlitz
Posts: 331
Joined: Wed Apr 23, 2008 11:43 am
Location: San Diego, CA
Contact:

Re: Windows 7 IPSetup not seeing 0.0.0.1

Post by lgitlitz »

I just wanted to add that there is no problem with the old version of IPSetup for versions of windows besides Vista and 7. Microsoft changed how that stack works at the application level in these new versions of windows. Broadcasts were not being received by the application for some "invalid" IP addresses (0.0.0.0, 0.0.0.1 ...) but this works fine in XP.
Post Reply