DHCP及自动化安装Linux

主机IP配置:

静态指定 静态IP
动态获取: bootp:bootprotocol MAC与IP一一静态对应
DHCP: Dynamic Host Configuration Protocol 动态主机配置协议基于UTP协议

主要用途:自动化分配IP地址,实现集中管理,解决IP地址不足的问题。

DHCP的4种报文
 DHCP DISCOVER OFFER REQUEST ACK
申请过程:
 Client--> DHCPDISCOVER
 DHCPOFFER <-- Server Client--> DCHPREQUEST
 DCHPACK <-- Server Client--> DHCPREQUEST
 DHCPACK <-- Server 续租IP: 50% :租赁时间达到50%时来续租,刚向DHCP服务器发向新的DHCPREQUEST请求。如果dhcp服务没有拒绝的理由,则回应DHCPACK信息。当DHCP客户端收到该应答信息后,就重新开始新的租用周期 87.5%:如果之前DHCP Server没有回应续租请求,等到租约期的7/8时,主机会再发送一次广播请求 Linux DHCP协议的实现程序:dhcp, dnsmasq(dhcp,dns) DhcpServer /usr/sbin/dhcpd /etc/dhcp/dhcpd.conf--> /etc/rc.d/init.d/dhcpd
 /etc/dhcp/dhcpd6.conf--> /etc/rc.d/init.d/dhcpd6
 /usr/sbin/dhcrelay
 /etc/rc.d/init.d/dhcrelay
 dhcpserver:67/udp
 dhcpclient: 68/udp
 dhcpv6 client:546/udp
 vDhcpclient
 地址分配记录:/var/lib/dhcpd/dhcpd.leases

dhclient 自动获取的IP信息:/var/lib/dhclient

配置示例
 option domain-name "magedu.com"; //域名
 option domain-name-servers 192.168.0.1,8.8.8.8; //指定DNS服务器
 default-lease-time 86400;
 max-lease-time 86400;
 subnet 192.168.100.0 netmask 255.255.255.0 { //网段
 range 192.168.100.1 192.168.100.200; //可用IP
 option routers 192.168.100.1; //默认网关
 }
 DHCP服务器由路由器隔开,可在路由器上配置
 Router1#configure terminal
 Router1(config)#interface Ethernet0
 Router1(config-if)#ip helper-address 172.25.1.1
 Router1(config-if)#ip helper-address 172.25.10.7
 Router1(config-if)#end
 Router1#
实验:基于网络PXE自动化安装CentOS 7

远程客户端计算机启动,由于BIOS设置了网卡启动,所以网卡PXE ROM中的程序被调入内存执行。首先,客户端在网络中寻找DHCP服务器,然后请求一个IP地址;同时DHCP服务器联系到TFTP服务器为此客户端发送一个bootstrap(引导程序)。客户端收到bootstrap(文件pxelinux.0)后执行,bootstrap会请求TFTP传送bootstrap的配置文件(pxelinux.cfg)。收到后读配置文件。根据配置文件内容和客户情况,客户端请求TFTP传送内核映象文件(vmlinuz)和根文件系统文件(initrd.img)。最后启动内核。这就是一个完整的pxe构建过程。然而要使网卡启动后再继续网络安装系统,则最后还需要FTP服务将系统所需安装文件放置FTP相应目录中进行传输安装

1安装前准备:关闭防火墙和SELINUX,DHCP服务器静态IP
2安装相关软件包
yum install httpd tftp-server dhcp syslinux
3 配置文件共享服务和yum源
systemctl enable httpd
systemctl start httpd
mkdir /var/www/html/centos/7
mount /dev/sr0 /var/www/html/centos/7
4 准备kickstart文件
cp /root/anaconda-ks.cfg /var/www/html/ksdir/myks.cfg
chmod +r /var/www/html/ksdir/myks.cfg
vim /var/www/html/ksdir/myks.cfg
cat myks.cfg
#version=DEVEL
# System authorization information
auth –enableshadow –passalgo=sha512
# Use CDROM installation media
url –url=http://192.168.25.107/centos/7
# Use graphical install
text
# Run the Setup Agent on first boot
firstboot –enable
ignoredisk –only-use=sda
# Keyboard layouts
keyboard –vckeymap=us –xlayouts=’us’
# System language
lang en_US.UTF-8

# Network information
network –bootproto=dhcp –device=ens33 –onboot=on –ipv6=auto –activate
network –hostname=centos7.magedu.com

# Root password
rootpw –iscrypted $6$Z7LBEUpwj3iQdYZ3$olYQ.Lj1xV2VAGS1UiNflKF0oMGip3b6tU9QFcp0i2JBjwKlY/Yaexul57NHpIJc.Y2V1hWAOueaqwjuWDGMk0
# System services
services –disabled=”chronyd”
# System timezone
timezone Asia/Shanghai –isUtc –nontp
user –name=wang –password=$6$v.VphW/puRblcrFB$uaSrdEhGAwMXap27WIKTn5lyOOfoFyB/SNxyyL3og6s9/VQoAKoL2KQjKmeYFmoYTuYkSNL7BBxgbJzeryKr9. –iscrypted –gecos=”wang”
# X Window System configuration information
xconfig –startxonboot
# System bootloader configuration
bootloader –append=” crashkernel=auto” –location=mbr –boot-drive=sda
# Partition clearing information
zerombr
clearpart –all
# Disk partitioning information
part swap –fstype=”swap” –ondisk=sda –size=2048
part /app –fstype=”xfs” –ondisk=sda –size=51200
part / –fstype=”xfs” –ondisk=sda –size=51200
part /boot –fstype=”xfs” –ondisk=sda –size=1024
reboot
%packages

@core
@desktop-debugging
@dial-up
@fonts
@gnome-desktop
@guest-agents
@guest-desktop-agents
@hardware-monitoring
@input-methods
@internet-browser
@multimedia
@print-client
@x11
kexec-tools

%end

%addon com_redhat_kdump –enable –reserve-mb=’auto’

%end

%anaconda
pwpolicy root –minlen=6 –minquality=50 –notstrict –nochanges –notempty
pwpolicy user –minlen=6 –minquality=50 –notstrict –nochanges –notempty
pwpolicy luks –minlen=6 –minquality=50 –notstrict –nochanges –notempty
%end
%post
systemctl enable autofs
rm -rf /etc/yum.repos.d/*
cat > /etc/yum.repos.d/base.repo <<eof
[base]
name=base
baseurl=file:///misc/cd
gpgcheck=0
eof
%end

5配置tftp服务
systemctl enable tftp.socket
systemctl start tftp.socket

6配置DHCP服务
vim /etc/dhcp/dhcpd.conf
option domain-name “example.com”;
default-lease-time 600;
max-lease-time 7200;
subnet 192.168.25.0 netmask 255.255.255.0 {
range 192.168.25.50 192.168.25.100;
next-server 192.168.25.107;
filename “pxelinux.0”;
}
systemctl enable dhcpd
systemctl start dhcpd

7 准备PXE相关文件
mkdir/var/lib/tftpboot/pxelinux.cfg/
cp/usr/share/syslinux/{pxelinux.0,menu.c32} /var/lib/tftpboot/
cp/misc/cd/isolinux/{vmlinuz,initrd.img} /var/lib/tftpboot/
cp/misc/cd/isolinux/isolinux.cfg /var/lib/tftpboot/pxelinux.cfg/default

8 制作启动菜单文件
vim /var/lib/tftpboot/pxelinux.cfg/default
default menu.c32
timeout 600

menu title CentOS Linux 7 PXE Install

label desktop
menu label Auto Install CentOS Linux 7 ^Desktop
kernel vmlinuz
append initrd=initrd.img ks=http://192.168.25.107/ksdir/myks.cfg

label mini
menu label Auto Install CentOS Linux 7 M^ini
kernel vmlinuz
append initrd=initrd.img ks=http://192.168.25.107/ksdir/ks7-2.cfg

label manual
menu label ^Manual Install CentOS Linux 7
kernel vmlinuz
append initrd=initrd.img inst.repo=http://192.168.25.107/centos/7

label local
menu default
menu label Boot from ^local drive
localboot 0xffff
menu end

本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/87346

(0)
cuicui
上一篇 2017-09-18 11:39
下一篇 2017-09-18 14:39

相关推荐

  • WEB 常见故障与处理

    一、应用故障 HTTP 502 故障 502 Bad Gateway 故障检测: 首先定位到前端故障服务器节点,在前端服务器(Telnet)上访问后端服务端口响应时间。如发现响应时间超时>10s。说明后端应用程序出现故障。需要到后端服务器查看,并查明情况。 PS:HTTP 502 Bad Gateway 故障一般分为以下2种情况: 网络问题:前端无法连…

    2016-06-03
  • 第三周博客作业

    who useradd usermod groupadd

    Linux干货 2017-12-17
  • http协议基础(一)

    web服务:      Apache      Nginx      LVS      http协议 网站运维:      web站点      游戏网站web服务 高性能,高可用…

    Linux干货 2017-04-18
  • shell脚本编程基础

    ★ 编程基础★ 脚本基本格式★ 变量★ 运算★ 条件测试★ 配置用户环境一.编程基础  程序:指令+数据  程序编程风格:      过程式:以指令为中心,数据服务于指令      对象式:以数据为中心,指令服务于数据  shell程序:提供了编程能力,解释执行&nbs…

    Linux干货 2017-03-28
  • 脚本练习

      1、写一个脚本,使用ping命令探测10.1.8.1-10.1.8.10之间所有主机的在线状态,在线的主机使用绿色显示,不在线的主机使用红色显示。     #!/bin/bash     #Test host whether onlin…

    Linux干货 2016-12-18
  • rpm包管理

    linux程序包管理 RPM ================================================================== #ldd 查看二进制程序调用的动态链接库 #ldconfig  -p  显示本机已缓存的所有可用库文件     dll: Dynamic…

    Linux干货 2016-08-18