This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DHCP config for TFTP. HELP !!

have a problem configuring TFTP option on my ASL 5.2
have a TFTP server working on a Windows Server.
on searching the forum .. found out that we need to edit dhcpd.conf-default file to add the option

appended the following to the end of
/var/sec/chroot-dhcps/etc/dhcpd.conf-default
>>

group {
   subnet 192.168.201.0 netmask 255.255.255.0 {
   option subnet-mask 255.255.255.0;
   option broadcast-address 192.168.201.255;
   range 192.168.201.120 192.168.201.180;
}
option domain-name-servers 192.168.201.4;
option routers 192.168.201.4
option tftp-server-name "192.168.203.34";
next-server 192.168.203.34;
}

but when i enable the dhcp server, it does not pick up these config's & stops responding to any DHCP requests at all.
also when i checked /var/sec/chroot-dhcps/etc/dhcpd.conf
it had the following out put 
>>

#
# This is the default configfile of the dhcpd server
#

allow unknown-clients;

# deny boot and booting from this dhcp server
Allow bootp;
allow booting;

# deny declines to prevent denial of service
deny declines;

# Lease times
# 600s = 5m
# 14400s = 4h
# 86400 = 1d
# 172800 = 2d
max-lease-time 172800;
default-lease-time 86400;
min-lease-time 600;

# DDNS handling as always
ddns-update-style ad-hoc;

local-port 67;
log-facility daemon;

# To check if a specific ip address of the subnet is active
# do a ping check before assigning an ip adress
ping-checks;

# only on lease per client is allowed
one-lease-per-client on;

group {
   subnet 192.168.201.0 netmask 255.255.255.0 {
   option subnet-mask 255.255.255.0;
   option broadcast-address 192.168.201.255;
   range 192.168.201.120 192.168.201.180;
}
option domain-name-servers 192.168.201.4;
option routers 192.168.201.4
option tftp-server-name "192.168.203.34";
option next-server 192.168.203.34;

}

group {
  subnet 192.168.201.0 netmask 255.255.255.0 {
     option subnet-mask 255.255.255.0;
     option broadcast-address 192.168.201.255;
     range 192.168.201.1 192.168.201.254;
  }
}


it is adding a 2nd Group {}, guess that is the problem... really need ALS to give out TFTP server ip address.

thanks in advance for any suggestions/guidance/help


This thread was automatically locked due to age.