ubuntu上配置bootp

cat /etc/bootptab


client:\
hd=/tftpboot:\
bf=yaboot:\
ip=192.168.1.5:\
sm=255.255.255.0:\
sa=192.168.1.2:\
ha=5cf3fc5d1978:

cat /etc/xinetd.d/bootp
service bootps
{
        disable           = no
        socket_type = dgram
        protocol = udp
        wait           = yes
        user           = root
        server      = /usr/sbin/bootpd
}


你可能感兴趣的:(ubuntu上配置bootp)