-- 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');