- 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.
4.7 KiB
4.7 KiB
IP Conflict Resolution: 192.168.11.14
Date: 2026-01-05
Status: 🔄 CONFLICT IDENTIFIED - RESOLUTION IN PROGRESS
Conflict Summary
| Property | Value |
|---|---|
| IP Address | 192.168.11.14 |
| Assigned To | r630-04 Proxmox host |
| Currently Used By | Unknown device (Ubuntu system) |
| r630-04 Status | Powered OFF, runs Debian/Proxmox |
| Conflict Type | IP address hijacked/misconfigured |
Investigation Results
Device Using 192.168.11.14
| Property | Value |
|---|---|
| MAC Address | bc:24:11:ee:a6:ec |
| MAC Vendor | Proxmox Server Solutions GmbH |
| OS | Ubuntu (OpenSSH_8.9p1 Ubuntu-3ubuntu0.13) |
| SSH Port | ✅ OPEN |
| Proxmox Port | ❌ CLOSED |
| Cluster Status | ❌ NOT IN CLUSTER |
| Container Search | ❌ NOT FOUND in cluster containers |
r630-04 Physical Server
| Property | Value |
|---|---|
| Status | ✅ Powered OFF (confirmed) |
| OS | ✅ Debian/Proxmox (confirmed) |
| Assigned IP | 192.168.11.14 (should be) |
| Current IP | N/A (powered off) |
Root Cause Analysis
Most Likely Scenario
Orphaned LXC Container:
- An LXC container running Ubuntu is using 192.168.11.14
- Container was likely created on r630-04 before it was powered off
- Container may have been:
- Created with static IP 192.168.11.14
- Not properly removed when r630-04 was shut down
- Running on a different host but configured with r630-04's IP
Alternative Scenarios
-
Container on Different Host
- Container exists on ml110, r630-01, or r630-02
- Not visible in cluster view (orphaned)
- Needs to be found and removed/reconfigured
-
Misconfigured Device
- Another device manually configured with this IP
- Needs to be identified and reconfigured
Resolution Plan
Step 1: Locate the Container/Device
Actions:
# Check all Proxmox hosts for containers with this MAC or IP
for host in 192.168.11.10 192.168.11.11 192.168.11.12; do
echo "=== Checking $host ==="
ssh root@$host "pct list --all"
ssh root@$host "for vmid in \$(pct list | grep -v VMID | awk '{print \$1}'); do
pct config \$vmid 2>/dev/null | grep -E 'bc:24:11:ee:a6:ec|192.168.11.14' && echo \"VMID \$vmid on $host\";
done"
done
# Check QEMU VMs as well
for host in 192.168.11.10 192.168.11.11 192.168.11.12; do
ssh root@$host "qm list --all"
ssh root@$host "for vmid in \$(qm list | grep -v VMID | awk '{print \$1}'); do
qm config \$vmid 2>/dev/null | grep -E 'bc:24:11:ee:a6:ec|192.168.11.14' && echo \"VMID \$vmid on $host\";
done"
done
Step 2: Resolve the Conflict
Option A: If Container Found
- Identify the container (VMID and host)
- Stop the container
- Change container IP to different address (e.g., 192.168.11.28)
- Restart container with new IP
- Verify r630-04 can use 192.168.11.14 when powered on
Option B: If Container Not Found
- Check if device is on network segment we haven't checked
- Check router/switch ARP tables
- Consider blocking the IP at router level
- Reassign IP when r630-04 is powered on
Step 3: Verify Resolution
Actions:
- Power on r630-04
- Configure r630-04 with IP 192.168.11.14
- Verify no IP conflict
- Add r630-04 to cluster
- Update documentation
Impact Assessment
Current Impact
- Low: Doesn't affect current operations (r630-04 is off)
- Medium: Blocks r630-04 from using its assigned IP
- High: Will cause network issues when r630-04 is powered on
Resolution Priority
Priority: 🔴 HIGH
- Must be resolved before powering on r630-04
- Prevents network conflicts
- Enables proper r630-04 cluster integration
Recommended Actions
Immediate (Before Powering On r630-04)
-
Locate the conflicting device
- Search all Proxmox hosts thoroughly
- Check for orphaned containers
- Check router ARP tables
-
Resolve the conflict
- Stop/remove conflicting container
- Reassign IP if needed
- Document the change
-
Verify IP is available
- Confirm 192.168.11.14 is free
- Test connectivity
When Powering On r630-04
-
Configure r630-04
- Set IP to 192.168.11.14
- Verify no conflicts
- Join to cluster
-
Verify cluster integration
- Check cluster status
- Verify storage access
- Test migrations
Next Steps
- Execute container search (see Step 1 above)
- Identify conflicting device
- Resolve IP conflict
- Document resolution
- Prepare r630-04 for cluster join
Last Updated: 2026-01-05
Status: 🔄 RESOLUTION IN PROGRESS
Blocking: r630-04 cannot use assigned IP until conflict resolved