월루를 꿈꾸는 대학생
tftp 서버 구축 본문
728x90
# 백업 서버 구축
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 /tftpboot
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
~$ sudo mkdir /tftpboot
~$ sudo chmod 777 /tftpboot
~$ sudo /etc/init.d/xinetd restart
~$cd /tftpboot
~$ vi test.txt
아무런 문자열을 입력하고 저장한 후, VI 에디터를 종료합니다.
~$ cd /tmp // 임시 디렉토리로 이동
~$ tftp localhost // tftp 서버와 연결
tftp> get test.txt // test.txt 다운로드
Received 6 bytes in 0.0 seconds
tftp> quit
~$ ls -al // 다운 받은 파일 확인
일단 로컬 백업은 가능
https://hub.docker.com/r/adosztal/net_toolbox/
https://eyehole.tistory.com/300
728x90
'Server&Network > Capston' 카테고리의 다른 글
MRTG 구축 (0) | 2020.12.25 |
---|---|
GNS3 STP 부하분산 (0) | 2020.12.25 |
Ansible apache2 구축 (0) | 2020.12.25 |
Web Filter 구축 (0) | 2020.12.25 |
NAS 구축 (0) | 2020.12.25 |