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.
22 lines
1.1 KiB
SQL
22 lines
1.1 KiB
SQL
-- Migration 051 — TP-LINK product images (direct URL injection)
|
|
--
|
|
-- Source: tp-link.com og:image (static CDN static.tp-link.com)
|
|
-- URL pattern: /upload/image-line/{MODEL}_{REGION}_{HW}_F_large_{TIMESTAMP}.jpg
|
|
-- All URLs verified HTTP 200 image/jpeg (2026-04-21).
|
|
|
|
-- TL-SG3452XP — 48-Port Gigabit PoE+ Smart Switch
|
|
UPDATE switches
|
|
SET image_url = 'https://static.tp-link.com/upload/image-line/TL-SG3452XP_UN_1.0_F_large_20211223063015g.jpg',
|
|
product_page_url = COALESCE(product_page_url, 'https://www.tp-link.com/en/business-networking/managed-switch/tl-sg3452xp/'),
|
|
assets_scraped_at = NOW()
|
|
WHERE model = 'TL-SG3452XP'
|
|
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'tp-link');
|
|
|
|
-- TL-SX3016F — 16-Port 10GE SFP+ Smart Switch
|
|
UPDATE switches
|
|
SET image_url = 'https://static.tp-link.com/upload/image-line/TL-SX3016F_UN_1.0_01_large_20210924060640m.jpg',
|
|
product_page_url = COALESCE(product_page_url, 'https://www.tp-link.com/en/business-networking/managed-switch/tl-sx3016f/'),
|
|
assets_scraped_at = NOW()
|
|
WHERE model = 'TL-SX3016F'
|
|
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'tp-link');
|