- 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>
3.9 KiB
DeFi Oracle Meta Mainnet Connectivity - Complete Diagnosis
Date: 2026-01-09
ChainID: 138 (0x8a)
Status: ⚠️ Internal Endpoints Working, Public Endpoints Down
Executive Summary
Internal RPC endpoints are fully operational, but public endpoints via Cloudflare tunnel are not accessible. This means:
- ✅ Internal network access: Working perfectly
- ❌ External/public access: Not working (Cloudflare tunnel issue)
✅ Working Endpoints (Internal Network)
All internal RPC endpoints are responding correctly:
-
RPC Translator:
http://192.168.11.240:9545✅- ChainID:
0x8a(138) - Status: Fully operational
- ChainID:
-
Core RPC:
http://192.168.11.250:8545✅- ChainID:
0x8a(138) - Status: Fully operational
- ChainID:
-
Permissioned RPC:
http://192.168.11.251:8545✅- ChainID:
0x8a(138) - Status: Fully operational
- ChainID:
-
Public RPC:
http://192.168.11.252:8545✅- ChainID:
0x8a(138) - Status: Fully operational
- ChainID:
❌ Non-Working Endpoints (Public/External)
Public endpoints via Cloudflare tunnel are returning error 1033:
- rpc-http-pub.d-bis.org: ❌ Cloudflare error 1033
- rpc-core.d-bis.org: ❌ Connection failed
- rpc.d-bis.org: ❌ Connection failed
Root Cause: Cloudflare tunnel (VMID 102) is not running or misconfigured.
Issue Analysis
Cloudflare Tunnel Status
- VMID 102: Status unknown (needs verification)
- cloudflared binary: Not found in container
- cloudflared service: Not running or not configured
Expected Routing
Internet → Cloudflare → cloudflared (VMID 102) → Central Nginx (VMID 105) → RPC Node (VMID 2502)
Current Status: Tunnel is not operational, breaking the chain.
Solutions
Option 1: Use Internal Endpoints (Immediate Solution)
If you're on the internal network (192.168.11.0/24), use these endpoints:
For MetaMask/dApps:
http://192.168.11.240:9545(RPC Translator - ThirdWeb compatible)http://192.168.11.250:8545(Core RPC)
For Development:
http://192.168.11.251:8545(Permissioned RPC)http://192.168.11.252:8545(Public RPC)
Option 2: Fix Cloudflare Tunnel (For External Access)
To restore public endpoint access:
- Install/Configure cloudflared on VMID 102
- Configure tunnel in Cloudflare dashboard
- Set up routing to central Nginx (VMID 105)
- Verify tunnel is running
Recommended Action
For immediate use: Use internal endpoints if you're on the same network.
For public access: The Cloudflare tunnel needs to be configured and started. This requires:
- Cloudflare Zero Trust account access
- Tunnel configuration in Cloudflare dashboard
- cloudflared service running on VMID 102
Testing Commands
Test Internal Endpoints
# RPC Translator
curl -X POST http://192.168.11.240:9545 \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'
# Core RPC
curl -X POST http://192.168.11.250:8545 \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'
Test Public Endpoints
# Should work once tunnel is fixed
curl -X POST https://rpc-http-pub.d-bis.org \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'
Next Steps
- ✅ Internal endpoints verified working - Use these for now
- ⏳ Fix Cloudflare tunnel - Install and configure cloudflared on VMID 102
- ⏳ Configure tunnel routing - Set up hostname routing in Cloudflare dashboard
- ⏳ Test public endpoints - Verify external access works
References
- Connection Guide:
reports/DEFI_ORACLE_MAINNET_CONNECTION_GUIDE.md - Cloudflare Tunnel Config:
docs/04-configuration/cloudflare/CLOUDFLARE_TUNNEL_CONFIGURATION_GUIDE.md - Network Architecture:
docs/05-network/CLOUDFLARE_TUNNEL_ROUTING_ARCHITECTURE.md