R&D/OS

Linux tftpd 사용하기

sunshout 2008. 10. 15. 10:03
참고 자료: http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch16_:_Telnet,_TFTP,_and_xinetd#Debian_.2F_Ubuntu_2

파일 위치: /etc/xinetd.d/tftp

tftp (Language : text)
service tftp
{
       protocol = udp
       port = 69
       socket_type = dgram
       wait = yes
       user = nobody
       server = /usr/sbin/in.tftpd
       server_args = -s /srv/tftp
       disable = no
}