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), and add the IP address to the inventory file ('hosts')
- example:
cd my-project
bash discover.sh hosts
- 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 PasswordAuthentication=No $i "hostname -I" && echo $i && echo $i >> $OUTPUT done
- to identify nodes that weren't discovered
ansible -i hosts all -a “poweroff” * any NUCs still powered on were not discovered properly * you can pull these for re-imaging/investigation, then power the “good” NUCs back on You now have a working Ansible environment! Continue to First Ansible Job - Update ====== Optional ====== Since the lldpd package was installed, you can also discover the nodes using *
lldpcli show neighbors''
lab/discover_nucs_and_add_to_inventory.1682713817.txt.gz · Last modified: 2023/04/28 20:30 by user