본문 바로가기

운영체제

리눅스 tftp 서버 구축

728x90

server CentOS67

 

# yum install tftp
# yum install tftp-server xinetd

 

# vi /etc/xineted.d/tftp

disable, server_args 수정

 

 

# mkdir /tftpboot 생성
# service xinetd restart

 

/tftpboot에 test.txt 파일 생성

 

/mina 디렉터리 생성 후 가져오기 

 

 

 

Client CentOS67_64m (mini)

 

# yum -y install tftp

 

 

!!! 클라이언트와 서버 모두 방화벽 꼭 차단하기 !!!

# service iptables stop

 

# vi /etc/sysconfig/selinux  

SELINUX=disabled 

 

# setatus //명령어로 SELinux가 꺼져있는지 확인 

# sestatus
SELinux status:                 disabled

728x90

'운영체제' 카테고리의 다른 글

[centOS7] Nginx 설치  (0) 2021.07.16
ssl  (0) 2021.07.09
vyos로 Router 구축하기  (0) 2021.07.08
Linux 명령어 su와 sudo  (0) 2021.07.08
SAMBA server 설정과 network drive  (0) 2021.07.08