ALLIED TELESIS
Switch L3 Stackable, 48x 10/100/1000-T, 4x SFP+, Fuente redundante integradas (TAA compliant version)
Modelo: AT-X530L-52GTX-90
🛡️ Garantía: 3 años
$59,599 MXN
IVA incluido · Precio en pesos mexicanos
✗ Sin existencia — consultar
Cantidad:
💬 Cotizar por WhatsApp
Características principales
- Stackable hasta 8 unidades
- Construye red confiable como switch core o distribución
- Soporta VCStack hasta 8 unidades locales o larga distancia
- Soporta AMF y Vista Manager EX
- Soporta Active Fiber Monitoring (AFM)
- 48 puertos Gigabit Ethernet y 4 SFP+
📐 Especificaciones
Modelo / SKU
AT-X530L-52GTX-90
Marca
ALLIED TELESIS
Garantía
3 años
Peso
7.00 kg
Alto
58 cm
Largo
15 cm
Ancho
45 cm
Categoría
Networking
✓ Características completas
- Stackable hasta 8 unidades
- Construye red confiable como switch core o distribución
- Soporta VCStack hasta 8 unidades locales o larga distancia
- Soporta AMF y Vista Manager EX
- Soporta Active Fiber Monitoring (AFM)
- 48 puertos Gigabit Ethernet y 4 SFP+
📝 Descripción completa
{
// Botón carrito en header
const actions = document.querySelector('.header-actions');
if (actions && !document.getElementById('cart-trigger')) {
const btn = document.createElement('button');
btn.className = 'cart-trigger';
btn.id = 'cart-trigger';
btn.innerHTML = '🛒 ';
actions.prepend(btn);
btn.addEventListener('click', () => Cart.open());
}
// Botón inferior también agrega al carrito
document.getElementById('btn-add-to-cart-bottom')?.addEventListener('click', () => {
const qty = parseInt(document.getElementById('qty-input')?.value) || 1;
if (window.currentProduct) {
Cart.add(window.currentProduct, qty);
Cart.open();
}
});
});
💬