Results 1 to 4 of 4
my dhcpd server only start if I ifdown eth1 , that interface have a real ip in the internet, the eth0 is the local area network ip.
my dhcpd.conf:
############################
...
- 06-13-2011 #1Just Joined!
- Join Date
- Sep 2010
- Posts
- 13
dhcp server
my dhcpd server only start if I ifdown eth1 , that interface have a real ip in the internet, the eth0 is the local area network ip.
my dhcpd.conf:
############################
## xxxxxxxxxxxxxxxxxxxxxxx ##
############################
authoritative;
deny unknown-clients;
default-lease-time 86400000;
max-lease-time 87000000;
#log-facility local7;
##################################################
## xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx##
##################################################
subnet x.x.0.0 netmask 255.255.0.0 {
option routers x.x.0.252;
option subnet-mask 255.255.0.0;
option domain-name "xxxxxxxxxxx.com";
option domain-name-servers x.x.0.196;
}
subnet x.x.x.3 netmask 255.255.255.192 {
} #####here is the real ip adress for eth1###
####################################
## xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ##
####################################
xxxxxx{
hardware ethernet 00
x
x
x:0E
x;
fixed-address x.x.x.1;
}
error message when I try to start dhcpd withoout ifdown eth1
dhcpd failed to start - check syslog for diagnostics.
thansk for the help
- 06-14-2011 #2Linux Guru
- Join Date
- May 2011
- Posts
- 1,813
and what does syslog say? (check /var/log/messages, probably)
- 06-16-2011 #3Just Joined!
- Join Date
- Sep 2010
- Posts
- 13
dhcp
the only thing is logging is dhcp requets and firewall stuff, no error messages, even in syslog or messages. :-/
- 06-17-2011 #4Just Joined!
- Join Date
- Sep 2010
- Posts
- 13
solved
I updated from dhcp2 to dhcp3 and now is working like a charm


Reply With Quote
