Linux tftp 환경 설정

2018. 3. 10. 01:59Linux/etc

tftp 환경 설정.

-xinetd 설치 후 설정 경우.
#apt-get install xinetd tftpd tftp
#vi /etc/xinetd.d/tftp

service tftp
{
    socket_type    = dgram
    protocol         = udp
    wait              = yes
    user             = root
    server           = /usr/sbin/in.tftpd
    server_args    = -s /tftpboot
    disable          = no


#/etc/init.d/xinetd restart
#netstat -a | grep tftp
udp        0      0 *:tftp                  *:*
#tftp localhost
tftp>get "연결한 폴더에 있는파일"


inetd 경우.
#apt-get install tftpd tftp
#vi /etc/inetd.conf
-inetd.conf파일 내부에서 다음과 같이 바꾼다.
tftp    dgram    udp    wait    root    /usr/sbin/tcpd    in.tftpd    <연결할 폴더>

#killall -HUP inetd
#netstat -a | grep tftp
udp        0      0 *:tftp                  *:*
#tftp localhost
tftp>get "연결한 폴더에 있는파일"

'Linux > etc' 카테고리의 다른 글

Ubuntu Synergy 설치  (0) 2019.04.01
라즈베리 파이 제로 W(Raspberry Pi Zero W)  (0) 2018.12.21
라즈베리 파이 3B+(Raspberry Pi 3B+)  (0) 2018.12.18
라즈베리 파이 제로 W(Raspberry Pi Zero W)  (0) 2018.12.12
Linux nfs 환경 설정  (0) 2018.03.10