Network/Feature

OSX 터미널에서 시스코라우터로 TFTP 연결하기

billy0529 2021. 3. 22. 20:09
728x90

1. Server

TFTP server를 활성화 (기본은 활성화 되어있음)

sudo launchctl load -w /System/Library/LaunchDaemons/tftp.plist

 

 

2. 서버에서 Device로 옮길시 TFTP에서 인식할수 있도록 TFTP 기본 폴더로 복사

sudo cp filename.* /private/tftpboot/filename.*

 

 

3. Device에서 서버로 옮길시 빈파일을 이름만 만들어야 하므로 아래와 같이 생성

sudo touch /private/tftpboot/filename.*

sudo chmod a+w /private/tftpboot/filename.*

 

 

4. TFTP 전송

Device 에서 서버로 전송

copy flash:filename.* tftp://192.168.0.254/filename.*

 

서버에서 Device로 전송

copy tftp://192.168.0.254/filename.* flash:/filename.*

'Network > Feature' 카테고리의 다른 글

ERSPAN  (0) 2021.03.22
SSH  (0) 2015.05.14
Netflow  (0) 2014.12.31
NTP (2) Configuration  (0) 2014.11.27
NTP (1)  (0) 2014.11.14