Total Pageviews

Thursday 19 December 2019

开启 macOS 内建的 TFTP 服务器

发现 macOS 上居然有一个内建的 TFTP 服务器!
这么好的东西怎么能放着不用呢?

二、操作环境

  • 操作系统:macOS 10.14.6

三、使用方法

3.1 开启 TFTP 服务

打开「终端」,执行以下命令(需要管理员密码):
sudo launchctl load -w /System/Library/LaunchDaemons/tftp.plist
说明
• 执行完该命令之后,TFTP 服务也会被加入到开机自启动项中。

3.2 放置文件

/private/tftpboot 为 TFTP 服务器的根目录,请将需要使用的文件放置在该目录下(需要管理员密码)。

3.3 关闭 TFTP 服务

打开「终端」,执行以下命令(需要管理员密码):
sudo launchctl unload -w /System/Library/LaunchDaemons/tftp.plist