|
|
发表于 2007-5-24 00:12:24
|
显示全部楼层
next-server 呢?還有很多其他的地方也要設。
下面是我的 sample,你参考一下:
- default-lease-time 1209600;
- max-lease-time 1296000;
- ddns-update-style none; ddns-updates off;
- allow booting;
- option domain-name "test.cxm";
- option domain-name-servers 192.168.100.254, 168.95.1.1;
- option routers 192.168.100.254;
- # define rules to identify DHCP Requests from PXE and Etherboot clients.
- #class "pxe" {
- # match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
- #}
- #class "etherboot" {
- # match if substring (option vendor-class-identifier, 0, 9) = "Etherboot";
- #}
- subnet 192.168.100.0 netmask 255.255.255.0 {
- option broadcast-address 192.168.100.255;
- pool {
- server-name "gw.test.cxm";
- next-server 192.168.100.254; # in case your local DNS only handles
- # unqualified domains keep trailing '.'
- filename "pxelinux.0";
- # allow members of "pxe";
- # allow members of "etherboot"; # allow etherboot, too
- range 192.168.100.101 192.168.100.211;
- }
- }
复制代码
或是参考:
http://en.opensuse.org/SuSE_install_with_PXE_boot |
|