Rework Networking category

This commit is contained in:
Marcel Bischoff 2015-12-04 01:29:54 +01:00
parent 6c3cf001c6
commit a948797f5f

View File

@ -768,13 +768,12 @@ defaults write com.apple.QuickTimePlayerX MGPlayMovieOnOpen 1
### Bonjour ### Bonjour
#### Disable Bonjour #### Bonjour Service
```bash ```bash
# Disable
sudo defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array-add "-NoMulticastAdvertisements" sudo defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array-add "-NoMulticastAdvertisements"
```
#### Enable Bonjour # Enable (Default)
```bash
sudo defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array "/usr/sbin/mDNSResponder" "-launchd" sudo defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array "/usr/sbin/mDNSResponder" "-launchd"
``` ```