Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista Networking > Problem with DHCP

Reply
Thread Tools Display Modes

Problem with DHCP

 
 
lolobo
Guest
Posts: n/a

 
      06-16-2006
Hi
I can't get proper ip ore dns adress from dhcp. It is working ok with xp and
others but not with vista. When i try to connect vista "generate" their own
ip adress and put a worning that i can have problems with network connecion.
 
Reply With Quote
 
 
 
 
Colin Johnson
Guest
Posts: n/a

 
      06-20-2006

I'm seeing a similar problem.

When I hard code in the IP addr and such the network functions just
fine. When I tell the computer to get its network information via DHCP
it fails to contact the DHCP server.

I've checked the logs on the DHCP server (ISC DHCP server version 3) and
I can see the discover getting to it:

Jun 20 15:51:40 tigana.ccs.neu.edu dhcpd: [ID 702911 daemon.info]
DHCPDISCOVER from 00:0b:db:53:5d:ba via 129.10.118.1
Jun 20 15:51:40 tigana.ccs.neu.edu dhcpd: [ID 702911 daemon.info]
DHCPOFFER on 129.10.118.215 to 00:0b:db:53:5d:ba via 129.10.118.1
Jun 20 15:51:40 tigana.ccs.neu.edu dhcpd: [ID 702911 daemon.info]
DHCPDISCOVER from 00:0b:db:53:5d:ba via 129.10.118.1
Jun 20 15:51:40 tigana.ccs.neu.edu dhcpd: [ID 702911 daemon.info]
DHCPOFFER on 129.10.118.215 to 00:0b:db:53:5d:ba via 129.10.118.1

But the client (Vista beta 2) never recognizes that it gets a response.

lolobo wrote:
> Hi
> I can't get proper ip ore dns adress from dhcp. It is working ok with xp and
> others but not with vista. When i try to connect vista "generate" their own
> ip adress and put a worning that i can have problems with network connecion.



 
Reply With Quote
 
Reko Turja
Guest
Posts: n/a

 
      06-20-2006
"Colin Johnson" <> wrote in message
news:...
>
> I'm seeing a similar problem.
>
> When I hard code in the IP addr and such the network functions
> just fine. When I tell the computer to get its network
> information via DHCP it fails to contact the DHCP server.
>
> I've checked the logs on the DHCP server (ISC DHCP server
> version 3) and I can see the discover getting to it:


I'm getting the IP just fine for Vista from ISC dhcpd - Do you have
authoritative; set in your dhcpd.conf?

My setup has an caching DNS in my LAN and I'm using it for all the DNS
queries and forwards. And my dhcp addresses are reserved strictly for
"guest" machines - Dhcpd setup is as follows:

# Start of dhcpd.conf
# Set the IP ranges, lease times and domain names according
# your actual setup
option domain-name "sub.mydomain.org";
option domain-name-servers 192.168.25.1;

default-lease-time 600;
max-lease-time 7200;
authoritative;
ddns-update-style ad-hoc;
log-facility local7;

subnet 192.168.25.0 netmask 255.255.255.0 {
range 192.168.25.200 192.168.25.225;
option routers 192.168.25.1;
option broadcast-address 192.168.25.255;
default-lease-time 600;
max-lease-time 7200;
}
# End of dhcpd.conf

-Reko


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem to get default gateway in dhcp Max Windows Vista Networking 5 10-05-2007 12:11 PM
Vista DHCP Static Switch causes problem karthik085@gmail.com Windows Vista Networking 0 09-23-2007 04:01 AM
i am not receiving ip from the dhcp or router whats the problem sandeep.b Windows Vista Networking 2 08-08-2007 09:56 AM
how to correct this problem with dhcp mikeyhsd Windows Vista Networking 8 07-25-2007 10:45 PM
Vista Problem in IP accuring from dhcp server Amin Seyedin Windows Vista Networking 1 04-08-2007 03:37 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59