lab:stack_of_nucs:discover_and_add_to_inventory
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lab:stack_of_nucs:discover_and_add_to_inventory [2023/05/01 23:34] – [Step 3 - Identify Nodes That Weren't Discovered] user | lab:stack_of_nucs:discover_and_add_to_inventory [2024/05/06 02:12] (current) – removed user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Discover NUCs and Add to Inventory ====== | ||
- | Now that you have your [[start|Stack of NUCs]] all built, updated, and connected to the wireless network, it is time to set them up in the Ansible inventory. | ||
- | |||
- | Purpose: | ||
- | * Discover local hosts that the Ansible control node can access | ||
- | * Add these hosts (nodes) to our inventory | ||
- | * Test access to the nodes using Ansible | ||
- | |||
- | ====== Step 1 - Power on All NUCs ====== | ||
- | Power on all the NUCs. WiFi connectivity should make all visible to [[NUC 2]], the Ansible control node. | ||
- | |||
- | ====== Step 2 - Discover and Add to Inventory ====== | ||
- | Run the following discovery script from the Ansible control node ([[NUC 2]]), and add the IP address to the inventory file (' | ||
- | |||
- | <file bash discover.sh> | ||
- | if [ " | ||
- | then | ||
- | echo " | ||
- | echo " | ||
- | exit 1 | ||
- | fi | ||
- | OUTPUT=$1 | ||
- | [[ ! -z " | ||
- | IPs=$(sudo arp-scan --localnet --numeric --quiet --ignoredups | grep -E ' | ||
- | touch ~/ | ||
- | for i in ${IPs}; do | ||
- | # set up SSH managment keys | ||
- | ssh-keygen -q -R $i && ssh-keyscan -H $i >> ~/ | ||
- | # identify hosts ansible can access | ||
- | ssh -q -o PasswordAuthentication=No $i " | ||
- | done | ||
- | </ | ||
- | |||
- | Next, run the file: '' | ||
- | |||
- | This will find all the live hosts on the network, tried to SSH to all of them, added keys to the known_files file, and adding IP addresses of the Ansible worker notes to the " | ||
- | |||
- | ====== Step 3 - Identify Nodes That Weren' | ||
- | This is a quick and easy way to determine which ones weren' | ||
- | |||
- | < | ||
- | |||
- | Pull these NUCs for re-imaging/ | ||
- | ====== Next Step ====== | ||
- | You now have a working Ansible environment! Continue to our First Ansible playbook with [[Ansible Playbook - Update]]. | ||
- | |||
- | ====== Optional ====== | ||
- | ===== Discover Using nmap scan ===== | ||
- | You can discover ssh servers using nmap. | ||
- | - Install nmap | ||
- | * '' | ||
- | - Run the following scan, replacing the network 192.168.1.0/ | ||
- | * '' | ||
- | - You can see that all the NUCs you installed have the same OpenSSH version. Add these IP addresses to the '' | ||
- | * You will still need to add the hosts to the known hosts file | ||
- | |||
- | ===== Using lldp ===== | ||
- | Another way to discover the NUCs on the network quickly and easily is to use lldp. | ||
- | |||
- | NOTE: lldp is a standards-based neighbor discovery protocol similar to Cisco CDP. It works fine over wired network connections. However, in my experience wireless routers and access points don't support lldp between wireless clients, so I have not included this in the lab. | ||
- | |||
- | To use lldp in a wired lab | ||
- | * add the '' | ||
- | * install on [[NUC]] 1 using '' | ||
- | * from NUC 1 run '' | ||
lab/stack_of_nucs/discover_and_add_to_inventory.1682984087.txt.gz · Last modified: 2023/05/01 23:34 by user