来自虚拟机的Windows PXE

时间:2019-04-07 05:42:06

标签: windows ubuntu virtualbox dhcp

我正在使用Ubuntu作为PC的dhcp服务器,这些PC将充当PXE客户端,我想通过VirtualBox的Windows映像为这些客户端提供服务。

这是用于运行Ubuntu 16.04和VirtualBox的Linux服务器。 运行的虚拟机是Windows 10。 我的目标是打开客户端并登录Windows。

dhpcd文件如下:

authoritative;

subnet 192.168.1.0 netmask 255.255.255.0 {
    range 192.168.1.20 192.168.1.250;
    option domain-name "example.com";
    option domain-name-servers 192.168.1.1;
    option broadcast-address 192.168.1.255;
    option routers 192.168.1.1;
    next-server 192.168.1.2;
#    get-lease-hostnames true;
    option subnet-mask 255.255.255.0;
    option root-path "/opt/ltsp/i386";
    if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
        filename "/ltsp/i386/pxelinux.0";
    } else {
        filename "/ltsp/i386/nbi.img";
    }
}

我似乎找不到一种创建和调用将Windows虚拟机提供给客户端所需的文件的方法。

0 个答案:

没有答案