Intel Deployment IDA 5.0 User Guide - Page 87

subnet 192.168.5.0 netmask 255.255.255.0

Page 87 highlights

Intel® Deployment Assistant v5.0 User Guide If multi-server cloning image contains OS installation, it also needs network file server to access the OS installation content. Network file server includes NFS for Linux* OS installation, CIFS (SMB) for Windows* OS installation. The file server could be a standalone server in network or NFS and samba service on the same server with PXE service. Additional NFS and samba services may need to be installed. - nfs-utils-1.0.9-42 - nfs-utils-lib-1.0.8-7.6.el5 - portmap-4.0-65.2.2.1 - samba-common-3.0.33-3.14 - samba-client-3.0.33-3.14 - samba-3.0.33-3.14 3. Setup static IP and hostname for PXE server, for example: IP=192.168.5.1, hostname =pxeserver.pxe.com 4. Setup DHCP service - Run the following command to ensure that DHCP server can be started at each boot chkconfig --level 345 dhcpd on - A sample DHCP server configuration file "dhcpd.conf" is located at /usr/share/doc/dhcp-3.0.5/dhcpd.conf.sample. Copy this sample to /etc/dhcpd.conf. - Edit /etc/dhcpd.conf. The following is an example for dhcpd.conf, and item "next-server 192.168.5.1" defines the tftp server address, item "filename "pxelinux.0" " indicates the first file that PXE client download from tftp server. ddns-update-style interim; #ignore client-updates subnet 192.168.5.0 netmask 255.255.255.0 { range 192.168.5.100 192.168.5.150; default-lease-time 86400; max-lease-time 86400; option ip-forwarding off; option broadcast-address 192.168.5.255; option subnet-mask 255.255.255.0; option ntp-servers 192.168.5.100; option domain-name-servers 192.168.5.100; option netbios-name-servers 192.168.5.100; next-server 192.168.5.1; filename "pxelinux.0"; } 78

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96

Intel
®
Deployment Assistant v5.0 User Guide
78
If multi-server cloning image contains OS installation, it also needs network file server
to access the OS installation content. Network file server includes NFS for Linux* OS
installation, CIFS (SMB) for Windows* OS installation. The file server could be a
standalone server in network or NFS and samba service on the same server with PXE
service.
Additional NFS and samba services may need to be installed.
-
nfs-utils-1.0.9-42
-
nfs-utils-lib-1.0.8-7.6.el5
-
portmap-4.0-65.2.2.1
-
samba-common-3.0.33-3.14
-
samba-client-3.0.33-3.14
-
samba-3.0.33-3.14
3.
Setup static IP and hostname for PXE server, for example: IP=192.168.5.1,
hostname =pxeserver.pxe.com
4.
Setup DHCP service
-
Run the following command to ensure that DHCP server can be started at each
boot
chkconfig
-level 345 dhcpd on
-
A sample DHCP server configuration file “dhcpd.conf” is located at
/usr/share/doc/dhcp-3.0.5/dhcpd.conf.sample. Copy this sample to
/etc/dhcpd.conf.
-
Edit /etc/dhcpd.conf. The following is an example for dhcpd.conf, and item
“next
-
server 192.168.5.1” defines the tftp server address, item “filename
“pxelinux.0” ” indicates the first file that PXE client download from tftp server.
ddns-update-style interim;
#ignore client-updates
subnet 192.168.5.0 netmask 255.255.255.0 {
range 192.168.5.100 192.168.5.150;
default-lease-time 86400;
max-lease-time 86400;
option ip-forwarding off;
option broadcast-address 192.168.5.255;
option subnet-mask 255.255.255.0;
option ntp-servers 192.168.5.100;
option domain-name-servers 192.168.5.100;
option netbios-name-servers 192.168.5.100;
next-server 192.168.5.1;
filename "pxelinux.0";
}