zoukankan      html  css  js  c++  java
  • Ubuntu pxe support uefi

    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";
    }

    参考资料:

    https://www.centos.org/docs/5/html/Installation_Guide-en-US/s1-netboot-tftp.html

    Legacy PXE

    https://linux.cn/article-6553-1.html?amputm_medium=rss

    Fedora

    estcase UEFI pxeboot

    https://fedoraproject.org/wiki/QA:Testcase_UEFI_pxeboot

  • 相关阅读:
    关于方差所引发的遐想
    POJ 1390 Blocks
    POJ 1722 SUBTRACT
    BZOJ 1901 Dynamic Rankings
    关于Shine-hale
    ACM恢复训练(一)最短路
    CSP退役记
    校内模拟赛(三)(9.24)
    校内模拟赛(二)(9.12)
    校内模拟赛(一)(2019.9.10)
  • 原文地址:https://www.cnblogs.com/boowii/p/6097328.html
Copyright © 2011-2022 走看看