본문 바로가기

EZ-S3C6410/1. 개발환경

tftp 설정

* tftp 다운

~$ sudo apt-get install xinetd tftp tftpd

 

* 파일 설정

~$ sudo vi /etc/xinetd.d/tftp

 

파일 내용 추가

service tftp
{
    socket_type     = dgram
    protocol        = udp
    wait            = yes
    user            = root
    server          = /usr/sbin/in.tftpd
    server_args     = -s /home/santa/falinux/s3c6410/tftp
    disable         = no
    per_source      = 11
    cps             = 100 2
    flags           = IPv4
}

 

* 폴더 접근권한 설정

~$ sudo chmod 777 /home/santa/falinux/s3c6410/tftp

 

* tftp 기동

~$ sudo /etc/init.d/xinetd restart

 

* 서버 구동 확인 방법

~$ cd /hoem/santa/s3c6410/tftp

~$ vim test.txt

 

~$ cd /hoem/santa/s3c6410/tmp

~$ tftp localhost

tftp>get test.txt

...

Received ......

...

tftp>quit

~$ ll

확인 끝.

 

 

'EZ-S3C6410 > 1. 개발환경' 카테고리의 다른 글

nfs 서버 설정  (0) 2013.03.28
간혹 있을 우분투 쉘 프롬프트 변경  (0) 2013.03.28
삼바설정  (0) 2013.03.28
텔넷 연결 하기  (0) 2013.03.28
네트워킹 강제 설정  (0) 2013.03.28