#1077 closed defect (fixed)
DHCP: typo + ?missing kernel module?
| Reported by: | Owned by: | ||
|---|---|---|---|
| Priority: | high | Milestone: | |
| Component: | BOOK | Version: | SVN |
| Severity: | normal | Keywords: | |
| Cc: |
Description
TYPO: Towards bottom of page http://www.linuxfromscratch.org/blfs/view/cvs/server/dhcp.html is:
cat > /etc/dhcpd.conf << "EOF" default-lease-time 72000; max-lease-time 144000; ddns-update-style ad-hoc;
subnet [192.168.5.0] netmask [255.255.255.0] {
range [192.168.5.10] [192.168.5.240]; option broadcast-address [195.168.5.255]; option routers [192.168.5.1];
} EOF
on the line with: option broadcast-address [195.168.5.255];
the class C of the sub-net starts with 195 instead of the 192 used for the
rest of the lines.
-- Missing Kernel Module? Further up on the same page is a note:
"You must have Packet Socket support compiled in the kernel and Socket
Filtering either compiled in or as a kernel module."
I've looked through the kernel make menuconfig and the .config file and can't find any option that says: Socket Filtering. Any chance that this was a 2.4.x kernel option that went away with 2.6.x? (I've googled, scanned the email list, and checked for other bug reports, if this is already discussed, please just send me a link.)
Harrison
Change History (4)
comment:1 by , 21 years ago
| Milestone: | future → 6.0 |
|---|
comment:2 by , 21 years ago
| Owner: | changed from to |
|---|
comment:3 by , 21 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |

Fixed Typo. Updated note about kernel configuration. Evidently this came from the INSTALL instructions refering to Linux 2.0 and has propagated.