Migration 094 (fixed): 12 Cisco models — 8K-MPA-4D/16H/16Z2D, A9K-8HG-FLEX-FC/SE/TR, A9K-400G-DWDM-TR, N9348Y12C-SE1, NC55-36X100G-A-SE, ASR-9000V-24-A/DC-E, ASR-9922-RP-TR. Fixed 4 bad URLs replaced with verified eBay CDN + NetworkTigers Shopify CDN sources. Migration 097: +2 whitebox models — Ragile RA-B6510-48V8C (unixsurplus.com BigCommerce, Micas M2-W6510-48V8C OEM equivalent), Edgecore AS7946-74XKDB (eBay CDN, 2024 TH5 800G). Migration 098: +5 Cisco ASR 9903/9900 line cards — A9903-8HG-PEC, A9903-8HG-PEC-FC, A9903-20HG-PEC-FC, A99-12X100GE-FC, A99-32HG-FC. All via eBay CDN (171–302KB JPEGs). Coverage: 663 → 668/677 (98.7%). Remaining 9 models confirmed no accessible public images.
30 lines
1.9 KiB
SQL
30 lines
1.9 KiB
SQL
-- Migration 097: Whitebox / misc vendor image backfill
|
|
-- Models: RA-B6510-48V8C (Ragile), AS7946-74XKDB (Edgecore)
|
|
-- Sources: unixsurplus.com (BigCommerce CDN, OEM-equiv Micas hardware),
|
|
-- eBay CDN (search confirmed listing)
|
|
-- Coverage: +2 models (actual — remaining 7 models have no publicly accessible images:
|
|
-- D7332/D7264Q28B/D7054Q28B: productline.inventec.com Taiwan-hosted, unreachable globally;
|
|
-- DM4610-48T6X: Datacom model designation may differ from public catalog;
|
|
-- CiTRANS 680: fiberhome.com Chinese-only, no CDN image accessible;
|
|
-- PF5248: NEC product archived/discontinued, no image CDN;
|
|
-- OLT 9100: DZS product designation unconfirmed in public catalog)
|
|
|
|
-- RA-B6510-48V8C: unixsurplus.com BigCommerce CDN (Micas M2-W6510-48V8C OEM — same hardware platform)
|
|
-- The Ragile RA-B6510-48V8C and Micas M2-W6510-48V8C are manufactured on the same whitebox platform.
|
|
-- Source: https://www.unixsurplus.com/micas-networks-m2-w6510-48v8c-48x25g-8x100g-sonic-whitebox/
|
|
UPDATE switches
|
|
SET image_url = 'https://cdn11.bigcommerce.com/s-vsgqhdo3pb/images/stencil/1280x1280/products/4463/18390/Micas-M2-W6510-48V8C-All-Switches-100101-1__37341.1746745386.png?c=2',
|
|
product_page_url = COALESCE(product_page_url, 'https://ragilenetworks.com/products/'),
|
|
assets_scraped_at = NOW()
|
|
WHERE model = 'RA-B6510-48V8C'
|
|
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'ragile');
|
|
|
|
-- AS7946-74XKDB: eBay CDN (confirmed listing search "As7946-74xkdb Edgecore for sale")
|
|
-- 74-port 800G OSFP, Tomahawk 5, 2U chassis — very new product (2024), limited reseller coverage
|
|
UPDATE switches
|
|
SET image_url = 'https://i.ebayimg.com/images/g/GnUAAOSwZpRnBPBR/s-l1600.jpg',
|
|
product_page_url = COALESCE(product_page_url, 'https://www.edge-core.com/product/as7946-74xkdb/'),
|
|
assets_scraped_at = NOW()
|
|
WHERE model = 'AS7946-74XKDB'
|
|
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'edgecore');
|