Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - JOrgeS

Pages: [1]
1
Installation and Upgrades / dhcp server for TFTP + PXE + syslinux + G4L
« on: February 18, 2008, 11:38:08 am »
I want to configure ebox to be able to work as a TFTP + PXE + syslinux + G4L system.
The dhcpd.conf must be changed

This is my current dhcpd.conf file:
Code: [Select]
# extra options
# RFC3442 routes
option rfc3442-classless-static-routes code 121 = array of integer 8;
# MS routes
option ms-classless-static-routes code 249 = array of integer 8;

ddns-update-style none;

option domain-name-servers 192.168.2.254;

default-lease-time 1800;
max-lease-time 7200;


shared-network eth0 {
        option routers 192.168.2.251;
        option domain-name-servers 192.168.2.251;

        default-lease-time 1800;
        max-lease-time 7200;


dhcpd.conf: unmodified: line 1       

This is the file I need to add
Code: [Select]
ddns-update-style interim;
ignore client-updates;
allow bootp;
allow booting;

subnet 192.168.0.0 netmask 255.255.255.0 {

    range 192.168.0.10 192.168.0.200;
    option routers 192.168.0.1;
    option subnet-mask 255.255.255.0;
    option domain-name "home.net";
    option domain-name-servers 192.168.0.254;
    next-server 192.168.0.254;
    default-lease-time 21600;
    max-lease-time 43200;
    option root-path "/tftpboot/";
    filename "pxelinux.0";
http://www.opensourcehowto.org/how-to/tftp/tftp--pxe--syslinux--g4l.html

how can I mix the two files without messing ebox?

2
Installation and Upgrades / Images
« on: January 14, 2008, 12:34:13 pm »
I want to know if ebox can create images from client pc's.

Pages: [1]