Last active
May 30, 2023 11:59
-
-
Save nbuchwitz/65835b7e5c49af4dcf0e8d023a19b63a 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
#!/bin/bash | |
if [[ $(id -u) != 0 ]]; then | |
echo "usage: sudo $(basename $0)" | |
exit 1 | |
fi | |
pibridge_static_mac() { | |
interface=$1 | |
if [[ $interface != "pileft" && $interface != "piright" ]]; then | |
echo 2>&1 "interface is not a PiBridge interface: ${interface}" | |
exit 3 | |
elif [[ ! -e /sys/class/net/${interface} ]]; then | |
echo 2>&1 "warning: network interface does not exists: ${interface}" | |
fi | |
mac=$(ip l show $interface | grep ether | xargs | cut -f 2 -d ' ' | sed -e 's/://g') | |
mac_hi=${mac:0:8} | |
mac_lo=${mac:8:12} | |
grep -q dtparam=${interface}_mac_hi /boot/config.txt || echo "dtparam=${interface}_mac_hi=0x$mac_hi" >> /boot/config.txt | |
grep -q dtparam=${interface}_mac_lo /boot/config.txt || echo "dtparam=${interface}_mac_lo=0x$mac_lo" >> /boot/config.txt | |
} | |
pibridge_static_mac pileft | |
pibridge_static_mac piright |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reboot after setting the static mac