Benutzer-Werkzeuge

Webseiten-Werkzeuge


os4e_-_2015_-_fortgeschrittene

Dies ist eine alte Version des Dokuments!


os4e - 2015 - Fortgeschrittene

WLAN

SSID: WEIZ
Passwort: open23open23

Montag, 13. Juli 2015

Vormittag

  • Umsetzung Schulnetzwerk
  • Aktuelle Möglichkeiten
    • Microsoft
    • s4e/d4e
    • eigene Lösung
    • keine Lösung
    • BYOD

PXE Server selbst aufsetzen für Netzwerkstart

  • DHCP Server → TFTP Server → NFS/Samba/Web Server
/etc/dhcpd.conf
ddns-update-style none;
 
# eth2 unterrichtsnetz
subnet 192.168.100.0 netmask 255.255.254.0 {
  authoritative;
  range 192.168.101.1 192.168.101.254;
  default-lease-time 14400;
  max-lease-time 172800;
 
  option broadcast-address 192.168.101.255;
  option routers 192.168.100.254;
  option subnet-mask 255.255.254.0;
  option netbios-name-servers 192.168.100.254;
  option netbios-node-type 8;
  option domain-name-servers 193.170.221.1, 8.8.4.4, 8.8.8.8;
  option ntp-servers 193.170.221.1;
  # pxe 
  filename "pxelinux.0";
  next-server 192.168.100.14;
}
http://d-i.debian.org/daily-images/amd64/daily/netboot/netboot.tar.gz
  • Entpacken auf TFTP Server nach /srv/tftpboot:
  • pxelinux.0 Datei muss vorhanden sein und pxelinux.cfg als Ordner mit der Datei "default" und folgendem Inhalt:
/srv/tftpboot/pxelinux.cfg/default
PROMPT 0
#ALLOWOPTIONS 0
TIMEOUT 100
 
MENU TITLE Willkommen!
 
LABEL harddisk
 localboot 0x80
 
LABEL Debian 32-bit
 MENU LABEL Debian 32-bit installieren
 KERNEL menu.c32
 APPEND debian-installer/i386/pxelinux.cfg/default
 
LABEL Debian 64-bit
 MENU LABEL Debian 64-bit installieren
 KERNEL menu.c32
 APPEND debian-installer/amd64/pxelinux.cfg/default
 
LABEL knoppix-dvd-32
 MENU LABEL KNOPPIX DVD
 KERNEL /knoppix/tftpboot/linux
 APPEND nfsdir=192.168.100.14:/daten/tftpboot/knoppix dhcp lang=de ramdisk_size=100000 init=/sbin/init apm=power-off nomce loglevel=1 initrd=/knoppix/tftpboot/miniroot.gz libata.force=noncq vt.default_utf9=0 hpsa.hpsa_allow_any=1 BOOT_IMAGE=knoppix

Nachmittag

  • Installation server4education
  • Konfiguration server4education
  • Installation desktop4education NEU

Dienstag, 14. Juli 2015

Vormittag

Nachmittag

  • WLAN
    • Planung und Umsetzung
    • Lösungen: Ubiquiti UniFi APs usw.

Mittwoch, 15. Juli 2015

Vormittag

  • FOG, Clonezilla, …

Nachmittag

  • Netzwerkanalyse, Recovery, Troubleshooting
os4e_-_2015_-_fortgeschrittene.1436776853.txt.gz · Zuletzt geändert: 2015/07/13 10:40 von admin