Displaying 20 results from an estimated 10000 matches similar to: "dhcpd rpm"
2010 Oct 15
3
Wireless problem
Hi folks
I just installed Centos 5.5. I heard about the new changes in wifi support. I tried a USB wifi card from Netgear, and It works fine. It didn't en Centos 5.4, so that's great news.
The problem is I have a Linksys WUSB54GC USB wifi card and I want to make it work.
I get this messages in /var/log/messages as soon as I plug it in.
Oct 14 22:56:20 lila kernel: usb 1-1: USB
2009 Mar 12
4
How to find out values from dhcp query
How can I find out what variables and their values were provided by a
dhcpd server to my client?
I thought perhaps /etc/dhclient-eth1.conf, but that is not the place...
2009 Jun 17
2
Issues with dhclient support in 4.2.8
While troubleshooting my MultiISP box, I suspect I might have found
either a bug or an incompatibility with CentOS 5.2.
In prog.header (function detect_dynamic_gateway), Shorewall tries to look for:
/var/lib/dhcp/dhclient-${1}.lease
However (at least under CentOS 5 - unknown about other OSes), this should be:
/var/lib/dhclient/dhclient-${1}.leases
(different path, and "leases"
2010 Apr 08
3
Question about dhcpd.leases
Hi,
I'm running a DHCP server on my local network. I've noticed something
that puzzles me. Leases are written to /var/lib/dhcpd/dhcpd.leases, but
only - so it seems to me - if the address is not fixed in any way in
dhcpd.conf.
Here's a few stanzas of my dhcpd.conf :
host babasse {
hardware ethernet 00:0d:61:ae:6b:8f;
fixed-address 192.168.1.1;
option
2010 Aug 09
4
dhcp server
Hi all,
this is my first post on this list, hope someone can help me.
I have to run a dhcp server on CentOS release 5.5 (Final).
# yum list| grep -i dhcp
dhcp.x86_64 12:3.0.5-23.el5 installed
dhcp-devel.x86_64 12:3.0.5-23.el5 installed
dhcpv6-client.x86_64 1.0.10-18.el5 installed
after starting the dhcpd daemon, the windows Clients on the subnet
(192.168.100.0/24) tells me, that there is no
2013 Feb 08
1
Can't build 5.9 with KVM on a 6.3 host - DHCP hang?
During the build (via a serial console) we get
input: ImExPS/2 Generic Explorer Mouse as /class/input/input1
running install...
running /sbin/loader
Sending request for IP information for eth0...
Determining host name and domain...
Sending request for IP information for eth0...
Determining host name and domain...
And there it hangs.
On the 6.3 host:
Feb 8 08:28:55 penfold dhcpd:
2017 Jan 14
2
Centos 7 dhcpd failure to allow a 2nd network over same interal nic
Everyone,
I am trying to set up a second internal network (192.168.0.0/24) and
have not been able to get dhcp to start when I have the following in my
dhcpd.conf file :
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.110 192.168.0.130;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
option routers 192.168.0.1;
option
2010 Aug 11
1
DHCP problem with virtual interfaces
Hello,
After asking around in #centos and other linux related IRC channels, here I am, bugging all of you.
brace for the long post. (tldr: dhclient loses virtual interface ips)
I set up a system to deploy statically assigned IPs to physical and virtual interfaces to a number of (virtual) machines.
I have a DHCPD with an entry for each virtual ip in the form of
host eth0-1.virt1.test.it {
2017 Jan 14
4
Centos 7 dhcpd failure to allow a 2nd network over same interal nic
Everyone,
I am trying to set up a second internal network (192.168.0.0/24) and
have not been able to get dhcp to start when I have the following in my
dhcpd.conf file :
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.110 192.168.0.130;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
option routers 192.168.0.1;
option
2013 Jan 23
0
dhclient in 5.9 having trouble with dhcpd in 6.3 ?
I have a KVM setup. Host is 6.3. I have a bridged client running 5.9
Since upgrading to 5.9 I noticed that ntpd is being restarted every
12 hours.
Jan 20 08:00:25 mercury ntpd[16103]: ntpd exiting on signal 15
Jan 20 20:00:26 mercury ntpd[27462]: ntpd exiting on signal 15
Jan 21 08:00:27 mercury ntpd[11343]: ntpd exiting on signal 15
Jan 21 20:00:28 mercury ntpd[25148]: ntpd exiting on signal
2017 Jan 16
3
Centos 7 dhcpd failure to allow a 2nd network over same interal nic
On 16/01/17 17:12, James A. Peltier wrote:
> VLANs are your friend, otherwise DHCPD is not going to understand how to properly answer your request for different networks on the same interface.
>
> ----- On 14 Jan, 2017, at 11:59, Gregory P. Ennis PoMec at PoMec.net wrote:
>
> | Everyone,
> |
> | I am trying to set up a second internal network (192.168.0.0/24) and
> | have
2018 Mar 29
3
dhcp lease time hardware in script at dhcpd/Bind/Samba wiki page
There seems to be a slight issue with the instructions at the following
wiki page:
https://wiki.samba.org/index.php/Configure_DHCP_to_update_DNS_records_with_BIND9
The /usr/local/bin/dhcp-dyndns.sh script seems to use a hardwired value
for the lease expiry time of 3600 - independent of whatever is
configured in dhcpd.conf. With the examples provided, it should work, as
the example dhcpd.conf
2015 Mar 03
2
dhclient.conf
Hi all :-)
on centos 6 I need keep the hostname from a dhcp server:
cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
HWADDR=00:50:56:27:0E:C8
TYPE=Ethernet
UUID=20924b21-e92a-4944-a054-06d1967155c1
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=dhcp
PEERDNS=yes
with this config, centos keep only ip from dhcp server (not gw, not dns)
where is dhclient.conf? I need to create it? If yes,
2016 Feb 18
1
dhcpd frequent renewals
Rob
DNS service for my clients is provided by my gateway server, the same
machine as the DHCPD server. I think that's what the "option
domain-name-servers" line does. This allows me to provide 192.168
addresses to them when they try to access anything inside the house
with a name. If it's not a locally defined name, BIND forwards the
request to the internet.
I'm not
2017 May 26
1
CentOS 6 dhcpd custom log issues
Hi all,
I've got an issue with C6's dhcpd custom logging that I cannot figure out.
Hopefully someone has an idea, or has seen a similar issue. We have dhcpd
logging to /var/log/messages a custom header (DHCPUSER:) with MAC, IP and
Circuit-ID.
I'll not bore you with the guts, so here's the beginning of that line in
dhcpd.conf:
if exists agent.circuit-id
{
log (info,
2013 Oct 10
3
Detect dhclient leases file in centos
Hello,
I''m using shorewall-4.5.16 with centos5. The dhclient stores the lease information on
the /var/lib/dhclient/dhclient-<DEVICE>.leases file.
The /var/lib/shorewall/firewall script has the function detect_dynamic_gateway that
detects the gateway based on the leases file. The code in the function is:
detect_dynamic_gateway() { # $1 = interface
local interface
2017 Jan 16
1
Centos 7 dhcpd failure to allow a 2nd network over same interal nic
On 16/01/17 21:54, John R Pierce wrote:
> On 1/16/2017 12:44 AM, Rob Kampen wrote:
>>>
>> Here's an idea - untested.
>> set up a network on the single nic - say 192.168.55.xx/24
>> set up the dhcp to offer leases from a subset of this network - say
>> 192.168.55.128/28
>> set up fixed leases based upon mac address from the remainder of the
>>
2018 Mar 29
2
dhcp lease time hardware in script at dhcpd/Bind/Samba wiki page
On 29/03/18 15:52, Rowland Penny via samba wrote:
> On Thu, 29 Mar 2018 15:01:26 +0100
> Sebastian Arcus via samba <samba at lists.samba.org> wrote:
>
>> There seems to be a slight issue with the instructions at the
>> following wiki page:
>>
>> https://wiki.samba.org/index.php/Configure_DHCP_to_update_DNS_records_with_BIND9
>>
>> The
2016 Feb 16
2
dhcpd frequent renewals
Folks
This might be the wrong place to ask, but I don't know where to turn.
My internal home network, including wireless, is controlled by a
Centos6 server, which provides dhcpd services, along with NAT. I
have DHCPD configured with the addresses 192.168.155.200 through
192.168.155.254 as the range for dynamic allocations. The
default-lease time is 1800 seconds, the maximum is 3600
2009 Oct 17
1
Bind, DHCPD and Samba
Hey Folks,
I currently have bind and dhcpd configured to allow for dynamic updates, though when I try to manually add in the srv records required for correctly identifying the samba pdc, they get overwritten when bind starts.
How can I modify the bind configuration so that it writes the correct information? Also, is there a way to have samba write the correct information to bind?
As for the