Wie wird ein ThinClient installiert?

Steffen Krapp s.krapp at web.de
Don Jan 12 21:09:17 GMT 2006


Hallo,

nachdem die Sache mit den ThinClients mangels Zeit recht lange liegen
geblieben ist, habe ich mich jetzt wieder dran gesetzt. Leider ohne
Erfolg. Ich habe mich an die Anleitung unter
http://wiki.edubuntu.org/LTSPServerSetup?action=show&redirect=Howto-setup-LTSP-server-on-Ubuntu-Breezy
gehalten. Das Netzwerk ist wie folgt aufgebaut:

DSL-Modem -> Router (192.168.0.1) -> 3 Rechner mit statischer IP, 2mal
WinXP, einer edubuntu (mit 2 eingebauten Netzwerkarten)
Beim Router ist DHCP deaktiviert.

Die ThinClients sind mit einem Switch verbunden und die zweite
Netzwerkarte des edubuntu-Rechners ist auch mit diesem Switch verbunden.

Trotzdem finden die ThinClients über Netzwerk kein Betriebssystem zum
Booten.

Ich hänge die benötigten Konfigurationsdateien ans Ende der Mail.

Vielen Dank für eure Hilfe,
Steffen


/etc/ltsp/dhcp.conf:
---snipp---
authoritative;

subnet 192.168.100.0 netmask 255.255.255.0 {
  range 192.168.100.102 192.168.100.150;
  option domain-name "meine.tolle.domain.de";
  option domain-name-servers 192.168.100.101
  option broadcast-address 192.168.100.255;
  option routers 192.168.100.101;
  option subnet-mask 255.255.255.0;

  filename "/ltsp/pxelinux.0";
  option root-path "/opt/ltsp/i386";
}
---snipp---

/etc/network/interfaces:
---snipp---
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
	script grep
	map eth0

# The primary network interface

iface eth0 inet static
address 192.168.0.201
netmask 255.255.255.0
gateway 192.168.0.1

auto eth0

auto eth1
iface eth1 inet static
	address 192.168.100.101
	netmask 255.255.255.0
	broadcast 192.168.100.255
	network 192.168.100.0
	up iptables-restore < /etc/ltsp/nat.conf
---snipp---

/etc/network/options:
---snipp---
ip_forward=yes
spoofprotect=yes
syncookies=no
---snipp---

/etc/ltsp/nat.conf
---snipp---
# Generated by iptables-save v1.3.1 on Thu Jan 12 19:26:00 2006
*nat
:PREROUTING ACCEPT [0:0]
:POSTROUTING ACCEPT [1:69]
:OUTPUT ACCEPT [1:69]
-A POSTROUTING -s 192.168.100.0/255.255.255.0 -j MASQUERADE
COMMIT
# Completed on Thu Jan 12 19:26:00 2006
---snipp---