Data Center Fibre Channel over CWDM

Fibre Channel over CWDM Products

Fibre Channel over CWDM Products

iConverter® CWDM Multiplexers

iConverter CWDM Multiplexers are part of the iConverter Multi-Service Platform and used to expand the capacity of Fibre Channel data center interconnects. iConverter CWDM MUX/DEMUX modules and Optical Add and Drop modules can be installed in a variety of compact and high-density chassis.

iConverter xFF Transponders

iConverter xFF Transponders  are protocol-transparent fiber-to-fiber media converters, and are available as compact, unmanaged standalone units or  managed chassis plug-in modules. The iConverter xFF provides reliable and cost-effective conversion between different Fibre Channel wavelengths using Omnitron’s CWDM SFP Transceivers.

Data Center DWDM Interconnect

DWDM Data Center Products

DWDM Data Center Interconnect Products

iConverter® XG Transponders

iConverter XG 10G Fiber Transponders are protocol-transparent fiber-to-fiber media converters, and are available as compact, unmanaged standalone units or  managed chassis plug-in modules. The iConverter XG provides reliable and cost-effective conversion between standard and DWDM wavelengths using Omnitron’s DWDM SFP+ and XFP Transceivers.

OmniLight® LGX DWDM Multiplexers

The OmniLight family of passive optical products consists of standard LGX chassis and passive CWDM and DWDM Multiplexer modules that provide a scalable, flexible and high-density solution for distributing wavelength services.

Omnitron Reseller Models

{source}
<?php

defined('_JEXEC') or die('Restricted access');
$document = &JFactory::getDocument();
//$document->addScript(JURI::root().'components/com_k2/templates/k2tabberfree/includes/simpletabs_1.3.js');
$document->addScript('components/com_k2/templates/k2tabberfree/includes/simpletabs_1.3.js');
$document->addScript('components/com_k2/templates/k2tabberfree/includes/base-model-number.js');
$document->addScript('components/com_k2/templates/k2tabberfree/includes/back-to-top/js/main.js');


$document->addStyleSheet('components/com_k2/templates/k2tabberfree/includes/back-to-top/css/demo.css');
$document->addStyleSheet('components/com_k2/templates/k2tabberfree/includes/back-to-top/css/reset.css');
$document->addStyleSheet('components/com_k2/templates/k2tabberfree/includes/back-to-top/css/style.css');

$document->addStyleSheet('components/com_k2/templates/k2tabberfree/includes/k2tabber.css');
$document->addStyleSheet('https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css');


$document->addScript('js/reseller/jquery-2.2.3.min.js');
$document->addScript('js/reseller/jquery.dataTables.min.js');
$document->addStyleSheet('js/reseller/jquery.dataTables.min.css');

?>

<script type="text/javascript">


( function($) {

$(document).ready( function () {

console.log("<?php echo $_GET["model"]; ?>");

var base_model = "<?php echo $_GET["model"]; ?>";

var product_family = "Converter";

var website = "provantage";
var provantage = "/components/com_ajax/reseller_ajax.php?website="+website+"&model=";

var data_table_request = false;


$.ajax({timeout: 5000,"type": "POST", "url": provantage + base_model, success: function(data){

console.log("Data 1: " + data);

var ajax_call = JSON.parse(data);


var product_info = "<div id='base-model-info2'>" +
"</br>"+"<img src='https://www.provantage.com"+ajax_call['img']+"' align='left' width='75' style='margin-left: 5px; margin-right: 10px;' >"+
"<p align='left' style='font-size: 15px;' >" +
"Buy " + "<strong>" + product_family + " " + base_model + "</strong>" + " online " +
"<br>"+ ajax_call['total_products'] +" products found at "+ ajax_call['distributors'] + " distributor" +
"</p>"+
"</div>";

if(ajax_call['img'] != null)
$("div#base-model-info").append(product_info);

var table = $('#example').DataTable({
retrieve: false,
"searching": false,
"timeout": 2500,
paging: false,
'ajax': provantage + base_model,
'aoColumns': [
{ 'data': "distributor"
,'title': "Distributor"
},
{ 'data': "model"
,'title': "Model #"
,'render': function ( data, type, row, meta ) {
// If data is being displayed
console.log("Data 2:"+data);
var str = data.replace("Omnitron Systems Technology Part", "1");
return str;
},
},
{ 'data': "description"
,'title': "Description"
},
{ 'data': "price"
,'title': "Price"
},
{ 'data': "stock"
,'title': "Stock"
},
{ 'data': "href"
,'title': ""
,'render': function ( data, type, row, meta ) {
// If data is being displayed
return '<a href="https://www.provantage.com'+ data +'"' + ' target="_blank">'+'Buy Online'+'</a>';
},
}
],
"columnDefs": [
{ "width": "10%", "targets": 0 }
,{ "width": "10%", "targets": 1 }
,{ "width": "30%", "targets": 2, "orderable": false}
,{ "width": "8%", "targets": 3, "orderable": false}
,{ "width": "10%", "targets": 4, "orderable": false}
,{ "width": "10%", "targets": 5, "orderable": false ,"className": "dt-center" }
],
"oLanguage": {
"sEmptyTable": "<br><p align='left' style='font-size: 15px;' >" + "<strong>" + product_family + " " + base_model + "</strong>" + " currently not available at Omnitron online resellers" + "<br><a href='/support/contact-us.php' target='_blank' >Contact Omnitron for assistance with a quote</a>" + "</p"
}
});//Table Config

data_table_request = true;

},//End of Ajax
error: function(xhr, status, error){


if( data_table_request == true ){
$('#example').dataTable().fnDestroy();
data_table_request = false;
}

if ( $( "#error_message" ).length ){
document.getElementById("error_message").remove();
}

var err_message =
"<div id='error_message'>"+
"<br>"+"<img src='/images/reseller/caution.png' align='left' width='75' style='margin-left: 5px; margin-right: 5px;' >"+
"<br><p align='left' style='font-size: 15px;' >" +
"Unable to process this product search request at this time" +
"<br><a href='/support/contact-us.php' target='_blank' >Can’t find a Product or Need Help? Contact Omnitron for assistance with a quote</a>" +
"</p"+
"</div>";

$("table#example").append(err_message);

}

}); //End Ajax

});


} ) ( jQuery );

</script>

<div id="base-model-info" ></div>
<table id="example" class="display" width="100%"> <img id="model_img" >

</table>
{/source}

High Power PoE and Fiber

<iframe src="/www.google.com"></iframe>

Omnitron Celebrates 25 Years of Innovation

25 Logo 2

Omnitron Celebrates 25 Years of Innovation

 

Back in 1992, the Space Shuttle Endeavor flew its maiden voyage, Microsoft released Windows 3.1 and Visual Basic, compact discs outsold cassette tapes, and AT&T released a $1500 video phone.

In that same year, in a small industrial space in Irvine California, Omnitron Systems started building and selling fiber optic hubs and multiplexers for the AS/400 platform.

Omnitron Systems has come a long way since 1992.  

Today Omnitron Systems designs and manufactures innovative Carrier Ethernet demarcation products, optical multiplexers, and a variety of media converters and switches that are deployed in enterprise, government, data center, and service networks worldwide.

 

Omnitron Product Development Timeline

Company Timeline 25 v2017

 

Awards and Recognition

  • Metro Ethernet Forum Outstanding Contributor Award, and multiple Awards of Recognition
  • Raytheon Integrated Defense Systems (IDS) Supplier Excellence Award for Quality and On-time Delivery
  • Lockheed Martin Platinum Vendor Reliability rating (Perfect Score of 100)
  • Broadband Properties magazine ranking as Top 100 Innovative Companies

 

Contact Omnitron

Call us today for help with your fiber optic projects

1-949-250-6510 or toll free 1-800-675-8410

Or email us at This email address is being protected from spambots. You need JavaScript enabled to view it.

PoE Media Converters

PoE Media Converters

Copper-to-fiber media converters with Power over Ethernet provide reliable and cost-effective fiber distance extension to PoE powered devices. All Omnitron Systems PoE media converters are backed with a lifetime warranty and free 24/7 technical support.

{module [515]}

 {module [516]}

 {module [517]}