data: Arista/Edgecore/Fortinet/Dell/Huawei/D-Link/Netgear/Check Point/Ruckus images (migrations 057-059)
This commit is contained in:
parent
3b42f0aa90
commit
6827f6081f
91
sql/057-arista-edgecore-images.sql
Normal file
91
sql/057-arista-edgecore-images.sql
Normal file
@ -0,0 +1,91 @@
|
||||
-- Migration 057 — Arista Networks new series + Edgecore AS-series product images
|
||||
--
|
||||
-- Arista: assets.arista.com (official Arista CDN). All URLs return HTTP 200 PNG.
|
||||
-- 7060X6-64PE, 7060X5-64S, 7050X4-32S: exact model images verified.
|
||||
-- 7060X5-32QS, 7280R3-48YC6, 7020R-48YM: model designations not confirmed in
|
||||
-- official Arista docs; closest same-series images used as best approximation.
|
||||
-- 7800R4-36D2-LC: model may not exist (DC power suffix, not a real lineup entry);
|
||||
-- omitted from this migration.
|
||||
--
|
||||
-- Edgecore AS-series: These AS-series models are the same products as their
|
||||
-- DCS-series counterparts (confirmed via official datasheet naming):
|
||||
-- AS7726-32X = DCS204, AS9516-32D ≈ DCS810 (same 32×400G Tomahawk3 platform),
|
||||
-- AS7535-28XB = CSR440 (cell site router, confirmed on edge-core.com).
|
||||
-- Images from edge-core.com/wp-content/uploads (official Edgecore site).
|
||||
-- All URLs verified HTTP 200 image/png (2026-04-21).
|
||||
|
||||
-- ── Arista Networks ────────────────────────────────────────────────────────────
|
||||
|
||||
-- 7060X6-64PE — 64×800G Tomahawk5 data center spine
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.arista.com/assets/images/article/7060X6-64PE-Right.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.arista.com/en/products/fixed-configuration-switches/7060x6-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = '7060X6-64PE'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'arista');
|
||||
|
||||
-- 7060X5-64S — 64×400G Tomahawk4 data center spine
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.arista.com/assets/images/product/7060DX5-64S-175.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.arista.com/en/products/fixed-configuration-switches/7060x5-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = '7060X5-64S'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'arista');
|
||||
|
||||
-- 7060X5-32QS — 32×400G Tomahawk4 (series image; exact model not in official docs)
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.arista.com/assets/images/article/7060DX5-32-175.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.arista.com/en/products/fixed-configuration-switches/7060x5-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = '7060X5-32QS'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'arista');
|
||||
|
||||
-- 7050X4-32S — 32×400G Tomahawk3 leaf/spine
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.arista.com/assets/images/product/7050DX4-32S-175.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.arista.com/en/products/fixed-configuration-switches/7050x4-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = '7050X4-32S'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'arista');
|
||||
|
||||
-- 7280R3-48YC6 — 48×25G + 6×100G SP routing (series image; YC6 is SR2-era naming)
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.arista.com/assets/images/product/7208SR3-48YC8-175x150-stack-3.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.arista.com/en/products/fixed-configuration-switches/7280r3-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = '7280R3-48YC6'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'arista');
|
||||
|
||||
-- 7020R-48YM — 48-port SP routing platform (7020R4 series image)
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.arista.com/assets/images/product/7020R4-48Y-4QC-YB-right-175px.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.arista.com/en/products/fixed-configuration-switches/7020r-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = '7020R-48YM'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'arista');
|
||||
|
||||
-- ── Edgecore Networks (AS-series = DCS/CSR rebranded) ─────────────────────────
|
||||
|
||||
-- AS7726-32X (= DCS204) — 32×100G QSFP28 open networking switch
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.edge-core.com/wp-content/uploads/2023/08/DCS204-A.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.edge-core.com/product/dcs204/'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'AS7726-32X'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'edgecore');
|
||||
|
||||
-- AS9516-32D (≈ DCS810) — 32×400G QSFP-DD Tomahawk3 open networking switch
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.edge-core.com/wp-content/uploads/2023/08/dcs810-A.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.edge-core.com/product/dcs810/'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'AS9516-32D'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'edgecore');
|
||||
|
||||
-- AS7535-28XB (= CSR440) — 28-port disaggregated cell site router
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.edge-core.com/wp-content/uploads/2023/09/CSR440-A.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.edge-core.com/product/csr440/'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'AS7535-28XB'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'edgecore');
|
||||
159
sql/058-fortinet-dell-huawei-images.sql
Normal file
159
sql/058-fortinet-dell-huawei-images.sql
Normal file
@ -0,0 +1,159 @@
|
||||
-- Migration 058 — Fortinet FortiSwitch, Dell PowerSwitch, Huawei CloudEngine/NetEngine
|
||||
--
|
||||
-- Fortinet: cdn.blueally.com/avfirewalls/images/fortiswitch (BlueAlly/AVFirewalls CDN).
|
||||
-- Consistent naming pattern: fortiswitch-{model-lowercase-hyphenated}.png.
|
||||
-- 1024E uses a subdirectory variant. 3032E is .jpg (not .png).
|
||||
-- All 11 URLs verified HTTP 200 image/png or image/jpeg (2026-04-21).
|
||||
--
|
||||
-- Dell: i.dell.com/is/image/DellContent (official Dell CDN, Dynamic Media).
|
||||
-- Z9332F-ON + S5248F-ON: official .psd?fmt=jpg URLs (served as JPEG).
|
||||
-- Z9664F-ON: only findable via expresscomputersystems.com Shopify CDN.
|
||||
--
|
||||
-- Huawei: Mixed sources.
|
||||
-- CE16800-X32: model "X32" not confirmed in Huawei lineup (max X16); used general
|
||||
-- CE16800 series og:image from e.huawei.com. Update if correct model found.
|
||||
-- CE8850-32CQ: telecomate.com reseller photo.
|
||||
-- NetEngine 8000 F8: ontolt.com reseller photo.
|
||||
-- S5731-H48T4XC: official e.huawei.com og:image (S5731-H series).
|
||||
|
||||
-- ── Fortinet FortiSwitch ───────────────────────────────────────────────────────
|
||||
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/fortiswitch-108f.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-100-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 108F'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/fortiswitch-124f.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-100-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 124F'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/fortiswitch-124f-poe.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-100-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 124F-POE'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/fortiswitch-148f-poe.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-100-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 148F-POE'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/fortiswitch-424e.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-400-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 424E'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/fortiswitch-448e-fpoe.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-400-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 448E-FPOE'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/fortiswitch-524d.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-500-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 524D'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/fortiswitch-548d-fpoe.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-500-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 548D-FPOE'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
-- 1024E uses subdirectory path variant
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/1024e/1024efront.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-1000-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 1024E'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/fortiswitch-1048e.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-1000-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 1048E'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
-- 3032E is JPEG (not PNG like other FortiSwitch models)
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/avfirewalls/images/fortiswitch/fs3032e.jpg',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.fortinet.com/products/switches/fortiswitch-3000-series'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'FortiSwitch 3032E'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'fortinet');
|
||||
|
||||
-- ── Dell Technologies PowerSwitch ─────────────────────────────────────────────
|
||||
|
||||
-- Z9664F-ON — 64×400G QSFP-DD data center spine
|
||||
UPDATE switches
|
||||
SET image_url = 'https://expresscomputersystems.com/cdn/shop/files/z9664f-on-main_400x.jpg?v=1725038963',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.dell.com/en-us/shop/networking/ar/4027'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'PowerSwitch Z9664F-ON'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'dell');
|
||||
|
||||
-- Z9332F-ON — 32×400G QSFP-DD spine (official Dell CDN)
|
||||
UPDATE switches
|
||||
SET image_url = 'https://i.dell.com/is/image/DellContent//content/dam/ss2/product-images/dell-enterprise-products/networking-products/dell/z-series/z9332f/enterprise-networking-z-series-z9332f-on-ff-relativesize-500-ng.psd?fmt=jpg',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.dell.com/en-us/shop/networking/ar/4027'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'PowerSwitch Z9332F-ON'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'dell');
|
||||
|
||||
-- S5248F-ON — 48×25G + 2×100G top-of-rack (official Dell CDN)
|
||||
UPDATE switches
|
||||
SET image_url = 'https://i.dell.com/is/image/DellContent/content/dam/ss2/product-images/dell-enterprise-products/networking-products/s5248f-on/mg/powerswitch-s5248f-on-black-gallery-1.psd?fmt=jpg',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.dell.com/en-us/shop/networking/ar/4027'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'PowerSwitch S5248F-ON'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'dell');
|
||||
|
||||
-- ── Huawei ─────────────────────────────────────────────────────────────────────
|
||||
|
||||
-- CloudEngine 16800-X32 — modular core DC switch (general CE16800 series og:image;
|
||||
-- "X32" variant unconfirmed in current Huawei lineup, max known is X16)
|
||||
UPDATE switches
|
||||
SET image_url = 'https://e.huawei.com/marketingcloud/pep/asset/2000000101/images/products/switches/data-center-switches/ce16800/ce16800-overview-pc.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://e.huawei.com/en/products/switches/data-center-switches/ce16800'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'CloudEngine 16800-X32'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'huawei');
|
||||
|
||||
-- CloudEngine 8850-32CQ — 32×100G QSFP28 data center ToR
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.telecomate.com/wp-content/uploads/2022/06/CE8850-32CQ-EI-1.jpg?v=1719220240',
|
||||
product_page_url = COALESCE(product_page_url, 'https://e.huawei.com/en/products/switches/data-center-switches/ce8850'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'CloudEngine 8850-32CQ'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'huawei');
|
||||
|
||||
-- NetEngine 8000 F8 — high-end SP core router
|
||||
UPDATE switches
|
||||
SET image_url = 'https://ontolt.com/wp-content/uploads/2025/07/how-to-custom-NE8000-F8-Huawei-china-supplier-1-700x700.jpg',
|
||||
product_page_url = COALESCE(product_page_url, 'https://e.huawei.com/en/products/routers/ne8000'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'NetEngine 8000 F8'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'huawei');
|
||||
|
||||
-- S5731-H48T4XC — 48×1G + 4×10G campus switch (official e.huawei.com og:image)
|
||||
UPDATE switches
|
||||
SET image_url = 'https://e.huawei.com/marketingcloud/pep/asset/20000001/s5731h/CloudEngine-S5731-H-v2.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://e.huawei.com/en/products/switches/campus-switches/s5731-h'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'S5731-H48T4XC'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'huawei');
|
||||
104
sql/059-dlink-netgear-checkpoint-ruckus-images.sql
Normal file
104
sql/059-dlink-netgear-checkpoint-ruckus-images.sql
Normal file
@ -0,0 +1,104 @@
|
||||
-- Migration 059 — D-Link, Netgear, Check Point, Ruckus (CommScope) product images
|
||||
--
|
||||
-- D-Link: dlink.com/-/media/product-pages (official D-Link CMS static files).
|
||||
-- All URLs return HTTP 200 image/png (2026-04-21).
|
||||
--
|
||||
-- Netgear: assets.netgear.com/transform/pdp-desktop (official Netgear CDN).
|
||||
-- URLs served without extension via content negotiation (JPEG).
|
||||
-- M4300-96X: cdn.blueally.com/netguardstore CDN (BlueAlly partner site).
|
||||
--
|
||||
-- Check Point: No standalone accessible product images on checkpoint.com CDN.
|
||||
-- Quantum 6800: tecisoft.ca (Canadian reseller, Shopify CDN).
|
||||
-- Quantum 28000: cdn.blueally.com/checkfirewalls (BlueAlly partner CDN).
|
||||
--
|
||||
-- Ruckus (CommScope): productresources.vistancenetworks.com (authorized Ruckus
|
||||
-- distribution partner CDN). URLs contain stable hash IDs + cache-bust `rand=`
|
||||
-- param; `rand=` is ignored server-side (cache-bust only). Verified HTTP 200 PNG.
|
||||
|
||||
-- ── D-Link ────────────────────────────────────────────────────────────────────
|
||||
|
||||
-- DGS-3130-30TS — 24×1G + 6×10G managed enterprise switch
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.dlink.com/us/en/-/media/product-pages/dgs/3130/dgs_3130_30ts_front.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.dlink.com/us/en/products/dgs-3130-30ts-24-port-gigabit-smart-managed-switch'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'DGS-3130-30TS'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'd-link');
|
||||
|
||||
-- DXS-3610-54T — 48×10G + 6×40G/100G managed switch
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.dlink.com/en/-/media/product-pages/dxs/3610/dxs_3610_54t_a1_front.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.dlink.com/en/products/dxs-3610-54t-48-port-10g-managed-switch'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'DXS-3610-54T'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'd-link');
|
||||
|
||||
-- DMS-3130-30TS — 24×2.5G + 4×10G + 2×25G multi-gig managed switch
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.dlink.com/us/en/-/media/product-pages/dms/3130-30ts/dms313030tsfront.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.dlink.com/us/en/products/dms-3130-30ts-24-port-multigigabit-smart-managed-switch'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'DMS-3130-30TS'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'd-link');
|
||||
|
||||
-- ── Netgear ───────────────────────────────────────────────────────────────────
|
||||
|
||||
-- M4350-48G4XF — 48×1G PoE+ + 4×10G SFP+ smart managed pro switch
|
||||
UPDATE switches
|
||||
SET image_url = 'https://assets.netgear.com/transform/pdp-desktop/a14b80df-13c7-44e9-89e5-c390c70d948c/GSM4352_M4350_G1_779x536',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.netgear.com/business/wired/switches/fully-managed/gsm4352/'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'M4350-48G4XF'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'netgear');
|
||||
|
||||
-- M4500-32C — 32×100G QSFP28 data center switch
|
||||
UPDATE switches
|
||||
SET image_url = 'https://assets.netgear.com/transform/pdp-desktop/5f30b917-f047-40b5-826c-aced4fb4f55a/M4500-32C_13Sept19_front-png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.netgear.com/business/wired/switches/fully-managed/m4500-32c/'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'M4500-32C'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'netgear');
|
||||
|
||||
-- M4300-96X — 96×10G modular managed switch
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/netguardstore/images/switches/managed-switches/m4300/m4300-96x.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.netgear.com/business/wired/switches/fully-managed/m4300-96x/'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'M4300-96X'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'netgear');
|
||||
|
||||
-- ── Check Point ───────────────────────────────────────────────────────────────
|
||||
|
||||
-- Quantum 6800 — enterprise next-gen firewall appliance
|
||||
UPDATE switches
|
||||
SET image_url = 'https://www.tecisoft.ca/cdn/shop/files/Check-Point-6800-Security-Gateway-Cpap-Sg6800-Plus.jpg?v=1691035341&width=650',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.checkpoint.com/quantum/network-security-gateways/'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'Quantum 6800'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'check-point');
|
||||
|
||||
-- Quantum 28000 — high-end datacenter security gateway
|
||||
UPDATE switches
|
||||
SET image_url = 'https://cdn.blueally.com/checkfirewalls/images/appliances/quantum/26000-28000-appliance.png',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.checkpoint.com/quantum/network-security-gateways/'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'Quantum 28000'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'check-point');
|
||||
|
||||
-- ── Ruckus (CommScope) ────────────────────────────────────────────────────────
|
||||
|
||||
-- ICX 7550-48ZP — 48×1G PoE+ + 8×10G/2×40G stackable switch
|
||||
UPDATE switches
|
||||
SET image_url = 'https://productresources.vistancenetworks.com/admin/ImageServer.php?ID=37c208a0c327dfc8504eedc5ee7d7be0efae2c304c3b5e5f390b1fc4735d8925:74837@kbl572&class=Mamfile&rand=fa99e42ab2185343f893d6a1bfc90916&downloadname=ICX7550-48ZP_45R.png&preset=10',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.ruckusnetworks.com/products/switches/icx-series/icx-7550/'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'ICX 7550-48ZP'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'ruckus-commscope');
|
||||
|
||||
-- ICX 7150-48PF — 48×1G PoE+ compact stackable switch
|
||||
UPDATE switches
|
||||
SET image_url = 'https://productresources.vistancenetworks.com/admin/ImageServer.php?ID=4f1754dc3e113b4b4bff763bdabb7e0b2c1237cabda9b8edb7dbed5fbee186f7:80201@kbl572&class=Mamfile&rand=faaf2d21016a3bf03b933c43f134ed5a&downloadname=icx7150-48pf_right.png&preset=10',
|
||||
product_page_url = COALESCE(product_page_url, 'https://www.ruckusnetworks.com/products/switches/icx-series/icx-7150/'),
|
||||
assets_scraped_at = NOW()
|
||||
WHERE model = 'ICX 7150-48PF'
|
||||
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'ruckus-commscope');
|
||||
Loading…
x
Reference in New Issue
Block a user