first commit
This commit is contained in:
649
bastion.sh
649
bastion.sh
@@ -1,30 +1,34 @@
|
||||
#!/usr/bin/env bash
|
||||
# ─────────────────────────────────────────────────────────────────────
|
||||
# Lab PXE Bastion — ephemeral PXE server for bare-metal provisioning
|
||||
# Lab PXE Bastion — discover-first bare-metal provisioning
|
||||
#
|
||||
# Turns this machine into a temporary PXE boot server. Target machines
|
||||
# on the same network can PXE boot and get Fedora installed automatically.
|
||||
# Default mode: DISCOVER. Any machine that PXE boots gets inventoried
|
||||
# and powered off. You review what appeared, then promote to install.
|
||||
#
|
||||
# Usage:
|
||||
# sudo bash bastion.sh # interactive, auto-detect everything
|
||||
# sudo TARGET_HOSTNAME=puppet SSH_PUBKEY=~/.ssh/id_ed25519.pub bash bastion.sh
|
||||
# sudo bash bastion.sh # start bastion (discover mode)
|
||||
# bash bastion.sh install <mac> <hostname> # queue discovered machine for install
|
||||
# bash bastion.sh list # show discovered/queued machines
|
||||
#
|
||||
# Flow:
|
||||
# 1. Start bastion → sudo bash bastion.sh
|
||||
# 2. Power on machine → PXE boots, hardware discovered, powers off
|
||||
# 3. Queue for install → bash bastion.sh install aa:bb:cc:dd:ee:ff puppet
|
||||
# 4. Power on again → PXE boots, Fedora installed, reboots into OS
|
||||
#
|
||||
# Requirements: Fedora/RHEL host with dnsmasq, python3, curl
|
||||
# ─────────────────────────────────────────────────────────────────────
|
||||
set -euo pipefail
|
||||
|
||||
# ──── Defaults (override via environment) ──────────────────────────
|
||||
FEDORA_VERSION="${FEDORA_VERSION:-41}"
|
||||
# ──── Configuration (override via environment) ────────────────────
|
||||
FEDORA_VERSION="${FEDORA_VERSION:-43}"
|
||||
ARCH="${ARCH:-x86_64}"
|
||||
HTTP_PORT="${HTTP_PORT:-8080}"
|
||||
TARGET_HOSTNAME="${TARGET_HOSTNAME:-lab-node}"
|
||||
TARGET_DISK="${TARGET_DISK:-}" # empty = anaconda auto-picks
|
||||
SSH_PUBKEY="${SSH_PUBKEY:-}" # path to .pub file, auto-detected
|
||||
TIMEZONE="${TIMEZONE:-Europe/London}"
|
||||
LOCALE="${LOCALE:-en_GB.UTF-8}"
|
||||
BASTION_DIR="${BASTION_DIR:-/tmp/lab-bastion}"
|
||||
|
||||
# ──── Colors ───────────────────────────────────────────────────────
|
||||
# ──── Colors ──────────────────────────────────────────────────────
|
||||
RED='\033[0;31m'; GREEN='\033[0;32m'; YELLOW='\033[1;33m'
|
||||
CYAN='\033[0;36m'; BOLD='\033[1m'; NC='\033[0m'
|
||||
|
||||
@@ -33,13 +37,83 @@ warn() { echo -e "${YELLOW}[bastion]${NC} $*"; }
|
||||
err() { echo -e "${RED}[bastion]${NC} $*" >&2; }
|
||||
die() { err "$@"; exit 1; }
|
||||
|
||||
# ──── Preflight ────────────────────────────────────────────────────
|
||||
# ──── Subcommand handling ─────────────────────────────────────────
|
||||
CMD="${1:-serve}"
|
||||
|
||||
case "$CMD" in
|
||||
install)
|
||||
[[ $# -ge 3 ]] || { echo "Usage: bastion.sh install <mac> <hostname> [--disk <dev>]"; exit 1; }
|
||||
MAC="$2"
|
||||
HOSTNAME="$3"
|
||||
DISK="${5:-}" # --disk <dev>
|
||||
PAYLOAD="{\"mac\":\"$MAC\",\"hostname\":\"$HOSTNAME\""
|
||||
[[ -n "$DISK" ]] && PAYLOAD="$PAYLOAD,\"disk\":\"$DISK\""
|
||||
PAYLOAD="$PAYLOAD}"
|
||||
RESULT=$(curl -sf -X POST "http://localhost:${HTTP_PORT}/api/install" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d "$PAYLOAD" 2>&1) || die "Cannot reach bastion at localhost:${HTTP_PORT}. Is it running?"
|
||||
echo "$RESULT" | python3 -m json.tool 2>/dev/null || echo "$RESULT"
|
||||
echo ""
|
||||
echo "Power on the machine to start Fedora installation."
|
||||
exit 0
|
||||
;;
|
||||
list)
|
||||
RESULT=$(curl -sf "http://localhost:${HTTP_PORT}/api/machines" 2>&1) || \
|
||||
die "Cannot reach bastion at localhost:${HTTP_PORT}. Is it running?"
|
||||
echo "$RESULT" | python3 -c "
|
||||
import sys, json
|
||||
state = json.load(sys.stdin)
|
||||
|
||||
discovered = state.get('discovered', {})
|
||||
queue = state.get('install_queue', {})
|
||||
installed = state.get('installed', {})
|
||||
|
||||
print()
|
||||
print('\033[1mDISCOVERED\033[0m')
|
||||
if discovered:
|
||||
print(f' {\"MAC\":<20} {\"CPU\":<32} {\"CORES\":<6} {\"RAM\":<8} {\"ARCH\":<10} {\"PRODUCT\"}')
|
||||
for mac, hw in discovered.items():
|
||||
status = ' [QUEUED]' if mac in queue else ''
|
||||
print(f' {mac:<20} {hw.get(\"cpu_model\",\"?\"):<32} {hw.get(\"cpu_cores\",\"?\"):<6} {str(hw.get(\"memory_gb\",\"?\"))+\"GB\":<8} {hw.get(\"arch\",\"?\"):<10} {hw.get(\"product\",\"?\")}{status}')
|
||||
else:
|
||||
print(' (none — PXE boot a machine to discover it)')
|
||||
|
||||
print()
|
||||
print('\033[1mINSTALL QUEUE\033[0m')
|
||||
if queue:
|
||||
for mac, cfg in queue.items():
|
||||
print(f' {mac:<20} → hostname={cfg.get(\"hostname\",\"?\")}')
|
||||
else:
|
||||
print(' (none)')
|
||||
|
||||
print()
|
||||
print('\033[1mINSTALLED\033[0m')
|
||||
if installed:
|
||||
for mac, info in installed.items():
|
||||
print(f' {mac:<20} → {info.get(\"hostname\",\"?\")} ({info.get(\"installed_at\",\"?\")})')
|
||||
else:
|
||||
print(' (none)')
|
||||
print()
|
||||
" 2>/dev/null || echo "$RESULT"
|
||||
exit 0
|
||||
;;
|
||||
serve) ;; # continue below
|
||||
*)
|
||||
echo "Usage: bastion.sh [serve|install <mac> <hostname>|list]"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# ══════════════════════════════════════════════════════════════════
|
||||
# SERVE MODE — start the bastion
|
||||
# ══════════════════════════════════════════════════════════════════
|
||||
|
||||
# ──── Preflight ───────────────────────────────────────────────────
|
||||
[[ $EUID -eq 0 ]] || die "Must run as root (need DHCP/TFTP ports). Use: sudo bash bastion.sh"
|
||||
|
||||
command -v python3 >/dev/null || die "python3 not found"
|
||||
command -v curl >/dev/null || die "curl not found"
|
||||
|
||||
# Install dnsmasq if missing
|
||||
if ! command -v dnsmasq >/dev/null; then
|
||||
log "Installing dnsmasq..."
|
||||
if command -v dnf >/dev/null; then
|
||||
@@ -51,7 +125,7 @@ if ! command -v dnsmasq >/dev/null; then
|
||||
fi
|
||||
fi
|
||||
|
||||
# ──── Auto-detect network ─────────────────────────────────────────
|
||||
# ──── Auto-detect network ────────────────────────────────────────
|
||||
IFACE="${IFACE:-$(ip route | awk '/default/ {print $5; exit}')}"
|
||||
SERVER_IP="$(ip -4 addr show "$IFACE" | awk '/inet / {split($2,a,"/"); print a[1]; exit}')"
|
||||
NETWORK="$(echo "$SERVER_IP" | awk -F. '{print $1"."$2"."$3".0"}')"
|
||||
@@ -59,35 +133,34 @@ NETWORK="$(echo "$SERVER_IP" | awk -F. '{print $1"."$2"."$3".0"}')"
|
||||
[[ -n "$SERVER_IP" ]] || die "Cannot detect IP on interface $IFACE"
|
||||
log "Interface: ${BOLD}$IFACE${NC} IP: ${BOLD}$SERVER_IP${NC} Network: ${BOLD}$NETWORK${NC}"
|
||||
|
||||
# ──── Auto-detect SSH pubkey ───────────────────────────────────────
|
||||
# ──── Auto-detect SSH pubkey ──────────────────────────────────────
|
||||
SSH_PUBKEY="${SSH_PUBKEY:-}"
|
||||
if [[ -z "$SSH_PUBKEY" ]]; then
|
||||
# When run via sudo, check the real user's home
|
||||
REAL_HOME="${HOME}"
|
||||
if [[ -n "${SUDO_USER:-}" ]]; then
|
||||
REAL_HOME="$(getent passwd "$SUDO_USER" | cut -d: -f6)"
|
||||
fi
|
||||
[[ -n "${SUDO_USER:-}" ]] && REAL_HOME="$(getent passwd "$SUDO_USER" | cut -d: -f6)"
|
||||
for keyfile in "$REAL_HOME/.ssh/id_ed25519.pub" "$REAL_HOME/.ssh/id_rsa.pub" "$REAL_HOME/.ssh/id_ecdsa.pub"; do
|
||||
if [[ -f "$keyfile" ]]; then
|
||||
SSH_PUBKEY="$keyfile"
|
||||
break
|
||||
fi
|
||||
[[ -f "$keyfile" ]] && { SSH_PUBKEY="$keyfile"; break; }
|
||||
done
|
||||
fi
|
||||
|
||||
SSH_KEY_CONTENT=""
|
||||
if [[ -n "$SSH_PUBKEY" && -f "$SSH_PUBKEY" ]]; then
|
||||
SSH_KEY_CONTENT="$(cat "$SSH_PUBKEY")"
|
||||
log "SSH key: ${BOLD}$SSH_PUBKEY${NC}"
|
||||
else
|
||||
warn "No SSH public key found. Root password will be set to 'changeme'."
|
||||
warn "Set SSH_PUBKEY=/path/to/key.pub to use key-based auth instead."
|
||||
SSH_KEY_CONTENT=""
|
||||
warn "No SSH public key found. Set SSH_PUBKEY=/path/to/key.pub"
|
||||
warn "Install mode will use root password 'changeme' as fallback."
|
||||
fi
|
||||
|
||||
# ──── Prepare directories ─────────────────────────────────────────
|
||||
# ──── Prepare directories ────────────────────────────────────────
|
||||
TFTPDIR="$BASTION_DIR/tftp"
|
||||
HTTPDIR="$BASTION_DIR/http"
|
||||
STATEFILE="$BASTION_DIR/state.json"
|
||||
mkdir -p "$TFTPDIR" "$HTTPDIR"
|
||||
|
||||
# Initialize state if not present
|
||||
[[ -f "$STATEFILE" ]] || echo '{"discovered":{},"install_queue":{},"installed":{}}' > "$STATEFILE"
|
||||
|
||||
# ──── Cleanup handler ─────────────────────────────────────────────
|
||||
DNSMASQ_PID=""
|
||||
HTTP_PID=""
|
||||
@@ -96,19 +169,19 @@ FW_OPENED=false
|
||||
cleanup() {
|
||||
echo ""
|
||||
log "Shutting down..."
|
||||
[[ -n "$DNSMASQ_PID" ]] && kill "$DNSMASQ_PID" 2>/dev/null && log "Stopped dnsmasq"
|
||||
[[ -n "$HTTP_PID" ]] && kill "$HTTP_PID" 2>/dev/null && log "Stopped HTTP server"
|
||||
[[ -n "$DNSMASQ_PID" ]] && kill "$DNSMASQ_PID" 2>/dev/null && log "Stopped dnsmasq"
|
||||
|
||||
if $FW_OPENED && command -v firewall-cmd >/dev/null; then
|
||||
log "Removing firewall rules..."
|
||||
firewall-cmd --quiet --remove-service=dhcp 2>/dev/null || true
|
||||
firewall-cmd --quiet --remove-service=tftp 2>/dev/null || true
|
||||
firewall-cmd --quiet --remove-port=${HTTP_PORT}/tcp 2>/dev/null || true
|
||||
firewall-cmd --quiet --remove-service=proxy-dhcp 2>/dev/null || true
|
||||
firewall-cmd --quiet --remove-port=4011/udp 2>/dev/null || true
|
||||
fi
|
||||
|
||||
log "Done. Bastion artifacts remain in $BASTION_DIR"
|
||||
log "Re-run this script to reprovision. Remove with: rm -rf $BASTION_DIR"
|
||||
log "State preserved in $STATEFILE"
|
||||
log "Restart bastion with: sudo bash bastion.sh"
|
||||
}
|
||||
trap cleanup EXIT INT TERM
|
||||
|
||||
@@ -131,57 +204,208 @@ download "https://boot.ipxe.org/ipxe.efi" "$TFTPDIR/ipxe.efi" "iPX
|
||||
download "${FEDORA_MIRROR}/images/pxeboot/vmlinuz" "$HTTPDIR/vmlinuz" "Fedora kernel"
|
||||
download "${FEDORA_MIRROR}/images/pxeboot/initrd.img" "$HTTPDIR/initrd.img" "Fedora initrd"
|
||||
|
||||
# ──── Generate kickstart ──────────────────────────────────────────
|
||||
log "Generating kickstart for ${BOLD}${TARGET_HOSTNAME}${NC}..."
|
||||
# ──── Generate discovery kickstart ────────────────────────────────
|
||||
# Boots Fedora installer env, collects hardware info, POSTs to bastion, powers off.
|
||||
# Never touches the disk.
|
||||
cat > "$HTTPDIR/discover.ks" << 'DISCOVER_KS'
|
||||
# Lab Bastion — Discovery Mode
|
||||
# Collects hardware inventory and powers off. Does NOT install anything.
|
||||
|
||||
# Disk config
|
||||
if [[ -n "$TARGET_DISK" ]]; then
|
||||
DISK_CMDS="ignoredisk --only-use=${TARGET_DISK}
|
||||
clearpart --all --initlabel --drives=${TARGET_DISK}
|
||||
autopart --type=plain"
|
||||
%pre --erroronfail --log=/tmp/discover.log
|
||||
#!/bin/bash
|
||||
set -x
|
||||
|
||||
# ── Collect hardware info from /proc, /sys, and available tools ──
|
||||
|
||||
MAC=$(ip link show | awk '/ether/ && !/00:00:00:00/ {print $2; exit}')
|
||||
PRODUCT=$(cat /sys/class/dmi/id/product_name 2>/dev/null || echo "unknown")
|
||||
BOARD=$(cat /sys/class/dmi/id/board_name 2>/dev/null || echo "unknown")
|
||||
SERIAL=$(cat /sys/class/dmi/id/product_serial 2>/dev/null || echo "unknown")
|
||||
MANUFACTURER=$(cat /sys/class/dmi/id/sys_vendor 2>/dev/null || echo "unknown")
|
||||
CPUMODEL=$(grep -m1 'model name' /proc/cpuinfo | cut -d: -f2 | sed 's/^ //')
|
||||
CPUCORES=$(grep -c '^processor' /proc/cpuinfo)
|
||||
MEMGB=$(awk '/MemTotal/ {printf "%d", $2/1024/1024}' /proc/meminfo)
|
||||
ARCHTYPE=$(uname -m)
|
||||
|
||||
# Disk info — lsblk is available in Anaconda
|
||||
DISKS_JSON=$(lsblk -Jb -o NAME,SIZE,TYPE,MODEL 2>/dev/null | python3 -c "
|
||||
import sys, json
|
||||
data = json.load(sys.stdin)
|
||||
disks = [d for d in data.get('blockdevices', []) if d.get('type') == 'disk']
|
||||
result = []
|
||||
for d in disks:
|
||||
size_gb = round(int(d.get('size', 0)) / 1073741824, 1)
|
||||
result.append({
|
||||
'name': d.get('name', '?'),
|
||||
'size_gb': size_gb,
|
||||
'model': (d.get('model') or 'unknown').strip()
|
||||
})
|
||||
print(json.dumps(result))
|
||||
" 2>/dev/null || echo '[]')
|
||||
|
||||
# Network interfaces
|
||||
NICS_JSON=$(ip -j link show 2>/dev/null | python3 -c "
|
||||
import sys, json
|
||||
nics = json.load(sys.stdin)
|
||||
result = []
|
||||
for n in nics:
|
||||
if n.get('link_type') == 'loopback':
|
||||
continue
|
||||
result.append({
|
||||
'name': n.get('ifname', '?'),
|
||||
'mac': n.get('address', '?'),
|
||||
'state': n.get('operstate', '?')
|
||||
})
|
||||
print(json.dumps(result))
|
||||
" 2>/dev/null || echo '[]')
|
||||
|
||||
# ── Build and POST discovery payload ──
|
||||
|
||||
PAYLOAD=$(python3 -c "
|
||||
import json
|
||||
print(json.dumps({
|
||||
'mac': '$MAC',
|
||||
'product': '$PRODUCT',
|
||||
'board': '$BOARD',
|
||||
'serial': '$SERIAL',
|
||||
'manufacturer': '$MANUFACTURER',
|
||||
'cpu_model': '$CPUMODEL',
|
||||
'cpu_cores': int('$CPUCORES' or 0),
|
||||
'memory_gb': int('$MEMGB' or 0),
|
||||
'arch': '$ARCHTYPE',
|
||||
'disks': $DISKS_JSON,
|
||||
'nics': $NICS_JSON
|
||||
}))
|
||||
")
|
||||
|
||||
# POST to bastion — try curl first, fall back to python3 urllib
|
||||
BASTION_URL="__BASTION_URL__/api/discover"
|
||||
|
||||
if command -v curl >/dev/null 2>&1; then
|
||||
curl -sf -X POST "$BASTION_URL" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d "$PAYLOAD" || true
|
||||
else
|
||||
DISK_CMDS="clearpart --all --initlabel
|
||||
autopart --type=plain"
|
||||
python3 -c "
|
||||
import urllib.request
|
||||
req = urllib.request.Request('$BASTION_URL',
|
||||
data=b'''$PAYLOAD''',
|
||||
headers={'Content-Type': 'application/json'})
|
||||
try:
|
||||
urllib.request.urlopen(req, timeout=10)
|
||||
except Exception as e:
|
||||
print(f'POST failed: {e}')
|
||||
"
|
||||
fi
|
||||
|
||||
# Auth config
|
||||
if [[ -n "$SSH_KEY_CONTENT" ]]; then
|
||||
AUTH_CMDS="rootpw --lock
|
||||
sshkey --username=root \"${SSH_KEY_CONTENT}\""
|
||||
else
|
||||
AUTH_CMDS='rootpw --plaintext changeme'
|
||||
fi
|
||||
# ── Power off — do NOT let Anaconda proceed ──
|
||||
echo ""
|
||||
echo "=== Discovery complete, powering off ==="
|
||||
echo ""
|
||||
sleep 3
|
||||
echo 1 > /proc/sys/kernel/sysrq
|
||||
echo o > /proc/sysrq-trigger
|
||||
sleep 5
|
||||
poweroff -f
|
||||
|
||||
cat > "$HTTPDIR/ks.cfg" << KICKSTART
|
||||
# Lab Bastion — Fedora ${FEDORA_VERSION} kickstart
|
||||
# Generated: $(date -Iseconds)
|
||||
# Target: ${TARGET_HOSTNAME}
|
||||
%end
|
||||
|
||||
# Anaconda should never get here, but just in case:
|
||||
poweroff
|
||||
DISCOVER_KS
|
||||
|
||||
# Patch in the bastion URL
|
||||
sed -i "s|__BASTION_URL__|http://${SERVER_IP}:${HTTP_PORT}|g" "$HTTPDIR/discover.ks"
|
||||
|
||||
# ──── Generate iPXE boot script ───────────────────────────────────
|
||||
# Initial iPXE script chains to /dispatch with the MAC, so the server
|
||||
# can route to discover or install mode per machine.
|
||||
cat > "$HTTPDIR/boot.ipxe" << IPXE
|
||||
#!ipxe
|
||||
|
||||
echo
|
||||
echo ============================================
|
||||
echo Lab PXE Bastion
|
||||
echo Contacting server for instructions...
|
||||
echo ============================================
|
||||
echo
|
||||
|
||||
chain http://${SERVER_IP}:${HTTP_PORT}/dispatch?mac=\${net0/mac}
|
||||
IPXE
|
||||
|
||||
# ──── Write the HTTP server ──────────────────────────────────────
|
||||
cat > "$BASTION_DIR/server.py" << 'PYSERVER'
|
||||
#!/usr/bin/env python3
|
||||
"""Lab PXE Bastion — HTTP server with discovery API and per-MAC iPXE dispatch."""
|
||||
|
||||
import json
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import fcntl
|
||||
from http.server import HTTPServer, SimpleHTTPRequestHandler
|
||||
from urllib.parse import urlparse, parse_qs
|
||||
from datetime import datetime
|
||||
|
||||
# Config from argv
|
||||
HTTP_DIR = sys.argv[1]
|
||||
STATE_FILE = sys.argv[2]
|
||||
SERVER_IP = sys.argv[3]
|
||||
HTTP_PORT = int(sys.argv[4])
|
||||
FEDORA_VER = sys.argv[5]
|
||||
FEDORA_MIRROR = sys.argv[6]
|
||||
SSH_KEY = sys.argv[7] if len(sys.argv) > 7 else ""
|
||||
TIMEZONE = sys.argv[8] if len(sys.argv) > 8 else "Europe/London"
|
||||
LOCALE = sys.argv[9] if len(sys.argv) > 9 else "en_GB.UTF-8"
|
||||
|
||||
# ── State management (file-backed, lock-protected) ───────────────
|
||||
|
||||
def load_state():
|
||||
try:
|
||||
with open(STATE_FILE) as f:
|
||||
return json.load(f)
|
||||
except (FileNotFoundError, json.JSONDecodeError):
|
||||
return {"discovered": {}, "install_queue": {}, "installed": {}}
|
||||
|
||||
def save_state(state):
|
||||
tmp = STATE_FILE + ".tmp"
|
||||
with open(tmp, 'w') as f:
|
||||
json.dump(state, f, indent=2)
|
||||
os.replace(tmp, STATE_FILE)
|
||||
|
||||
# ── Kickstart generation ─────────────────────────────────────────
|
||||
|
||||
def generate_kickstart(hostname, disk="", ssh_key=""):
|
||||
disk_cmds = "clearpart --all --initlabel\nautopart --type=plain"
|
||||
if disk:
|
||||
disk_cmds = f"ignoredisk --only-use={disk}\nclearpart --all --initlabel --drives={disk}\nautopart --type=plain"
|
||||
|
||||
if ssh_key:
|
||||
auth = f'rootpw --lock\nsshkey --username=root "{ssh_key}"'
|
||||
else:
|
||||
auth = 'rootpw --plaintext changeme'
|
||||
|
||||
return f"""# Lab Bastion — Fedora {FEDORA_VER} install
|
||||
# Generated: {datetime.now().isoformat()}
|
||||
# Target: {hostname}
|
||||
|
||||
# Install mode
|
||||
text
|
||||
reboot
|
||||
|
||||
# Locale
|
||||
lang ${LOCALE}
|
||||
lang {LOCALE}
|
||||
keyboard uk
|
||||
timezone ${TIMEZONE} --utc
|
||||
timezone {TIMEZONE} --utc
|
||||
|
||||
# Network
|
||||
network --bootproto=dhcp --activate --hostname=${TARGET_HOSTNAME}
|
||||
network --bootproto=dhcp --activate --hostname={hostname}
|
||||
|
||||
# Auth
|
||||
${AUTH_CMDS}
|
||||
{auth}
|
||||
|
||||
# Disk
|
||||
${DISK_CMDS}
|
||||
{disk_cmds}
|
||||
|
||||
# Bootloader
|
||||
bootloader --append="console=tty0 console=ttyS0,115200n8"
|
||||
|
||||
# Install source
|
||||
url --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-\$releasever&arch=\$basearch
|
||||
url --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||
|
||||
# Packages — minimal server + essentials
|
||||
%packages
|
||||
@core
|
||||
@server-product
|
||||
@@ -191,51 +415,241 @@ tmux
|
||||
git
|
||||
curl
|
||||
python3
|
||||
lshw
|
||||
dmidecode
|
||||
dnf-plugins-core
|
||||
%end
|
||||
|
||||
# Post-install
|
||||
%post --log=/root/bastion-post-install.log
|
||||
#!/bin/bash
|
||||
set -x
|
||||
|
||||
# Ensure SSH is enabled
|
||||
systemctl enable --now sshd
|
||||
|
||||
# Allow root SSH with key (password auth disabled)
|
||||
sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin prohibit-password/' /etc/ssh/sshd_config
|
||||
sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication no/' /etc/ssh/sshd_config
|
||||
|
||||
# Set hostname
|
||||
hostnamectl set-hostname ${TARGET_HOSTNAME}
|
||||
|
||||
# Leave a breadcrumb
|
||||
sed -i 's/^#\\?PermitRootLogin.*/PermitRootLogin prohibit-password/' /etc/ssh/sshd_config
|
||||
sed -i 's/^#\\?PasswordAuthentication.*/PasswordAuthentication no/' /etc/ssh/sshd_config
|
||||
hostnamectl set-hostname {hostname}
|
||||
echo "Provisioned by lab-bastion on $(date -Iseconds)" > /etc/lab-provisioned
|
||||
|
||||
# Placeholder: puppet enrollment will go here later
|
||||
# puppet is not installed yet — this IS the puppet server
|
||||
echo "# Lab bootstrap node — puppet server setup pending" > /root/README
|
||||
|
||||
echo "# Lab node — puppet enrollment pending" > /root/README
|
||||
%end
|
||||
KICKSTART
|
||||
"""
|
||||
|
||||
log "Kickstart written to ${HTTPDIR}/ks.cfg"
|
||||
# ── Pretty terminal output ────────────────────────────────────────
|
||||
|
||||
# ──── Generate iPXE boot script ───────────────────────────────────
|
||||
cat > "$HTTPDIR/boot.ipxe" << IPXE
|
||||
#!ipxe
|
||||
RESET = "\033[0m"
|
||||
BOLD = "\033[1m"
|
||||
GREEN = "\033[0;32m"
|
||||
YELLOW = "\033[1;33m"
|
||||
CYAN = "\033[0;36m"
|
||||
RED = "\033[0;31m"
|
||||
|
||||
def print_discovery(mac, hw, is_new):
|
||||
"""Print a discovered machine to the bastion terminal."""
|
||||
label = "NEW MACHINE DISCOVERED" if is_new else "MACHINE RE-DISCOVERED"
|
||||
color = GREEN if is_new else YELLOW
|
||||
|
||||
# Format disk summary
|
||||
disks = hw.get('disks', [])
|
||||
disk_str = ", ".join(
|
||||
f"{d.get('size_gb', '?')}GB {d.get('model', '?')}"
|
||||
for d in disks
|
||||
) or "none detected"
|
||||
|
||||
# Format NIC summary
|
||||
nics = hw.get('nics', [])
|
||||
nic_str = ", ".join(n.get('name', '?') for n in nics) or "none"
|
||||
|
||||
print(f"\n{color}{BOLD}{'═' * 60}")
|
||||
print(f" {label}")
|
||||
print(f"{'═' * 60}{RESET}")
|
||||
print(f" {BOLD}MAC:{RESET} {mac}")
|
||||
print(f" {BOLD}Product:{RESET} {hw.get('manufacturer', '?')} {hw.get('product', '?')}")
|
||||
print(f" {BOLD}CPU:{RESET} {hw.get('cpu_model', '?')} ({hw.get('cpu_cores', '?')} cores)")
|
||||
print(f" {BOLD}RAM:{RESET} {hw.get('memory_gb', '?')} GB")
|
||||
print(f" {BOLD}Arch:{RESET} {hw.get('arch', '?')}")
|
||||
print(f" {BOLD}Disks:{RESET} {disk_str}")
|
||||
print(f" {BOLD}NICs:{RESET} {nic_str}")
|
||||
print(f" {BOLD}Serial:{RESET} {hw.get('serial', '?')}")
|
||||
print()
|
||||
print(f" {CYAN}To install Fedora on this machine:{RESET}")
|
||||
print(f" {BOLD}bash bastion.sh install {mac} <hostname>{RESET}")
|
||||
print(f"\n{'─' * 60}\n", flush=True)
|
||||
|
||||
def print_install_queued(mac, hostname):
|
||||
print(f"\n{GREEN}{BOLD} INSTALL QUEUED{RESET}")
|
||||
print(f" {mac} → hostname={BOLD}{hostname}{RESET}")
|
||||
print(f" PXE boot the machine to start Fedora installation.")
|
||||
print(f"\n{'─' * 60}\n", flush=True)
|
||||
|
||||
def print_install_started(mac, hostname):
|
||||
print(f"\n{CYAN}{BOLD} INSTALL STARTED{RESET}")
|
||||
print(f" {mac} → {BOLD}{hostname}{RESET}")
|
||||
print(f" Serving Fedora {FEDORA_VER} installer + kickstart...")
|
||||
print(f"\n{'─' * 60}\n", flush=True)
|
||||
|
||||
# ── HTTP Handler ──────────────────────────────────────────────────
|
||||
|
||||
class BastionHandler(SimpleHTTPRequestHandler):
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, directory=HTTP_DIR, **kwargs)
|
||||
|
||||
def log_message(self, format, *args):
|
||||
"""Suppress default HTTP access logs — we have our own output."""
|
||||
pass
|
||||
|
||||
def send_text(self, code, text, content_type="text/plain"):
|
||||
self.send_response(code)
|
||||
self.send_header("Content-Type", content_type)
|
||||
self.end_headers()
|
||||
self.wfile.write(text.encode())
|
||||
|
||||
def send_json(self, code, data):
|
||||
self.send_text(code, json.dumps(data, indent=2), "application/json")
|
||||
|
||||
def do_GET(self):
|
||||
parsed = urlparse(self.path)
|
||||
|
||||
# ── iPXE dispatch: route to discover or install based on MAC ──
|
||||
if parsed.path == "/dispatch":
|
||||
params = parse_qs(parsed.query)
|
||||
mac = params.get("mac", [""])[0].lower().replace("-", ":")
|
||||
state = load_state()
|
||||
|
||||
if mac in state.get("install_queue", {}):
|
||||
cfg = state["install_queue"][mac]
|
||||
hostname = cfg.get("hostname", "lab-node")
|
||||
print_install_started(mac, hostname)
|
||||
script = f"""#!ipxe
|
||||
|
||||
echo
|
||||
echo =======================================
|
||||
echo Lab PXE Bastion — Fedora ${FEDORA_VERSION}
|
||||
echo Target: ${TARGET_HOSTNAME}
|
||||
echo =======================================
|
||||
echo =============================================
|
||||
echo Lab PXE Bastion — INSTALLING Fedora {FEDORA_VER}
|
||||
echo Target: {hostname}
|
||||
echo MAC: {mac}
|
||||
echo =============================================
|
||||
echo
|
||||
|
||||
kernel http://${SERVER_IP}:${HTTP_PORT}/vmlinuz inst.ks=http://${SERVER_IP}:${HTTP_PORT}/ks.cfg inst.repo=${FEDORA_MIRROR} inst.text
|
||||
initrd http://${SERVER_IP}:${HTTP_PORT}/initrd.img
|
||||
kernel http://{SERVER_IP}:{HTTP_PORT}/vmlinuz inst.ks=http://{SERVER_IP}:{HTTP_PORT}/ks?mac={mac} inst.repo={FEDORA_MIRROR} inst.text
|
||||
initrd http://{SERVER_IP}:{HTTP_PORT}/initrd.img
|
||||
boot
|
||||
IPXE
|
||||
"""
|
||||
self.send_text(200, script)
|
||||
else:
|
||||
print(f" {YELLOW}PXE request from {mac} → discovery mode{RESET}", flush=True)
|
||||
script = f"""#!ipxe
|
||||
|
||||
echo
|
||||
echo =============================================
|
||||
echo Lab PXE Bastion — DISCOVERY MODE
|
||||
echo MAC: {mac}
|
||||
echo Collecting hardware info...
|
||||
echo =============================================
|
||||
echo
|
||||
|
||||
kernel http://{SERVER_IP}:{HTTP_PORT}/vmlinuz inst.ks=http://{SERVER_IP}:{HTTP_PORT}/discover.ks inst.text
|
||||
initrd http://{SERVER_IP}:{HTTP_PORT}/initrd.img
|
||||
boot
|
||||
"""
|
||||
self.send_text(200, script)
|
||||
return
|
||||
|
||||
# ── Per-MAC kickstart for install mode ──
|
||||
if parsed.path == "/ks":
|
||||
params = parse_qs(parsed.query)
|
||||
mac = params.get("mac", [""])[0].lower().replace("-", ":")
|
||||
state = load_state()
|
||||
cfg = state.get("install_queue", {}).get(mac, {})
|
||||
ks = generate_kickstart(
|
||||
hostname=cfg.get("hostname", "lab-node"),
|
||||
disk=cfg.get("disk", ""),
|
||||
ssh_key=SSH_KEY,
|
||||
)
|
||||
self.send_text(200, ks)
|
||||
return
|
||||
|
||||
# ── API: list machines ──
|
||||
if parsed.path == "/api/machines":
|
||||
self.send_json(200, load_state())
|
||||
return
|
||||
|
||||
# ── Static files (vmlinuz, initrd, discover.ks, etc.) ──
|
||||
super().do_GET()
|
||||
|
||||
def do_POST(self):
|
||||
parsed = urlparse(self.path)
|
||||
content_length = int(self.headers.get("Content-Length", 0))
|
||||
body = self.rfile.read(content_length)
|
||||
|
||||
# ── Discovery report from PXE-booted machine ──
|
||||
if parsed.path == "/api/discover":
|
||||
try:
|
||||
data = json.loads(body)
|
||||
except json.JSONDecodeError:
|
||||
self.send_json(400, {"error": "invalid JSON"})
|
||||
return
|
||||
|
||||
mac = data.get("mac", "unknown").lower()
|
||||
data["last_seen"] = datetime.now().isoformat()
|
||||
|
||||
state = load_state()
|
||||
is_new = mac not in state.get("discovered", {})
|
||||
if is_new:
|
||||
data["first_seen"] = data["last_seen"]
|
||||
else:
|
||||
data["first_seen"] = state["discovered"][mac].get("first_seen", data["last_seen"])
|
||||
|
||||
state.setdefault("discovered", {})[mac] = data
|
||||
save_state(state)
|
||||
|
||||
print_discovery(mac, data, is_new)
|
||||
|
||||
self.send_json(200, {"status": "ok", "mac": mac, "new": is_new})
|
||||
return
|
||||
|
||||
# ── Queue a machine for install ──
|
||||
if parsed.path == "/api/install":
|
||||
try:
|
||||
data = json.loads(body)
|
||||
except json.JSONDecodeError:
|
||||
self.send_json(400, {"error": "invalid JSON"})
|
||||
return
|
||||
|
||||
mac = data.get("mac", "").lower().replace("-", ":")
|
||||
hostname = data.get("hostname", "lab-node")
|
||||
disk = data.get("disk", "")
|
||||
|
||||
if not mac:
|
||||
self.send_json(400, {"error": "mac is required"})
|
||||
return
|
||||
|
||||
state = load_state()
|
||||
state.setdefault("install_queue", {})[mac] = {
|
||||
"hostname": hostname,
|
||||
"disk": disk,
|
||||
"queued_at": datetime.now().isoformat(),
|
||||
}
|
||||
save_state(state)
|
||||
|
||||
print_install_queued(mac, hostname)
|
||||
|
||||
self.send_json(200, {
|
||||
"status": "queued",
|
||||
"mac": mac,
|
||||
"hostname": hostname,
|
||||
"message": "PXE boot the machine to start installation",
|
||||
})
|
||||
return
|
||||
|
||||
self.send_json(404, {"error": "not found"})
|
||||
|
||||
|
||||
def run_server():
|
||||
server = HTTPServer(("0.0.0.0", HTTP_PORT), BastionHandler)
|
||||
print(f"HTTP server listening on :{HTTP_PORT}", flush=True)
|
||||
server.serve_forever()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
run_server()
|
||||
PYSERVER
|
||||
|
||||
# ──── Generate dnsmasq config ─────────────────────────────────────
|
||||
cat > "$BASTION_DIR/dnsmasq.conf" << DNSMASQ
|
||||
@@ -271,65 +685,72 @@ dhcp-boot=tag:efi64,tag:!ipxe,ipxe.efi
|
||||
# iPXE clients → chain to boot script via HTTP
|
||||
dhcp-boot=tag:ipxe,http://${SERVER_IP}:${HTTP_PORT}/boot.ipxe
|
||||
|
||||
# Verbose logging (see what's happening)
|
||||
# Verbose logging
|
||||
log-dhcp
|
||||
DNSMASQ
|
||||
|
||||
# ──── Open firewall ───────────────────────────────────────────────
|
||||
# ──── Open firewall ──────────────────────────────────────────────
|
||||
if command -v firewall-cmd >/dev/null && firewall-cmd --state >/dev/null 2>&1; then
|
||||
log "Opening firewall ports (DHCP, TFTP, HTTP:${HTTP_PORT})..."
|
||||
firewall-cmd --quiet --add-service=dhcp
|
||||
firewall-cmd --quiet --add-service=tftp
|
||||
firewall-cmd --quiet --add-port=${HTTP_PORT}/tcp
|
||||
# ProxyDHCP uses port 4011
|
||||
firewall-cmd --quiet --add-port=4011/udp 2>/dev/null || true
|
||||
FW_OPENED=true
|
||||
fi
|
||||
|
||||
# ──── Stop conflicting services ───────────────────────────────────
|
||||
# dnsmasq might be running as a system service
|
||||
if systemctl is-active --quiet dnsmasq 2>/dev/null; then
|
||||
warn "System dnsmasq is running — stopping it temporarily"
|
||||
systemctl stop dnsmasq
|
||||
RESTART_DNSMASQ=true
|
||||
fi
|
||||
|
||||
# ──── Start HTTP server ───────────────────────────────────────────
|
||||
# ──── Start HTTP server ──────────────────────────────────────────
|
||||
log "Starting HTTP server on :${HTTP_PORT}..."
|
||||
(cd "$HTTPDIR" && python3 -m http.server "$HTTP_PORT" --bind 0.0.0.0 >/dev/null 2>&1) &
|
||||
python3 "$BASTION_DIR/server.py" \
|
||||
"$HTTPDIR" \
|
||||
"$STATEFILE" \
|
||||
"$SERVER_IP" \
|
||||
"$HTTP_PORT" \
|
||||
"$FEDORA_VERSION" \
|
||||
"$FEDORA_MIRROR" \
|
||||
"$SSH_KEY_CONTENT" \
|
||||
"$TIMEZONE" \
|
||||
"$LOCALE" &
|
||||
HTTP_PID=$!
|
||||
sleep 0.5
|
||||
sleep 1
|
||||
|
||||
if ! kill -0 "$HTTP_PID" 2>/dev/null; then
|
||||
die "HTTP server failed to start — is port ${HTTP_PORT} in use?"
|
||||
fi
|
||||
|
||||
# ──── Start dnsmasq (proxyDHCP + TFTP) ────────────────────────────
|
||||
# ──── Start dnsmasq ──────────────────────────────────────────────
|
||||
log "Starting PXE server (proxyDHCP on ${IFACE})..."
|
||||
echo ""
|
||||
echo -e "${CYAN}${BOLD}════════════════════════════════════════════════════════${NC}"
|
||||
echo -e "${CYAN}${BOLD} PXE Bastion ready!${NC}"
|
||||
echo -e "${CYAN}${BOLD}════════════════════════════════════════════════════════${NC}"
|
||||
echo -e "${CYAN}${BOLD}════════════════════════════════════════════════════════════${NC}"
|
||||
echo -e "${CYAN}${BOLD} Lab PXE Bastion — Discovery Mode${NC}"
|
||||
echo -e "${CYAN}${BOLD}════════════════════════════════════════════════════════════${NC}"
|
||||
echo ""
|
||||
echo -e " Network: ${BOLD}${NETWORK}/24${NC} via ${BOLD}${IFACE}${NC}"
|
||||
echo -e " HTTP: ${BOLD}http://${SERVER_IP}:${HTTP_PORT}/${NC}"
|
||||
echo -e " OS: ${BOLD}Fedora ${FEDORA_VERSION} (${ARCH})${NC}"
|
||||
echo -e " Hostname: ${BOLD}${TARGET_HOSTNAME}${NC}"
|
||||
echo -e " Kickstart: ${BOLD}http://${SERVER_IP}:${HTTP_PORT}/ks.cfg${NC}"
|
||||
echo -e " State: ${BOLD}${STATEFILE}${NC}"
|
||||
echo ""
|
||||
echo -e " ${YELLOW}Now PXE-boot the target machine.${NC}"
|
||||
echo -e " ${YELLOW}Set boot order to Network/PXE in BIOS, or use one-time boot menu.${NC}"
|
||||
echo -e " ${YELLOW}PXE boot any machine on this network.${NC}"
|
||||
echo -e " ${YELLOW}It will be inventoried and powered off automatically.${NC}"
|
||||
echo ""
|
||||
echo -e " Press ${BOLD}Ctrl-C${NC} to stop the bastion."
|
||||
echo -e " Commands (from another terminal):"
|
||||
echo -e " ${BOLD}bash bastion.sh list${NC} — show machines"
|
||||
echo -e " ${BOLD}bash bastion.sh install <mac> <hostname>${NC} — queue install"
|
||||
echo ""
|
||||
echo -e "${CYAN}──── dnsmasq log (watch for DHCP/PXE requests) ────${NC}"
|
||||
echo -e " Press ${BOLD}Ctrl-C${NC} to stop."
|
||||
echo ""
|
||||
echo -e "${CYAN}──── Waiting for PXE boot requests... ────${NC}"
|
||||
echo ""
|
||||
|
||||
# Run dnsmasq in foreground so logs stream to terminal
|
||||
dnsmasq --no-daemon --conf-file="$BASTION_DIR/dnsmasq.conf" &
|
||||
DNSMASQ_PID=$!
|
||||
|
||||
# Wait for dnsmasq — if it exits, something went wrong
|
||||
wait "$DNSMASQ_PID" || {
|
||||
err "dnsmasq exited unexpectedly. Check if another DHCP/TFTP service is running."
|
||||
err "Try: ss -ulnp | grep -E ':(67|69|4011) '"
|
||||
|
||||
Reference in New Issue
Block a user