实验报告
实验一
实验名称:搭建PXEServer实现网络安装
步骤1:基本环境
整个实验来说,我们远程装系统需要用到网络那么就得分配iP,需要dhcp服务器,同时就得传输相关开机引导文件就需要tftp服务器,我们的系统文件需要放到一个地方让客户机来访问然后才能装,这里用的是nfs服务器,这样基本环节就有了。
准备两台linux一台配置为pxe服务器,一台裸机用来安装需在同一网段,且将裸机设为网卡启动
首先为主机配置IP
[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0
1 # Intel Corporation 82545EM GigabitEthernet Controller (Copper)
…
2DEVICE=eth0
3BOOTPROTO=none
4ONBOOT=yes
5HWADDR=00:0c:29:c2:a1:79
6IPADDR=192.168.4.253
7NETMASK=255.255.255.0
~
[root@localhost ~]# service network restart
接下来配置yum
首先将光盘挂载
然后开始配置
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# ls
rhel-debuginfo.repo
[root@localhost yum.repos.d]# cprhel-debuginfo.repo server.repo
[root@localhost yum.repos.d]# vim server.repo
…
[rhel-server]
name=Red Hat server
baseurl=file:///sc/cd/Server
enabled=1
gpgcheck=0
#gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
存退启动yum
步骤2:安装并配置dhcp
[root@localhost yum.repos.d]# yum -y installdhcp
…
Installed:
dhcp.x86_64 12:3.0.5-31.el5_8.1
Complete!
…
接下来配置dhcp
[root@localhost yum.repos.d]# vim/etc/dhcpd.conf
学会走捷径末行模式导入模板看见用不到的删之
:r /usr/share/doc/dhcp*/dhcpd.conf.sample
最后配置如下
1ddns-update-style interim;
2next-server 192.168.4.253;
3filename "pxelinux.0";
4subnet 192.168.4.0 netmask 255.255.255.0 {
5 option subnet-mask 255.255.255.0;
6 option domain-name "tarena.com";
7 optiondomain-name-servers 192.168.4.253;
8 range dynamic-bootp 192.168.4.10192.168.4.20;
9 default-lease-time21600;
10 max-lease-time 43200;
11 }
~
[root@localhost yum.repos.d]# service dhcpdrestart
启动 dhcpd: [确定]
[root@localhost yum.repos.d]# chkconfigdhcpd on
[root@localhost yum.repos.d]#
这样就配置好了dhcp
步骤3:配置tftp服务器
经检查,tftp服务已经安装,这里直接配置
[root@localhost ~]# vim /etc/xinetd.d/tftp
…
14 disable = no
…
[root@localhost ~]# service xinetd restart
停止 xinetd: [确定]
启动 xinetd: [确定]
[root@localhost ~]# chkconfig xinetd on
[root@localhost ~]#
这样tftp也已配置下面我们将系统启动所需的文件拷贝过来
步骤4:复制所需文件
[root@localhost ~]# cd/misc/cd/p_w_picpaths/pxeboot/
[root@localhost pxeboot]# cp initrd.imgvmlinuz /tftpboot/
[root@localhost pxeboot]#
[root@localhost pxeboot]# cd/usr/share/syslinux/
[root@localhost syslinux]# cp pxelinux.0/tftpboot/
[root@localhost ~]# mkdir/tftpboot/pxelinux.cfg
[root@localhost ~]# cp/misc/cd/isolinux/isolinux.cfg /tftpboot/pxelinux.cfg/default
如此就准备好了启动引导文件
[root@localhost tftpboot]# ls
initrd.img linux-install pxelinux.0 pxelinux.cfg vmlinuz
[root@localhost tftpboot]# ls pxelinux.cfg/
default
[root@localhost tftpboot]#
如果这样就认为结束了就太天真了,我们的系统在哪呢,下面通过nfs将系统光盘文件共享给客户机首先将其拷贝到随便一个地方
[root@localhost ~]# mkdir /home/iso
[root@localhost ~]# cp -rf /misc/cd/home/iso
[root@localhost ~]# ls /home/iso
[root@localhost ~]# vim /etc/exports
/home/rom/cd *(ro)
[root@localhost ~]# service nfs restart
[root@localhost ~]# chkconfig nfs on
完成后打开客户机进行安装
步骤5:测试
测试结果没有问题