- 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>
6.9 KiB
VLAN 11 Gateway Issue - Diagnosis & Solution
Last Updated: 2026-01-14
Issue: Gateway 192.168.11.1 is not reachable from dev machine (192.168.11.4)
Status: ⚠️ Gateway unreachable, but VLAN utilization still functional
Issue Summary
Symptoms
- ✅ IP Configuration: Correct (192.168.11.4/24)
- ✅ Proxmox Hosts: All reachable (192.168.11.10-12)
- ❌ Gateway 192.168.11.1: Not reachable (ARP FAILED)
- ❌ Default Gateway 192.168.0.1: Also not reachable
Network Status
# Current IP
inet 192.168.11.4/24 brd 192.168.11.255 scope global noprefixroute eth0
# Routing
default via 192.168.11.1 dev eth0 proto kernel metric 25
192.168.11.0/24 dev eth0 proto kernel scope link metric 281
# ARP Table
192.168.11.10 dev eth0 lladdr 1c:98:ec:52:43:c8 REACHABLE ✅
192.168.11.11 dev eth0 lladdr 20:47:47:7e:37:6c REACHABLE ✅
192.168.11.1 dev eth0 FAILED ❌
Root Cause Analysis
Possible Causes
-
UDM Pro VLAN 11 Interface Not Configured
- UDM Pro might not have an active interface on 192.168.11.1
- VLAN 11 might be configured but gateway IP not assigned
-
Firewall Blocking ICMP
- UDM Pro firewall might block ICMP to gateway IP
- Zone-based firewall rules might prevent gateway access
-
UDM Pro Routing Configuration
- UDM Pro might route VLAN 11 through Default network
- Gateway might actually be 192.168.0.1 (Default network)
-
Network Isolation Settings
- Network Isolation might be enabled (unlikely, as Proxmox hosts are reachable)
- Zone Matrix might block gateway access
Impact Assessment
✅ What Still Works
-
VLAN Utilization - ✅ FULLY FUNCTIONAL
- Can assign VMs/containers to VLANs
- Proxmox hosts accessible
- Inter-VLAN routing should work (if configured)
-
Proxmox Access - ✅ WORKING
- All Proxmox hosts reachable
- Web UI accessible
- SSH access working
-
Local Network Communication - ✅ WORKING
- Same-subnet communication works
- Proxmox hosts can communicate
⚠️ What Might Not Work
-
Internet Access - ⚠️ MIGHT BE LIMITED
- Default route points to unreachable gateway
- Internet connectivity might be blocked
-
Inter-VLAN Routing - ⚠️ NEEDS VERIFICATION
- Routing to other VLANs might not work
- Depends on UDM Pro routing configuration
-
Gateway Management - ⚠️ BLOCKED
- Cannot access UDM Pro via 192.168.11.1
- Must use Default network (192.168.0.1) for management
Solutions
Solution 1: Verify UDM Pro VLAN 11 Configuration (Recommended)
Check UDM Pro Web UI:
-
Access UDM Pro:
- URL: https://192.168.0.1 (Default network)
- Login: unifi_api / L@kers2010$$
-
Navigate to VLAN 11:
- Settings → Networks → MGMT-LAN
-
Verify Gateway IP:
- Check "Gateway IP" field
- Should be: 192.168.11.1
- If different, note the actual IP
-
Check Network Isolation:
- Ensure "Isolate Network" is UNCHECKED
- Save if changed
-
Check Zone Matrix:
- Policy Engine → Zone Matrix
- Verify Internal → Internal = Allow All
Solution 2: Use Default Network Gateway (Workaround)
If UDM Pro routes VLAN 11 through Default network:
-
Update Gateway:
sudo ip route del default via 192.168.11.1 sudo ip route add default via 192.168.0.1 dev eth1 # If eth1 is Default network -
Or Update Netplan:
network: version: 2 ethernets: eth0: addresses: - 192.168.11.4/24 # Remove gateway4 or set to 192.168.0.1
Note: This is a workaround. Proper solution is to configure UDM Pro VLAN 11 gateway.
Solution 3: Check UDM Pro Firewall Rules
Via UDM Pro Web UI:
- Navigate: Settings → Firewall & Security → Firewall Rules
- Check for rules blocking:
- ICMP to gateway
- Management access to 192.168.11.1
- Add rule if needed:
- Allow ICMP from VLAN 11 to Gateway
Solution 4: Verify UDM Pro VLAN 11 Interface
Check if UDM Pro has VLAN 11 interface:
-
SSH to UDM Pro (if possible):
ssh root@192.168.0.1 -
Check interfaces:
ip addr show | grep 192.168.11 -
If no interface found:
- UDM Pro VLAN 11 might not be properly configured
- Reconfigure VLAN 11 in UDM Pro web UI
Verification Steps
Test 1: Verify Proxmox Access
# Should work
ping -c 3 192.168.11.10 # ml110
ping -c 3 192.168.11.11 # r630-01
ping -c 3 192.168.11.12 # r630-02
Test 2: Test Gateway (Should Fail)
# Will fail
ping -c 3 192.168.11.1
Test 3: Test Default Network Gateway
# Test if Default network gateway works
ping -c 3 192.168.0.1
Test 4: Test Internet Access
# Test internet connectivity
ping -c 3 8.8.8.8
Test 5: Test Inter-VLAN Routing (After VLANs Created)
# After creating VLANs, test routing
ping -c 3 10.110.0.1 # BESU-VAL gateway
Impact on VLAN Utilization
✅ Can Still Do
-
Assign VMs/Containers to VLANs
- Proxmox VLAN assignment works
- Bridge VLAN support verified
-
Access Proxmox Hosts
- All hosts accessible
- Web UI working
- SSH working
-
Create Additional VLANs
- Via UDM Pro web UI (from Default network)
- Configuration will work
-
Configure Firewall Rules
- Via UDM Pro web UI
- Rules will apply correctly
⚠️ Limitations
-
Internet Access
- Might be limited if gateway unreachable
- May need to use Default network for internet
-
Gateway Management
- Cannot access UDM Pro via 192.168.11.1
- Must use 192.168.0.1 (Default network)
-
Inter-VLAN Routing
- Needs verification after creating VLANs
- Should work if UDM Pro routing is configured
Recommended Actions
Immediate (Optional)
-
Verify UDM Pro VLAN 11 Configuration
- Check gateway IP in UDM Pro web UI
- Ensure Network Isolation is disabled
-
Test Internet Access
- If internet works, gateway issue is non-critical
- If internet doesn't work, consider workaround
Short-term (This Week)
-
Fix UDM Pro VLAN 11 Gateway
- Reconfigure if needed
- Verify interface is active
-
Test Inter-VLAN Routing
- Create test VLAN
- Verify routing works
Long-term (This Month)
- Complete VLAN Plan
- Create all 18 VLANs
- Verify routing between VLANs
- Configure firewall rules
Conclusion
Status: ⚠️ Gateway unreachable, but VLAN utilization functional
Key Points:
- ✅ VLAN utilization can proceed
- ✅ Proxmox access working
- ⚠️ Gateway needs verification/fix
- ⚠️ Internet access might be limited
Recommendation:
- Verify UDM Pro VLAN 11 configuration
- Proceed with VLAN utilization (gateway issue is non-blocking)
- Fix gateway as time permits
VLAN Plan Status: ✅ READY TO UTILIZE (gateway issue is non-blocking)
Last Updated: 2026-01-14