-
-
Save cengiz-io/075b80b60a690fefb7efe716cf9dbcd2 to your computer and use it in GitHub Desktop.
Set up PAN networking on Raspbian Stretch (use sudo to create these files and run all commands)
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
# in /etc/systemd/system | |
[Unit] | |
Description=Bluetooth Agent | |
[Service] | |
ExecStart=/usr/bin/bt-agent -c NoInputNoOutput | |
Type=simple | |
[Install] | |
WantedBy=multi-user.target |
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
# in /etc/systemd/system | |
[Unit] | |
Description=Bluetoot PAN | |
After=pan0.network | |
[Service] | |
ExecStart=/usr/bin/bt-network -s nap pan0 | |
ExecStartPost=bt-adapter --set Discoverable 1 | |
Type=simple | |
[Install] | |
WantedBy=multi-user.target |
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
# in /etc/systemd/network | |
[NetDev] | |
Name=pan0 | |
Kind=bridge |
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
# in /etc/systemd/network | |
[Match] | |
Name=pan0 | |
[Network] | |
Address=172.20.1.1/24 | |
DHCPServer=yes |
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
apt-get install bluez-tools | |
# place other files | |
systemctl enable systemd-networkd | |
systemctl start systemd-networkd | |
systemctl enable bt-agent | |
systemctl start bt-agent | |
systemctl enable bt-network | |
systemctl start bt-network | |
bt-adapter --set Discoverable 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment