UncleNUC Wiki

Second chance for NUCs

User Tools

Site Tools


lab:discover_nucs_and_add_to_inventory

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
lab:discover_nucs_and_add_to_inventory [2023/04/16 21:11] – removed timout userlab:discover_nucs_and_add_to_inventory [2023/04/28 21:32] (current) – replaced user
Line 1: Line 1:
-====== 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]]) 
-    * <file bash 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 
-</file> 
lab/discover_nucs_and_add_to_inventory.1681679504.txt.gz · Last modified: 2023/04/16 21:11 by user