Robert,
I am running LTSP on Gentoo at the OSTC. DHCP is running on a Debian Woody
server. Here are the config files.
# lts.conf
#
# Config file for the Linux Terminal Server Project (www.ltsp.org)
#
[Default]
SERVER = 192.168.1.1
XSERVER = auto
XDM_SERVER = 192.168.1.1
X_MOUSE_PROTOCOL = "PS/2"
X_MOUSE_DEVICE = "/dev/psaux"
X_MOUSE_RESOLUTION = 400
X_MOUSE_BUTTONS = 3
USE_XFS = N
LOCAL_APPS = N
RUNLEVEL = 3
#---------------------------------------------------------------------------
--
#
[one]
XSERVER = auto
LOCAL_APPS = N
RUNLEVEL = 5
[two]
XSERVER = auto
LOCAL_APPS = N
RUNLEVEL = 5
[three]
XSERVER = auto
LOCAL_APPS = N
RUNLEVEL = 5
[four]
XSERVER = auto
LOCAL_APPS = N
RUNLEVEL = 5
[five]
XSERVER = auto
LOCAL_APPS = N
RUNLEVEL = 5
[six]
XSERVER = auto
LOCAL_APPS = N
RUNLEVEL = 5
[seven]
XSERVER = auto
LOCAL_APPS = N
RUNLEVEL = 5
#---------------------------------------------------------------------------
--
# dhcpd.conf
dhclient-script dhcp-dns.conf dhcpd.conf.dpkg-dist
dhclient.conf dhcpd.conf
spiderman:~# cat /etc/dhcpd.conf
# Sample configuration file for ISCD dhcpd
#
# Don't forget to set run_dhcpd=1 in /etc/init.d/dhcpd
# once you adjusted this file and copied it to /etc/dhcpd.conf.
#
default-lease-time 21600;
max-lease-time 21600;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option routers 192.168.1.254;
option domain-name-servers 192.168.1.2;
option domain-name "ostc.lan";
option root-path "192.168.1.1:/opt/ltsp/i386";
shared-network WORKSTATIONS {
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.100 192.168.1.200;
}
}
group {
use-host-decl-names on;
option log-servers 192.168.1.1;
next-server 192.168.1.1;
host one {
hardware ethernet 00:00:E2:19:B1:51;
fixed-address 192.168.1.11;
option host-name "one";
filename "/lts/vmlinuz-2.4.19-ltsp-1";
}
host two {
hardware ethernet 00:00:E2:19:67:9B;
fixed-address 192.168.1.12;
filename "/lts/vmlinuz-2.4.19-ltsp-1";
}
host three {
hardware ethernet 00:00:E2:19:BD:0C;
fixed-address 192.168.1.13;
option host-name "three";
filename "/lts/vmlinuz-2.4.19-ltsp-1";
}
host four {
hardware ethernet 00:00:E2:19:F0:42;
fixed-address 192.168.1.14;
filename "/lts/vmlinuz-2.4.19-ltsp-1";
}
host five {
hardware ethernet 00:00:E2:11:57:3F;
fixed-address 192.168.1.15;
filename "/lts/vmlinuz-2.4.19-ltsp-1";
}
host six {
hardware ethernet 00:00:E2:19:EF:B4;
fixed-address 192.168.1.16;
filename "/lts/vmlinuz-2.4.19-ltsp-1";
}
host seven {
hardware ethernet 00:00:E2:11:56:CC;
fixed-address 192.168.1.17;
filename "/lts/vmlinuz-2.4.19-ltsp-1";
}
}
Later
David Kirk