DHCP for FIX address

shishir at subisu.net.np shishir at subisu.net.np
Wed Aug 2 08:08:02 UTC 2006


hi again,
did you see anything in your log file ..  :O
 your configuration IP range is from 192.168.X.X and logs are showing you
10.144.163.26   .... ?
how come?

shishir



> Hi, Shishir
> Thanks for replying, despite of giving MAC address for the FIX IP  some
> other windows client requesting IP from Linux Dhcp server.
>
>
> Log:
>
>
> [root at testserver ~]# tail -f /var/log/messages
> Aug  2 14:35:11 testserver dhcpd: Wrote 0 leases to leases file.
> Aug  2 14:35:11 testserver dhcpd: Listening on
> LPF/eth0/00:02:55:dc:44:ba/10.144.160/21
> Aug  2 14:35:11 testserver dhcpd: Sending on
> LPF/eth0/00:02:55:dc:44:ba/10.144.160/21
> Aug  2 14:35:11 testserver dhcpd: Listening on
> LPF/eth0/00:02:55:dc:44:ba/10.144.160/21
> Aug  2 14:35:11 testserver dhcpd: Sending on Socket/fallback/fallback-net
> Aug  2 14:35:11 testserver dhcpd: Sending on
> LPF/eth0/00:02:55:dc:44:ba/10.144.160/21
> Aug  2 14:35:11 testserver dhcpd: Sending on Socket/fallback/fallback-net
> Aug  2 14:35:11 testserver dhcpd: dhcpd startup succeeded
> Aug  2 14:35:11 testserver dhcpd: dhcpd startup succeeded
> Aug  2 14:35:12 testserver dhcpd: DHCPINFORM from 10.144.163.26 via eth0
> Aug  2 14:35:32 testserver dhcpd: testserver.ae.standardchartered.com:
> temporary name server failure
> Aug  2 14:35:32 testserver dhcpd: DHCPACK to 10.144.163.26
> Aug  2 14:35:32 testserver dhcpd: DHCPINFORM from 10.144.163.26 via eth0
> Aug  2 14:35:32 testserver dhcpd: DHCPACK to 10.144.163.26
> Aug  2 14:35:32 testserver dhcpd: DHCPINFORM from 10.144.163.26 via eth0
> Aug  2 14:35:32 testserver dhcpd: DHCPACK to 10.144.163.26
> Aug  2 14:35:32 testserver dhcpd: DHCPINFORM from 10.144.163.26 via eth0
> Aug  2 14:35:32 testserver dhcpd: DHCPACK to 10.144.163.26
> Aug  2 14:35:34 testserver sshd[6100]: Failed password for scbops from
> ::ffff:10.144.163.101 port 3189 ssh2
> Aug  2 14:35:37 testserver sshd[6100]: Accepted password for scbops from
> ::ffff:10.144.163.101 port 3189 ssh2
> Aug  2 14:35:42 testserver dhcpd: DHCPINFORM from 10.144.163.26 via eth0
> Aug  2 14:35:42 testserver dhcpd: DHCPACK to 10.144.163.26
> Aug  2 14:35:42 testserver su(pam_unix)[6125]: session opened for user
> root by (uid=500)
> Aug  2 14:35:44 testserver dhcpd: DHCPINFORM from 10.144.163.26 via eth0
> Aug  2 14:35:44 testserver dhcpd: DHCPACK to 10.144.163.26
> Aug  2 14:35:48 testserver dhcpd: DHCPINFORM from 10.144.163.26 via eth0
> Aug  2 14:35:48 testserver dhcpd: DHCPACK to 10.144.163.26
> Aug  2 14:35:49 testserver dhcpd: dhcpd shutdown succeeded
>
>
>
>
>
>
> Best Regards,
> ______________________
> Syed Mairaj Ali Khan
> Phone +9714-5070006
> Mobile:+97150-3576983
>
>
>
>
>
> shishir at subisu.net.np
> Sent by: dhcp-users-bounce at isc.org
> 08/02/2006 09:55 AM
> Please respond to dhcp-users
>
>
>         To:     dhcp-users at isc.org
>         cc:
>         Subject:        Re: DHCP for FIX address
>
> welcome to the group.
> you are sending your configuration, it will be easy to identify the
> problem if you send the logs.
>
> best regards
> shishir
>
>
>
>>> Hi,
>>>
>>> Last week i have joined Dhcp group, i need some help for mentioned
>>> subject.
>>>
>>> Problem: I have configured my (Linux) dhcp server to supply IP to one
>> our linux
>>> box, but unfortunately the box is not receiving when it boots.
>>>
>>> Server side config: configured dhcpd.conf and tftp and both this
>> services are running
>>> perfectly.
>>>
>>> 1. dhcpd.conf :
>>>
>>> #dhcpd.conf
>>> #
>>> # Sample configuration file for ISC dhcpd
>>> ddns-update-style none;
>>> ignore client-updates;
>>> #
>>>
>>> # option definitions common to all supported networks...
>>> option domain-name "ae.testing.com";
>>> option domain-name-servers testserver.testing.com;
>>>
>>> authoritative;
>>> option subnet-mask 255.255.255.0;
>>> default-lease-time 600;
>>> max-lease-time 7200;
>>> # Group the PXE bootable hosts together
>>>         group {
>>>                 # PXE-specific configuration directives...
>>>                 next-server 192.168.1.1;
>>>                 filename "/tftpboot/pxelinux.0";
>>>
>>>
>>>
>>> subnet 192.168.1.0 netmask 255.255.255.0 {
>>>  DHCPD_INTERFACE="eth0";
>>>   range 192.168.1.2 192.168.1.100;
>>> #  option broadcast-address 192.168.1.255;
>>> #   option routers 192.168.1.1
>>> }
>>>    }
>>>
>>> # Fixed IP addresses can also be specified for hosts.   These addresses
>>> # should not also be listed as being available for dynamic assignment.
>>> # Hosts for which fixed IP addresses have been specified can boot using
>>> # BOOTP or DHCP.   Hosts for which no fixed address is specified can
>> only
>>> # be booted with DHCP, unless there is an address range on the subnet
>>> # to which a BOOTP client is connected which has the dynamic-bootp flag
>>> # set.
>>> host testclient {
>>>   hardware ethernet 00:10:18:03:28:4E;
>>>   fixed-address 192.168.1.2;
>>>
>>>
>>> Kindly guide me if iam missing anything in the above mentioned
>> dhcpd.conf file,
>>>
>>
>>
>>
>> Best Regards,
>> ______________________
>> Syed Mairaj Ali Khan
>> Phone +9714-5070006
>> Mobile:+97150-3576983
>>
> This email is confidential. If you are not the addressee tell the sender
>> immediately
>> and destroy this email without using, sending or storing it. Emails are
>> not secure
>> and may suffer errors, viruses, delay, interception and amendment.
>> Standard Chartered PLC
>> and subsidiaries ("SCGroup") do not accept liability for damage caused
> by
>> this email
>> and may monitor email traffic.
>>
>>
>>
>>
>>
>
>
>
>
>
>
This email is confidential. If you are not the addressee tell the sender
> immediately
> and destroy this email without using, sending or storing it. Emails are
> not secure
> and may suffer errors, viruses, delay, interception and amendment.
> Standard Chartered PLC
> and subsidiaries ("SCGroup") do not accept liability for damage caused by
> this email
> and may monitor email traffic.
>
>
>
>
>




More information about the dhcp-users mailing list