lab:discover_nucs_and_add_to_inventory
This is an old revision of the document!
Discover NUCs and add to inventory
Now that you have your Stack of NUCs all built, updated, and connected to the wireless network, it is time to set them all up in the Ansible inventory so we can start doing things with them.
Purpose:
- Discover local hosts that the Ansible control node can access
- Add these hosts to our inventory
Steps:
- power on all the nodes
- run the discovery script from the Ansible control node (NUC 2)
- discover.sh
if [ "$#" -ne 1 ] then echo "Usage: $0 filename.txt" echo "results will be appended to this file" exit 1 fi OUTPUT=$1 [[ ! -z "$OUTPUT" ]] && touch $OUTPUT || exit IPs=$(sudo arp-scan --localnet --numeric --quiet --ignoredups | grep -E '([a-f0-9]{2}:){5}[a-f0-9]{2}' | awk '{print $1}') for i in ${IPs}; do # set up SSH managment keys ssh-keygen -q -R $i && ssh-keyscan -H $i >> ~/.ssh/known_hosts # identify hosts ansible can access ssh -q -o ConnectTimeout=1 -o PasswordAuthentication=No $i "hostname -I" && echo $i && echo $i >> $OUTPUT done
lab/discover_nucs_and_add_to_inventory.1681678041.txt.gz ยท Last modified: 2023/04/16 20:47 by user