将 TFTP 转发到不同的服务器

将 TFTP 转发到不同的服务器

我有运行 DHCP 的 Ubuntu 14.04,我必须将 TFTP 请求转发到 Windows 部署服务器,我该怎么做?这可能吗?

答案1

您想使用 dhcp.conf 中的 next-server 参数指向 tftp 服务器。

来自 LTSP 条目的一个示例可以完成您想要的操作。

host thinclient {
  hardware ethernet   00:00:00:00:00:00;
  fixed-address       192.168.1.100;
  next-server         192.168.1.1;
  option root-path    "/path/to/root";
  filename            "/path/to/boot/image";
}

在这种情况下,瘦客户端启动时会被赋予 .1.100 地址,并且指向 192.168.1.1 用于 tftp。

相关内容