월루를 꿈꾸는 대학생

tftp 서버 구축 본문

Server&Network/Capston

tftp 서버 구축

하즈시 2020. 12. 25. 00:25
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/

 

Docker Hub

 

hub.docker.com

 

gns3 백업 가능 

 

https://eyehole.tistory.com/300

 

[Cisco] Configuration Auto Backup_시스코 장비 컨피크 자동 저장

예전에 Archive 명령을 통한 Cisco 장비 자동 Config Backup 에 대해 포스팅 한 적이 있는데요. 2014/11/18 - [Network/Switching] - Cisco 장비 Config 백업 (Archive Backup) 오늘은 이전에 포스팅한 내용에 대..

eyehole.tistory.com

 

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