Hi Silviu,

you need to install pxelinux (if you haven't already), then point to
pxelinux.O from dhcpd.conf:

    host XXXX {
    ....
    filename "pxelinux.O";
    }

You're probably trying to load vmlinuz i.o. the boot loader.

For completeness, below is a basic dhcpd.conf example for fixed
adresses.


Bill

----------------------------------------------------------------------
# Subnetwork declaration
subnet 192.168.1.0 netmask 255.255.255.0 {
        option domain-name "my.domain.org";
        option subnet-mask 255.255.255.0;
        option broadcast-address 192.168.1.255;
        option domain-name-servers 192.168.1.3, 194.111.12.25;
        option routers 192.168.1.1;
}

# Fixed addresses for local hosts
group {
        next-server 192.168.1.1;
        host soekris {
                hardware ethernet 00:00:24:c2:de:4f;
                fixed-address 192.168.1.4;
                filename "pxeboot.O";
        }
        # host .....
}
--------------------------------------------------------------------


On Mon, 2008-08-25 at 16:10 +0300, [EMAIL PROTECTED] wrote:
> Hello,
> 
> I'm not sure how to install Endian firewall on this box. I have
> net5501 board with HDD.
> I tried the totorial from "Installing CentOS 4.4" from Soekris Info
> Wiki, but I got the error:
> "PXE-E79: NBP is too big to fit in free base memory"
> 
> Any help is appreciated.
> 
> Thanks!
> _______________________________________________
> Soekris-tech mailing list
> [email protected]
> http://lists.soekris.com/mailman/listinfo/soekris-tech
-- 
"There is nothing to worry about" - unknown

_______________________________________________
Soekris-tech mailing list
[email protected]
http://lists.soekris.com/mailman/listinfo/soekris-tech

Reply via email to