LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   Linux Termina Server (https://www.linuxquestions.org/questions/linux-networking-3/linux-termina-server-200897/)

thejuoos 07-04-2004 12:51 AM

Linux Terminal Server
 
hello all,

I would like to install linux terminal server in to my machine. I have a system with ip 192.168.10.241 which i will keep as the server.



i have made the dhcpd.conf file as follows

# Sample configuration file for ISCD dhcpd
#
# Make changes to this file and copy it to /etc/dhcpd.conf
#
ddns-update-style none;

default-lease-time 21600;
max-lease-time 21600;

option subnet-mask 255.255.252.0;
option broadcast-address 192.168.10.255;
option routers 192.168.10.241;
option domain-name-servers 192.168.10.241;
option domain-name "ltsp.org";
option root-path "192.168.10.241:/opt/ltsp/i386";



shared-network WORKSTATIONS {
subnet 192.168.10.0 netmask 255.255.255.0 {
deny unknown-clients;
}
}

group {
use-host-decl-names on;
option log-servers 192.168.0.254;

host ws001 {
hardware ethernet 00:E0:06:E8:00:84;
fixed-address 192.168.0.1;
filename "/lts/vmlinuz-2.4.19-ltsp-1";
## option option-128 e4:45:74:68:00:00; #This is NOT a MAC address
## option option-129 "NIC=ne IO=0x300";
}
host ws002{
hardware ethernet 00:0C:6E:6D:FC:C7;
fixed-address 192.168.10.131;
filename "/lts/vmlinuz-2.4.9-ltsp-6";
}
}


will this configuration work properly

i would like to know as well what is option-router and option broadcast-address is

RobertP 07-04-2004 09:53 AM

Your question is very difficult for humans. It is best answered by machines. Try it.

You proposal looks like you made it up from some documentation. You might find more info from some working examples. I list my dhcpd.conf in an article I wrote on LTSP in a computer lab. My system used a single NIC and had other DHCP servers from that other OS... You need to be careful that two or more servers are not fighting each other. One thing that works is using port 1067 for the LTSP stuff and leaving that other OS to 67. You can get bootloaders that do that from rom-o-matic.net See the .pdf at the bottom of my webpage for another method checking flag bits.

I used k12ltsp.org . It is designed for teachers, so anybody should be able to install it. ;-)

option-routers give the DHCP server information about routers to pass to the client. Typically, your server will not only supply an IP address tothe client, but DNS, gateway, files to load, etc.

LTSP is great. It allows one to keep old machines running until the fans fall off, and everyone gets to run on a hot new machine. With today's hardware prices, it can be a great bargain. You can put all your money in one state of the art machine. 100 mbits/s is very helpful. It speeds booting and reduces hesitation. If you are very serious, gigabit is becoming reasonable.

thejuoos 07-04-2004 11:58 AM

hello RobertP
thanks for ur help i have now read the documentation u gave
with regards
thej


All times are GMT -5. The time now is 05:33 PM.