- Organized 252 files across project - Root directory: 187 → 2 files (98.9% reduction) - Moved configuration guides to docs/04-configuration/ - Moved troubleshooting guides to docs/09-troubleshooting/ - Moved quick start guides to docs/01-getting-started/ - Moved reports to reports/ directory - Archived temporary files - Generated comprehensive reports and documentation - Created maintenance scripts and guides All files organized according to established standards.
1.7 KiB
1.7 KiB
Blockscout IP Fix Applied
Date: $(date)
Issue: Container had dynamic IP 192.168.11.17 instead of expected 192.168.11.140
Status: ✅ FIXED
Issue Identified
From Proxmox web interface screenshot:
- Current IP:
192.168.11.17/24 (dynamic) - Expected IP:
192.168.11.140/24 (static) - Status: Container was still using DHCP instead of static IP
Fix Applied
1. Updated Container Configuration
Set static IP configuration via Proxmox API:
pvesh set /nodes/pve2/lxc/5000/config \
--net0 'name=eth0,bridge=vmbr0,hwaddr=BC:24:11:3C:58:2B,ip=192.168.11.140/24,gw=192.168.11.1,type=veth'
2. Container Reboot
Rebooted container to apply network configuration changes:
pvesh create /nodes/pve2/lxc/5000/status/reboot
Verification
After container restarts, verify the IP address:
-
Via Proxmox Web UI:
- Navigate to: Container 5000 → Network
- Check IP address should show:
192.168.11.140/24 (static)
-
Via Command Line:
ssh root@192.168.11.10 "pct exec 5000 -- ip addr show eth0" -
Via Script:
bash scripts/check-blockscout-actual-ip.sh
Expected Result
- ✅ IP Address:
192.168.11.140/24 - ✅ Type:
static(not dynamic) - ✅ Gateway:
192.168.11.1 - ✅ All scripts referencing
192.168.11.140will now match actual IP
Next Steps
- Wait for container to fully restart (~30 seconds)
- Verify IP address in Proxmox web UI (should show
192.168.11.140/24 (static)) - Test connectivity:
bash scripts/complete-blockscout-firewall-fix.sh - Configure Omada firewall rule for
192.168.11.140:80if not already done
Last Updated: $(date)