Netgear ProSecure UTM50 VPN Appliance with 1 Year Sub
The ProSecure UTM series of all-in-one gateway security appliances combine best-of-breed enterprise-strength security technologies from Commtouch, Mailshell, and Sophos with patent-pending Stream Scanning Technology to protect businesses against today's Web, email, and network threats. Malware hosted on Web pages, phishing attacks, spam, virus infected emails, hackers, denial-of-service attacks, and other threats are now all part of a regular repertoire of sophisticated blended attacks that bypass traditional frewalls with ease. Because comprehensive network security solutions require an abundance of processing power to examine network traffc in real time, existing all-in-one security solutions often use rudimentary security technologies that trade comprehensiveness for speed. True security must satisfy the requirements in both speed and coverage. Features:
Manufacturer: Netgear, Inc Manufacturer Part Number: UTM50EW-100NAS Manufacturer Website Address: www.netgear.com Brand Name: Netgear Product Line: ProSecure Product Series: UTM Product Model: UTM50 Product Name: ProSecure UTM50 Unified Threat Management Appliance Product Type: VPN Appliance Number of Ports: 8 Gigabit Ethernet Port: Yes Interfaces/Ports: 5 x RJ-45 10/100/1000Base-T Network LAN, 2 x RJ-45 10/100/1000Base-T Network WAN, 1 x RJ-45 10/100/1000Base-T Network LAN/DMZ Virtualization: 40000 Concurrent Connection, 50 Site-to-Site VPN Tunnel, 255 802.1Q VLAN Support, 25 Simultaneous IPSec VPN Tunnel Firewall Protection: Email Anti-virus, Web Content Filtering, Malware Protection, Anti-spam, Anti-phishing, Antivirus, Hacker Defense, Denial of Service (DoS), Intrusion Prevention, Zero Day Event, URL Filtering, Instant Messenger Blocking, P2P Blocking, Stateful Packet Filtering, Keyword Filtering, Java and ActiveX Blocking, Port & Site Blocking, TCP SYN Flood, UDP Flood, MAC Address Blocking Encryption Standard: DES, 3DES, AES (128-bit), AES (192-bit), AES (256-bit), SHA-1, ARC4, RSA, MD5 License Type: Unlimited User License VPN Throughput: 200 Mbps Standard Memory: 1 GB Flash Memory: 2 GB Input Voltage: 110 V AC, 220 V AC Input Voltage Range: 100 V AC to 240 V AC Power Source: Power Supply Form Factor: Rack-mountable, Desktop Dimensions: 1.70" Height x 17.30" Width x 10.30" Depth Weight (Approximate): 6.39 lb Package Contents: ProSecure UTM50 Unified Threat Management Appliance , Power Cable , Rubber Feet , Resource CD , Rackmount Kit , Warranty Card , Quick Installation Guide , Subscription Card 0;
},
getCacheStorage(cacheKey) {
const storage = JSON.parse(hyva.getBrowserStorage().getItem(localStorageNamespace)) || {};
return storage[cacheKey] || null;
},
saveCacheStorage(products) {
let storage = JSON.parse(hyva.getBrowserStorage().getItem(localStorageNamespace)) || {};
storage = this.enforceLocalStorageLimits(storage);
storage[this.getCacheKey()] = {
'product_list': products,
'added_at': new Date().getTime()
};
hyva.getBrowserStorage().setItem(localStorageNamespace, JSON.stringify(storage));
},
getProductsFromCache() {
const products = this.getCacheStorage(this.getCacheKey());
if (products !== null && this.validateCacheLifetime(products)) {
return products.product_list;
}
return null;
},
loadProductsFromServer() {
if (this.isLoading) {
return;
}
this.isLoading = true;
return fetch(this.ajaxData.url + '?' + this.buildQueryString(this.ajaxData.originalRequest), {
'headers': {
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
},
'method': 'GET'
})
.then(response => response.json())
.then(data => {
if (!data.status) {
this.saveCacheStorage([]);
return;
}
this.products = Object.values(data.productList);
this.saveCacheStorage(data.productList);
window.dispatchEvent(new CustomEvent('also-bough-products-loaded'));
})
.catch(function (error) {
typeof window.dispatchMessages !== 'undefined' && window.dispatchMessages(
[{
type: 'error',
text: error
}], 5000
);
}).finally(() => this.isLoading = false);
},
validateCacheLifetime(products) {
return new Date().getTime() - products.added_at < this.ajaxData.cache_lifetime * 1000;
},
getCacheKey() {
const originalRequest = this.ajaxData.originalRequest;
return originalRequest.action + '_' + originalRequest.entity_id;
},
buildQueryString(params) {
const queryStringArray = [];
for (const key in params) {
if (params.hasOwnProperty(key)) {
const value = params[key];
if (Array.isArray(value)) {
value.forEach((item, index) => {
queryStringArray.push(this.buildQueryString({ [key + '[' + index + ']']: item }));
});
} else if (typeof value === 'object' && value !== null) {
queryStringArray.push(this.buildQueryString(value));
} else {
queryStringArray.push(`${encodeURIComponent(key)}=${encodeURIComponent(value)}`);
}
}
}
return queryStringArray.join('&');
},
enforceLocalStorageLimits(storage) {
if (Object.keys(storage).length >= localStorageLimit) {
const newStorage = Object.entries(storage);
newStorage.sort((a, b) => new Date(b[1].added_at) - new Date(a[1].added_at));
return Object.fromEntries(newStorage.slice(0, localStorageLimit - 1))
}
return storage;
}
}
}
Interactive carousel showing related products. Use navigation buttons or swipe to browse items.
Customers who bought this item also bought