Last active
June 26, 2019 14:38
-
-
Save rohan-molloy/5d88a1c107351c34bede74a6a9a65caa 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
#################################### | |
# Generates ~/.ssh/config entries # | |
# using hostname+mac (/etc/ethers) # | |
#################################### | |
#!/bin/bash | |
dev=${1:-'eth0'} # use eth0 if no device specified | |
domain=.${2:-'local'} # use .local if no domain specified | |
while read line; do | |
mac=$(echo $line|awk '{print $1}'); | |
host=$(echo $line|awk '{print $2}'); | |
eui64=$(echo $mac|ipv6calc -I mac -O eui64); | |
printf "Host $host$domain\n\tHostname %s\n" \ | |
"fe80::${eui64}%%${dev}"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment