OS/MacOS
macos에서 tftp 서비스 활성화
tftp 서비스 시작 $ sudo launchctl load -F /System/Library/LaunchDaemons/tftp.plist $ sudo launchctl start com.apple.tftpd tftp 서비스 사용 포트 확인 $ netstat -an | grep .69 udp4 0 0 *.69 *.* udp6 0 0 *.69 *.* tftp 서비스가 사용하는 디렉토리 $ cd /private/tftpboot/ tftp 서비스 종료 $ sudo launchctl unload -F /System/Library/LaunchDaemons/tftp.plist
2021. 5. 27. 19:57