Files
proxmox/docs/04-configuration/DUAL_NETWORK_ACCESS_COMPLETE.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.3 KiB

Dual Network Access - Configuration Complete

Last Updated: 2026-01-15
Status: FULLY OPERATIONAL


🎉 Achievement Unlocked: Dual Network Access

Your machine now has simultaneous access to both:

  • Default VLAN (192.168.0.0/24) - UDM Pro management
  • VLAN 11 - MGMT-LAN (192.168.11.0/24) - Proxmox hosts

Current Configuration

Network Interfaces

Primary Interface: eth0

IP Addresses:

  • 192.168.0.4/24 - Default network
  • 192.168.11.4/24 - VLAN 11 (MGMT-LAN)

Routes:

  • Default network: 192.168.0.0/24
  • VLAN 11: 192.168.11.0/24

Network Access

Default VLAN (192.168.0.0/24)

Accessible Resources:

  • UDM Pro Web UI: https://192.168.0.1

    • Network configuration
    • Firewall rules
    • VLAN management
    • Zone Matrix configuration
  • Other Default Network Devices:

    • Devices on 192.168.0.0/24
    • Internet gateway (if configured)

Your IP: 192.168.0.4


VLAN 11 - MGMT-LAN (192.168.11.0/24)

Accessible Resources:

Your IP: 192.168.11.4


What You Can Do Now

1. Manage UDM Pro

Access: https://192.168.0.1

Capabilities:

  • Configure all 19 VLANs
  • Set up firewall rules
  • Configure Zone Matrix
  • Manage network settings
  • Monitor network traffic

2. Manage Proxmox Hosts

Access: https://192.168.11.10:8006 (ml110)

Capabilities:

  • Create and manage VMs
  • Create and manage containers
  • Assign VLANs to VMs/containers
  • Configure storage
  • Monitor resources

3. Assign VMs/Containers to VLANs

Using Scripts:

# Assign container to VLAN
./scripts/proxmox/assign-vlan-to-container.sh <CTID> <VLAN_ID>

# Assign VM to VLAN
./scripts/proxmox/assign-vlan-to-vm.sh <VMID> <VLAN_ID>

# Batch migrate Besu containers
./scripts/proxmox/migrate-besu-to-vlans.sh ml110

Available VLANs:

  • 11 - MGMT-LAN (192.168.11.0/24)
  • 110 - BESU-VAL (10.110.0.0/24)
  • 111 - BESU-SEN (10.111.0.0/24)
  • 112 - BESU-RPC (10.112.0.0/24)
  • 120 - BLOCKSCOUT (10.120.0.0/24)
  • 121 - CACTI (10.121.0.0/24)
  • 130 - CCIP-OPS (10.130.0.0/24)
  • 132 - CCIP-COMMIT (10.132.0.0/24)
  • 133 - CCIP-EXEC (10.133.0.0/24)
  • 134 - CCIP-RMN (10.134.0.0/24)
  • 140 - FABRIC (10.140.0.0/24)
  • 141 - FIREFLY (10.141.0.0/24)
  • 150 - INDY (10.150.0.0/24)
  • 160 - SANKOFA-SVC (10.160.0.0/22)
  • 200 - PHX-SOV-SMOM (10.200.0.0/20)
  • 201 - PHX-SOV-ICCC (10.201.0.0/20)
  • 202 - PHX-SOV-DBIS (10.202.0.0/24)
  • 203 - PHX-SOV-AR (10.203.0.0/20)

4. Configure Firewall Rules

Via UDM Pro Web UI:

  • Settings → Firewall & Security → Firewall Rules
  • Configure inter-VLAN communication
  • Set up security policies

See: docs/04-configuration/UDM_PRO_VLAN_UTILIZATION_COMPLETE_GUIDE.md

5. Deploy Services

Follow Migration Plan:

  • Migrate existing containers to appropriate VLANs
  • Deploy new services on correct VLANs
  • Test inter-VLAN communication

See: docs/04-configuration/UDM_PRO_VLAN_MIGRATION_PLAN.md


Quick Reference

Access URLs

UDM Pro:

Proxmox Hosts:

SSH Access

# Proxmox hosts
ssh root@192.168.11.10  # ml110
ssh root@192.168.11.11  # r630-01
ssh root@192.168.11.12  # r630-02

Verification Commands

# Check IP addresses
ip addr show eth0 | grep "inet "

# Check routes
ip route show | grep "192.168"

# Test connectivity
ping -c 3 192.168.0.1   # UDM Pro
ping -c 3 192.168.11.1  # VLAN 11 gateway
ping -c 3 192.168.11.10 # ml110

Complete Status

Completed

  1. VLAN Configuration

    • All 19 VLANs configured on UDM Pro
    • Network Isolation disabled
    • Zone Matrix configured
  2. Network Access

    • Default network access (192.168.0.4)
    • VLAN 11 access (192.168.11.4)
    • Dual network access working
  3. Inter-VLAN Routing

    • All 17 VLAN gateways reachable
    • Routing 100% functional
  4. Proxmox Access

    • All Proxmox hosts accessible
    • Web UI accessible
    • SSH access working
  5. Automation Tools

    • VLAN assignment scripts
    • Migration scripts
    • Verification scripts

🎯 Ready For

  • Assigning VMs/containers to VLANs
  • Configuring firewall rules
  • Deploying services
  • Production use

Summary

Status: DUAL NETWORK ACCESS OPERATIONAL

You Now Have:

  • Access to UDM Pro (Default network)
  • Access to all Proxmox hosts (VLAN 11)
  • All 19 VLANs configured and ready
  • Complete automation tools
  • Full documentation

Next Steps:

  1. Assign VMs/containers to appropriate VLANs
  2. Configure firewall rules for inter-VLAN communication
  3. Deploy services according to VLAN plan
  4. Test and verify everything works

VLAN Plan Utilization: READY FOR PRODUCTION USE


Last Updated: 2026-01-15