hi,
i using tftp+nfs for installing freebsd 8 RC1...

where the problem?
i using tftp+nfs for installing freebsd 8 RC1...

Code:
server# cat /etc/exports
/mnt/freebsd/tftp -maproot=root -network 192.168.100.0 -mask 255.255.255.0
Code:
rc.conf
nfs_server_enable="YES"
nfs_server_flags="-u -t -n 4"
rpcbind_enable="YES"
rpc_lockd_enable="YES"
rpc_statd_enable="YES"
inetd_enable="YES"
Code:
dhcp.conf
host netboot {
hardware ethernet 00:1f:c6:{*_*};
fixed-address 192.168.100.2;
option root-path "192.168.100.100:/mnt/freebsd/tftp";
filename "/boot/pxeboot";
}
Code:
server# showmount -e localhost
Exports list on localhost:
/mnt/freebsd/tftp 192.168.100.0
Code:
server# cat /etc/inetd.conf|grep tftp
tftp dgram udp wait root /usr/libexec/tftpd tftpd -l -s /cdrom
Code:
server# cat /mnt/freebsd/tftp/boot/loader.conf
mfsroot_load="YES"
mfsroot_type="mfs_root"
mfsroot_name="/boot/mfsroot"
autoboot_delay="3"
#vfs.root.mountfrom="ufs:/dev/md0c"
where the problem?