Open main menu

CDOT Wiki β

Changes

Set up FatClient Configuration

919 bytes added, 06:17, 22 April 2011
no edit summary
# Open and terminal (shell) and login as root.
# Edit the ''dhcpd.conf'' file by issuing the command: '''<tt>vi /etc/ltsp/dhcpd.conf</tt>''' and ensure that the following command line exists, otherwise enter it: <br />'''<tt></tt>option routers 192.168.1.254;'''
# Add the line: '''option domain-name-servers 192.168.0.1;'''
# Refer below to our example of the dhcpd.conf file:
 
 
#
# Default LTSP dhcpd.conf config file.
#
authoritative;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.20 192.168.1.250;
# option domain-name "example.com";
option domain-name-servers 192.168.0.1;
option broadcast-address 192.168.1.255;
# option routers 192.168.1.1;
option routers 192.168.1.254;
# next-server 192.168.0.1;
# get-lease-hostnames true;
option subnet-mask 255.255.255.0;
# option root-path "/opt/ltsp/i386";
option root-path "/opt/ltsp/amd64";
if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
# filename "/ltsp/i386/pxelinux.0";
filename "/ltsp/amd64/pxelinux.0";
} else {
# filename "/ltsp/i386/nbi.img";
filename "/ltsp/amd64/nbi.img";
}
}
 
 
# Save and exit the editor.
# Restart the dhcpd server by issuing the command: '''sudo /etc/init.d/dhcp3-server restart'''
13,420
edits