Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 과제
- TPC-C
- 안드로이드
- java
- 원격으로 컴퓨터 끄기
- ontology
- TunesMate
- 건조합니다
- uPnP
- Android
- w3c
- 쉽지요잉
- book
- JNI
- 설명좀 써줍니다
- OSGi
- 서비스
- 앱
- iphone
- 아이폰
- rdf
- 이게 뭐니
- 블로그가
- Benchmark
- XML
- 봄
- Mac
- OWL
- 우분투
- 3GS
Archives
- Today
- Total
infatuation
TFTP 설정 본문
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
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 |