TIP&TECH/리눅스

BusyBox에 있는 tftp 사용법

kyudoc 2013. 3. 11. 20:28
728x90

BusyBox 1.x의 경우

 

파일 받기 

 $ tftp -l <local-file-name> -r <remote-file-name> -g <host-ip>

 

파일 올리기

 $ tftp -l <local-file-name> -r <remote-file-name> -p <host-ip>

 

BusyBox 0.x의 경우

 

파일 받기 

 $ tftp get <host-ip>:<file-name>

 

파일 올리기

 $ tftp put <host-ip>:<file-name>

 

728x90