I guess there's a RAS service installed on that machine?
If so, try either:
http://support.microsoft.com/support/kb/articles/q150/2/81.asp?FR=0
or apply the attached RAS patch for ISC DHCP - we use it, works grate!
<<patch.txt>>
Best regards!
> Mit freundlichen Gr��en
>
Stefan Gasteiger
I+K Betrieb (zertifiziert nach DIN EN ISO 9001)
InfraServ Gendorf
Tel.: +49 8679 7 5599
Mobiltel.: +49 172 8649205
Fax: +49 8679 7 5050
E-Mail: [EMAIL PROTECTED]
> -----Urspr�ngliche Nachricht-----
> Von: Dan Hollis [SMTP:[EMAIL PROTECTED]]
> Gesendet am: Mittwoch, 7. April 1999 01:53
> An: [EMAIL PROTECTED]
> Betreff: Disable DHCP on NT?
>
> *** From dhcp-server -- To unsubscribe, see the end of this message.
> ***
>
> How does one completely disable DHCP on NT?
>
> In control panel, the PC is assigned a static IP, and all settings for
> DHCP and WINS are disabled.
>
> Yet the stupid thing keeps broadcasting DHCPDISCOVER every minute after
> its booted.
>
> -Dan
>
>
>
> --------------------------------------------------------------------------
> ----
> To unsubscribe from this list, please visit
> http://www.fugue.com/dhcp/lists
> If you are without web access, or if you are having trouble with the web
> page,
> please send mail to [EMAIL PROTECTED] Please try to use the web
> page first - it will take a long time for your request to be processed by
> hand.
> --------------------------------------------------------------------------
> ----
>From [EMAIL PROTECTED] Tue Jun 30 10:40:39 1998
first I'd like to say 'Thank you!' to all who replied to my question.
> Is there anyway that we can deny RAS servers an IP address and log
>the request? On our network, we really have _no_ need for these to be
>running (ISP assigning addresses via DHCP over 4mb/s zenith homeworks
>universal cablemodems). I don't even want these guys chomping on the IP
>address pool.
We got the problem also on an cable modem network :) so we don't have
control over what's on the network whatsoever.
I got this very handy reply from Leonard Hermens (thanks again!) witch
solves the problem:
It is RAS from NT.
We hate it, so I modified the code in dhcp.c to refuse them:
=======================================================
.
.
.
/* Modified: February 18, 1998 */
if (packet -> raw -> hlen > 6) {
/* note ("Denied RAS = %s from %s\n",
print_hw_addr (packet -> raw -> htype,
packet -> raw -> hlen,
packet -> raw -> chaddr),
packet -> raw -> giaddr.s_addr
? inet_ntoa (packet -> raw -> giaddr)
: packet -> interface -> name);
*/
return; /* don't process RAS don't DHCP anything */
}
/* END CHANGES */
switch (packet -> packet_type) {
case DHCPDISCOVER:
dhcpdiscover (packet);
break;
.
.
.
======================================================
Note that you can uncomment the 'note' code to log the denials. We just
ignore them and don't log because it fills our log files up.
The code presumes that the ethernet HW address is 6 bytes or less.
-- Leonard
alex.