Files
proxmox/reports/r630-02-network-config-review.md
defiQUG fbda1b4beb
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
docs: Ledger Live integration, contract deploy learnings, NEXT_STEPS updates
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands
- CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround
- CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check
- NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere
- MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates
- LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 15:46:57 -08:00

5.0 KiB

r630-02 Network Configuration Review

Date: $(date +%Y-%m-%d)
Host: r630-02 (192.168.11.12)
Review Script: scripts/review-r630-02-network-configs.sh


Host Network Configuration

Bridge Configuration

  • Bridge: vmbr0
  • Host IP: 192.168.11.12/24
  • Gateway: 192.168.11.1
  • Status: UP
  • MTU: 1500

Routing

  • Default Route: 192.168.11.1 via vmbr0
  • Local Network: 192.168.11.0/24

LXC Container Network Configurations

Container: 5000 - blockscout-1

  • Status: Running
  • Hostname: blockscout-1
  • Interface: eth0
  • Bridge: vmbr0
  • IP Address: 192.168.11.140/24
  • Gateway: 192.168.11.1
  • MAC Address: BC:24:11:3C:58:2B
  • Type: veth
  • VLAN Tag: None (untagged)

Container: 6200 - firefly-1

  • Status: Running
  • Hostname: firefly-1
  • Interface: eth0
  • Bridge: vmbr0
  • IP Address: 192.168.11.35/24
  • Gateway: 192.168.11.1
  • MAC Address: BC:24:11:8F:0B:84
  • Type: veth
  • VLAN Tag: None (untagged)

Container: 6201 - firefly-ali-1

  • Status: Running
  • Hostname: firefly-ali-1
  • Interface: eth0
  • Bridge: vmbr0
  • IP Address: 192.168.11.57/24
  • Gateway: 192.168.11.1
  • MAC Address: BC:24:11:A7:74:23
  • Type: veth
  • VLAN Tag: None (untagged)

Container: 7810 - mim-web-1

  • Status: Running
  • Hostname: mim-web-1
  • Interface: eth0
  • Bridge: vmbr0
  • IP Address: 192.168.11.37/24
  • Gateway: 192.168.11.1
  • MAC Address: BC:24:11:00:78:10
  • Type: veth
  • VLAN Tag: None (untagged)

Container: 7811 - mim-api-1

  • Status: Running
  • Hostname: mim-api-1
  • Interface: eth0
  • Bridge: vmbr0
  • IP Address: 192.168.11.36/24
  • Gateway: 192.168.11.1
  • MAC Address: BC:24:11:A9:5C:35
  • Type: veth
  • VLAN Tag: None (untagged)

Container: 8641 - vault-phoenix-2

  • Status: Running
  • Hostname: vault-phoenix-2
  • Interface: eth0
  • Bridge: vmbr0
  • IP Address: 192.168.11.201/24
  • Gateway: 192.168.11.1
  • MAC Address: BC:24:11:DA:A1:7F
  • Type: veth
  • VLAN Tag: None (untagged)

Container: 10234 - npmplus-secondary

  • Status: Running
  • Hostname: npmplus-secondary
  • Interface: eth0
  • Bridge: vmbr0
  • IP Address: 192.168.11.167/24
  • Gateway: 192.168.11.1
  • MAC Address: BC:24:11:8D:EC:B7
  • Type: veth
  • VLAN Tag: None (untagged)

QEMU/KVM VMs

No QEMU/KVM VMs found on r630-02


Summary

Container Statistics

  • Total Containers: 7
  • Running Containers: 7
  • Stopped Containers: 0
  • Total VMs: 0

Network Summary

IP Address Allocation

All containers are on the 192.168.11.0/24 network:

VMID Name IP Address Purpose
5000 blockscout-1 192.168.11.140 Blockscout Explorer
6200 firefly-1 192.168.11.35 Firefly Wallet
6201 firefly-ali-1 192.168.11.57 Firefly Wallet (Ali)
7810 mim-web-1 192.168.11.37 MIM4U Web Frontend
7811 mim-api-1 192.168.11.36 MIM4U API Backend
8641 vault-phoenix-2 192.168.11.201 Phoenix Vault Node 2
10234 npmplus-secondary 192.168.11.167 NPMplus Secondary (HA)

Network Configuration Patterns

Common Configuration:

  • All containers use vmbr0 bridge
  • All containers use eth0 interface
  • All containers use veth type
  • All containers have static IP addresses
  • All containers use gateway 192.168.11.1
  • No VLAN tags configured (all on native/untagged VLAN)

MAC Address Pattern:

  • All MAC addresses follow pattern: BC:24:11:XX:XX:XX
  • MAC addresses appear to be auto-generated by Proxmox

Observations

Strengths

  1. Consistent Configuration: All containers follow the same network configuration pattern
  2. Static IPs: All containers have static IP addresses (no DHCP)
  3. All Running: All 7 containers are currently running
  4. Proper Gateway: All containers configured with correct gateway

⚠️ Considerations

  1. No VLAN Tagging: All containers are on untagged/native VLAN
    • According to network architecture, containers should potentially be on VLAN 11
    • Current setup works but may not align with VLAN segmentation plan
  2. Single Bridge: All containers use vmbr0 (appropriate for current setup)
  3. No VMs: No QEMU/KVM VMs currently deployed on this host

📋 Recommendations

  1. VLAN Migration: Consider migrating containers to VLAN 11 if network segmentation is required
  2. Documentation: Network configuration is well-documented and consistent
  3. Monitoring: All containers are operational and network connectivity appears healthy

Network Architecture Notes

Based on the network architecture documentation:

  • vmbr0 is VLAN-aware bridge
  • Native VLAN: 1 (untagged)
  • Target VLAN: 11 (MGMT-LAN) - for management network
  • Current containers are on native VLAN, not VLAN 11

Review completed successfully. All network configurations are consistent and operational.