Connecting Life and Technology

기술과 일상 사이를 잇는 워킹맘 기획자의 큐레이션( A Working Mom's Curation)

Study(아카이브)/OS&Linux

TFTP 설정

zzzoey 2009. 6. 8. 21:58
반응형
1) tftp가 설치되어 있는지 아닌지 알려면 rpm -qa | grep tftp

2) 설치가 되어 있지 않아서 다운 받는다면

   # yum install tftp 
   # yum install ftfp-server

3) 설치 완료 되면

   # vi /etc/xinetd.d/tftp

service tftp

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

        disable = yes --> no 로 변경

        per_source = 11
        cps = 100 2
        flags = IPv4
}

   # service xinetd restart


 4) 동작 확인하기

   # netstat -al | grep bootp
   # netstat -al | grep tftp

'Study(아카이브) > OS&Linux' 카테고리의 다른 글

OSGi and UPnP  (0) 2009.06.10
vi 설정  (0) 2009.06.08
리눅스 압축파일 사용 명령어  (0) 2009.06.08
QT 프로그래밍  (0) 2009.05.14