Compare commits

...

4 Commits

Author SHA1 Message Date
Jon Sands 9f3d117500 update vers 2023-05-15 06:34:08 -04:00
Jon Sands 4ffd2e2e2f
Merge pull request #38 from evanreichard/master
TFTP macOS instructions
2023-05-15 06:31:04 -04:00
Evan Reichard 9d34cb508c Update macOS TFTP Instructions 2023-04-25 09:44:46 -04:00
Evan Reichard 0d90a99094 TFTP macOS instructions 2023-04-22 19:30:27 -04:00
2 changed files with 32 additions and 2 deletions

View File

@ -48,5 +48,35 @@ systemctl stop tftpd-hpa
##optionally remove it completely
apt remove tftpd-hpa
```
### Setting up TFTP (macOS)
Fortunately macOS has a built in TFTP server, all you have to do is enable it. Lets first temporarily disable the Firewall: **System Settings** -> **Network** -> **Firewall**.
Load the TFTP service:
```
sudo launchctl load -F /System/Library/LaunchDaemons/tftp.plist
```
Start the service:
```
sudo launchctl start com.apple.tftpd
```
By default, the TFTP directory is at `/private/tftpboot`. Be sure to grant permissions:
```
sudo chmod 777 /private/tftpboot
```
Move the contents of `TFTP-Content` to the `/private/tftpboot` directory.
Once complete, you can stop and disable the service:
```
sudo launchctl stop com.apple.tftpd
sudo launchctl unload -F /System/Library/LaunchDaemons/tftp.plist
##optionally to be double sure TFTP is no longer running, ensure theres no output from the following:
sudo lsof -i :69
```
Finally, be sure to re-enable the firewall: **System Settings** -> **Network** -> **Firewall**
## Begin
You're now serving the required files over TFTP. Just navigate to the left-hand menu, underneath the **Brocade Setup** section - click on the section for your switch model and begin.
You're now serving the required files over TFTP. Just navigate to the left-hand menu, underneath the **Brocade Setup** section - click on the section for your switch model and begin.

View File

@ -2,7 +2,7 @@
{% block announce %}
<center>
<a href="https://github.com/Fohdeesha/lab-docu/commits/master" target="_blank">Docu Version: v4.4 (01-12-2023)</a>
<a href="https://github.com/Fohdeesha/lab-docu/commits/master" target="_blank">Docu Version: v4.5 (05-15-2023)</a>
-
<a href="https://github.com/Fohdeesha/lab-docu" target="_blank">Sources, Suggest, Contribute</a>
-