码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu pxe support uefi

时间:2016-11-24 15:40:15      阅读:643      评论:0      收藏:0      [点我收藏+]

标签:pre   ring   substring   ubuntu   url   router   next   cas   name   

http://djmimi-linux.blogspot.com/

Step 4. Modify DHCP service configuration
#vi /etc/dhcp/dhcpd.conf                                                                        
default-lease-time 14400;
max-lease-time 86400;
ddns-update-style none;
subnet 192.168.10.0 netmask 255.255.255.0 {
  option broadcast-address 192.168.10.255;
  option routers 192.168.10.1;
  range 192.168.10.2 192.168.10.253;
  next-server 192.168.10.1;
  if substring (option vendor-class-identifier, 15, 5) = "00007" {
    filename "/BOOTX64.efi";
  }
  else  {
    filename "/pxelinux.0";
  }
}
#vi /etc/dhcp/dhcpd6.conf                                                                      
allow booting;
allow bootp;
ddns-update-style none;
default-lease-time 2592000;
preferred-lifetime 604800;
option dhcp-renewal-time 3600;
option dhcp-rebinding-time 7200;
option dhcp6.bootfile-url code 59 = string;
allow leasequery;
option dhcp6.info-refresh-time 21600;
subnet6 2001::/112 {
        range6 2001::1001 2001::fffe;
        option dhcp6.bootfile-url "tftp://[2001::1]/bootx64.efi";
}
#service dhcpd start                                                                              
#service dhcpd6 start    

Ubuntu pxe support uefi

标签:pre   ring   substring   ubuntu   url   router   next   cas   name   

原文地址:http://www.cnblogs.com/boowii/p/6097328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!