'tftp 서버'에 해당되는 글 2건

  1. 2010.02.05 tftp 설정경로
  2. 2009.08.24 TFTP server for windows
Linux/Ubuntu2010. 2. 5. 10:03
FC6에서는 /etc/xinetd.d/tftp 라는 파일로 존재했다.

$ cat tftp
# default: off
# description: The tftp server serves files using the trivial file transfer \
#       protocol.  The tftp protocol is often used to boot diskless \
#       workstations, download configuration files to network-aware printers, \
#       and to start the installation process for some operating systems.
service tftp
{
        socket_type             = dgram
        protocol                = udp
        wait                    = yes
        user                    = root
        server                  = /usr/sbin/in.tftpd
        server_args             = -s /tftpboot
        disable                 = no
        per_source              = 11
        cps                     = 100 2
        flags                   = IPv4
}

하지만 우분투에서는 xinet 대신 inet을 사용하며,
경로역시 /etc/inetd.conf 로 변경되었다.

$ cat /etc/inetd.conf
#<off># netbios-ssn     stream  tcp     nowait  root    /usr/sbin/tcpd  /usr/sbin/smbd
tftp            dgram   udp     wait    nobody  /usr/sbin/tcpd  /usr/sbin/in.tftpd /srv/tftp

어쨌거나 저쨌거나, 위의 빨간색 굵게 칠해진 부분이 tftp 경로이다.
음.. 기본값이 다르군!
Posted by 구차니
파일방2009. 8. 24. 09:49
윈도우의 IIS는 SMTP / FTP / HTTP는 지원하지만 TFTP는 지원하지 않는다.(머 신버전은 모르겠다)
아무튼 이러한 아쉬운 점을 해결해주는 넘들을 찾아 봤는데
구글에서 상위 랭킹 되는건

freeware로는 tftpd32
30일 제한 freeware로는 WinAgents
그리고 라이센스 확인못한 3com 사의 프로그램이 있다.


tftpd32 의 메인화면

tftpd32 의 설정화면


3cserver 의 메인화면

3cserver 의 설정화면


WinAgent는 30일 무료라서 일단 패스~

[링크 : http://tftpd32.jounin.net/]
[링크 : http://support.3com.com/software/utilities_for_windows_32_bit.htm]
[링크 : http://www.tftp-server.com/tftp-download.html]

'파일방' 카테고리의 다른 글

윤덕용 교수님의 초보자 특별 교실  (0) 2009.10.15
SETI@home lunatics optimizer  (0) 2009.10.14
TeamViewer  (0) 2009.08.03
UFO:AI 임시 번역본  (0) 2009.03.07
Dual time clock  (0) 2009.02.04
Posted by 구차니