Migration 051: TP-Link TL-SG3452XP + TL-SX3016F via static.tp-link.com CDN Migration 052: Nokia 6/6 — 7220 IXR-D3L/H4 (docs.nokia.com graphics), 7250 IXR-10 + 7750 SR-1 (tempestns.com), SR-14s (telecomcauliffe.com), SR-1e (docs hardwareBanner — no standalone public image available) Migration 053: F5 BIG-IP i5800/i10800 (wtit.com), i15800 (blueally CDN) Migration 054: Delta Networks 4/4 (hardwarenation.com + manualslib), Siemens SCALANCE 4/4 — X-200/X-300/X-500 via images.sw.cdn.siemens.com All 14 URLs verified HTTP 200 with correct image content-type (2026-04-21). CHANGELOG_PENDING.md updated for all 4 migrations.
32 lines
1.5 KiB
SQL
32 lines
1.5 KiB
SQL
-- Migration 053 — F5 Networks BIG-IP product images (direct URL injection)
|
||
--
|
||
-- Sources:
|
||
-- i5800, i10800: wtit.com (IT reseller CDN; model-specific PNG filenames)
|
||
-- i15800: cdn.blueally.com (BlueAlly CDN; "i15000-series" composite)
|
||
--
|
||
-- All URLs verified HTTP 200 image/png (2026-04-21).
|
||
|
||
-- BIG-IP i5800 — 4×10G SFP+ application delivery controller
|
||
UPDATE switches
|
||
SET image_url = 'https://wtit.com/wp-content/uploads/2016/11/big-ip-i5800.png',
|
||
product_page_url = COALESCE(product_page_url, 'https://www.f5.com/products/big-ip-services'),
|
||
assets_scraped_at = NOW()
|
||
WHERE model = 'BIG-IP i5800'
|
||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'f5-networks');
|
||
|
||
-- BIG-IP i10800 — 4×10G SFP+ higher-throughput ADC
|
||
UPDATE switches
|
||
SET image_url = 'https://wtit.com/wp-content/uploads/2016/11/big-ip-i10800.png',
|
||
product_page_url = COALESCE(product_page_url, 'https://www.f5.com/products/big-ip-services'),
|
||
assets_scraped_at = NOW()
|
||
WHERE model = 'BIG-IP i10800'
|
||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'f5-networks');
|
||
|
||
-- BIG-IP i15800 — 4×40G QSFP+ top-of-range ADC
|
||
UPDATE switches
|
||
SET image_url = 'https://cdn.blueally.com/appdeliveryworks/images/hardware/big-ip-iseries/bigip-i15000-series.png',
|
||
product_page_url = COALESCE(product_page_url, 'https://www.f5.com/products/big-ip-services'),
|
||
assets_scraped_at = NOW()
|
||
WHERE model = 'BIG-IP i15800'
|
||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'f5-networks');
|