Manage Your Local AI Infrastructure from a Single Panel
AlafNode is the centralized control platform that allows you to securely manage your local AI servers, models, and providers.
Ubuntu Server (Homelab)
Ollama Running • 2 Models Active
RAM
14.2 / 32 GB
GPU (RTX 4090)
24 GB VRAM
Active Models
Common Challenges
- Managing multiple AI servers individually
- Inability to track model statuses
- Lack of visibility into active nodes
- No centralized view of local AI infrastructure
Solution with AlafNode
- All devices in a single panel
- Real-time node status monitoring
- Detailed model inventory
- Hardware visibility and monitoring
- Secure and fast pairing
Core Features
Secure Node Pairing
Establish secure connections using Ed25519 and one-time tokens.
Multi-Node Management
Manage all devices in your local or lab environment from a single screen.
Model Inventory
See exactly which AI models are installed on which server with one click.
Hardware Monitoring
Track your RAM, CPU, and VRAM capacities in real-time.
Provider Support
Supports Ollama and (coming soon) LM Studio, vLLM, and more.
Model Alias System
Route your requests to simple aliases like 'gpt-4' instead of complex names.
OpenAI Compatible Gateway
Connect your existing applications to local models instantly and seamlessly.
Cross-Platform Agent
Lightweight agent infrastructure running on Windows, Linux, and macOS.
How It Works?
Install Agent
Start by installing the lightweight Go agent on your device.
Pair Node
Introduce the device to your panel using a secure token.
Manage Infrastructure
Control models and statuses from a single screen.
Start for Free, Grow as You Need
You can start using AlafNode for basic node management, model tracking, and system visibility for free. Advanced team management, enterprise security, and scaling features will be offered in upcoming plans.
Free
- Basic node management
- Single user
- Model tracking
- Hardware visibility
- Community support
Professional
- Advanced team management
- Advanced gateway features
- Audit and advanced security
- Priority support
- Pricing TBA
Enterprise
- On-premise deployment
- Air-gapped network support
- Custom integrations
- SLA and enterprise support
Security is Our Priority
- Ed25519 authentication
- Signed heartbeat signals
- Local private key storage
- End-to-end secure node pairing
- Full control over data and code
- No remote shell execution
- Prompt and response data are not logged
// Agent Pairing Protocol
func (a *Agent) Connect() {
pub, priv := ed25519.GenerateKey(nil)
token := a.PromptUserForToken()
// Secure Hash Exchange
hash := sha256.Sum256([]byte(token))
err := a.Backend.Verify(hash, pub)
if err == nil {
// SUCCESS: Heartbeat uses signature
a.StartSignedHeartbeat(priv)
}
}
// NO REMOTE SHELL IMPLEMENTED
// ONLY SAFE HARDWARE METRICS