Last active
March 15, 2025 10:42
-
-
Save vimagick/17c162abff708a249da080bb28b95128 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Interface] | |
PrivateKey = ****** | |
Address = 192.168.x.x/24 | |
DNS = 8.8.x.x | |
[Peer] | |
PublicKey = ****** | |
AllowedIPs = 192.168.x.0/24, 8.8.0.0/16 | |
Endpoint = x.x.x.x:51820 | |
PersistentKeepalive = 25 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>wireguard</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/opt/homebrew/bin/bash</string> | |
<string>/opt/homebrew/bin/wg-quick</string> | |
<string>up</string> | |
<string>wg0</string> | |
</array> | |
<key>StandardErrorPath</key> | |
<string>/usr/local/var/log/wireguard.log</string> | |
<key>StandardOutPath</key> | |
<string>/dev/null</string> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>KeepAlive</key> | |
<dict> | |
<key>NetworkState</key> | |
<true/> | |
</dict> | |
</dict> | |
</plist> |
Author
vimagick
commented
Mar 14, 2025
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment