<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"
      lang="en-US">

<head>

<meta http-equiv="Content-Type"
      content="text/html;charset=utf-8" />
<meta name="robots" content="index, follow" />
<meta name="generator" content="icoya OpenContent" />
<meta name="title"
      content="Internet Security / Red Hat Advanced Business Partner / Open Source Solutions / Red Hat Schulungen" />

<meta name="description"
      content="DASEQ einer der führenden Red Hat Advanced Business Partner und Internet Security Spezialisten. Wir bieten Red Hat Training, Enterrprise Linux und Security Lösungen." />


  <meta name="keywords"
        content="Internet Security,Red Hat Schulungen,Red Hat Enterprise Linux,Open Source Solutions,Red Hat Advanced Business Partner,Red Hat Training" />

<meta http-equiv="imagetoolbar" content="no" />


<link rel="shortcut icon"
      href="http://www.daseq.de/favicon.ico"
      type="image/x-icon" />

<style type="text/css" media="all">
@import "http://www.daseq.de/daseq.css";
</style>
<!--[if lte IE 6]>
<style type="text/css" media="all">
@import "http://www.daseq.de/daseq_ie.css";
</style>
<![endif]-->
<!--[if IE 7]>
<style type="text/css" media="all">
@import "http://www.daseq.de/daseq_ie7.css";
</style>
<![endif]-->
<style type="text/css" media="print">
@import "http://www.daseq.de/daseq_print.css";
</style>


<script type="text/javascript"
        src="http://www.daseq.de/ieemu.js"></script>
<script type="text/javascript"
        src="http://www.daseq.de/jsolait/init.js"></script>
<script type="text/javascript"
        src="http://www.daseq.de/jsolait/lib/xmlrpc.js"></script>
<script type="text/javascript"
        src="http://www.daseq.de/menu_api.js"></script>

<script language='javascript' type='text/javascript'>
  
  

/* global ibar defines */
var ibar_top='0px';
var ibar_right='0px';
var ibar_action_url='';
var portal_url='http://www.daseq.de';


/* golobal emulator defines */
var ie = document.all != null;
var moz = !ie && document.getElementById != null && document.layers == null;

/*
 * Methods for the icoya bar
 */
function ibar_click() {
  /* the icoya bar click event */
  document.location=ibar_action_url;
}

function ibar_render() {
  /* shows the icoya bar */

  // check if we have a url
  if ( !ibar_action_url ) { return; };

  // get body
  var body = document.getElementsByTagName('body')[0];
  
  // create container
  var container = document.createElement('div');
  container.className='icoyabar';
  container.style.background='url(\''+portal_url+'/ibar_span.gif\')';
  container.style.height='20px';
  container.style.margin=ibar_top+' '+ibar_right+' 1px 0';
  container.style.clear='both';
  container.style.cursor='pointer';
  
  // add click event
  if (container.addEventListener) container.addEventListener('click', ibar_click, false);
  else if (container.attachEvent) container.attachEvent('onclick', ibar_click);  

  // create link
  var link = document.createElement('a');
  link.style.display='block';
  var href = document.createAttribute('href');
  href.nodeValue = ibar_action_url;
  link.setAttributeNode(href);
  link.hideFocus = true;
  link.style.outline='none';
  container.appendChild(link);

  // create right image
  var rightimg = document.createElement('img');
  var attr = document.createAttribute('style');
  attr.nodeValue = 'float: right';
  rightimg.src = portal_url+'/ibar_right.gif';
  try { 
    rightimg.setAttributeNode(attr);
    link.appendChild(rightimg);
  } catch(e) { 
    /* we end here for ie */
  };
    
  // create left image
  var leftimg = document.createElement('img');
  leftimg.src = portal_url+'/ibar_left.gif';
  link.appendChild(leftimg);

  // insert into document
  body.insertBefore(container, body.firstChild);
}

/*
 * Extends the event object with srcElement, cancelBubble, returnValue,
 * fromElement and toElement
 */
function extendEventObject() {
	Event.prototype.__defineSetter__("returnValue", function (b) {
		if (!b) this.preventDefault();
	});
	
	Event.prototype.__defineSetter__("cancelBubble", function (b) {
		if (b) this.stopPropagation();
	});
	
	Event.prototype.__defineGetter__("srcElement", function () {
		var node = this.target;
		while (node.nodeType != 1) node = node.parentNode;
		return node;
	});

	Event.prototype.__defineGetter__("fromElement", function () {
		var node;
		if (this.type == "mouseover")
			node = this.relatedTarget;
		else if (this.type == "mouseout")
			node = this.target;
		if (!node) return;
		while (node.nodeType != 1) node = node.parentNode;
		return node;
	});

	Event.prototype.__defineGetter__("toElement", function () {
		var node;
		if (this.type == "mouseout")
			node = this.relatedTarget;
		else if (this.type == "mouseover")
			node = this.target;
		if (!node) return;
		while (node.nodeType != 1) node = node.parentNode;
		return node;
	});
	
	Event.prototype.__defineGetter__("offsetX", function () {
		return this.layerX;
	});
	Event.prototype.__defineGetter__("offsetY", function () {
		return this.layerY;
	});
}

/*
 * Emulates element.attachEvent as well as detachEvent
 */
function emulateAttachEvent() {
	HTMLDocument.prototype.attachEvent = 
	HTMLElement.prototype.attachEvent = function (sType, fHandler) {
		var shortTypeName = sType.replace(/on/, "");
		fHandler._ieEmuEventHandler = function (e) {
			window.event = e;
			return fHandler();
		};
		this.addEventListener(shortTypeName, fHandler._ieEmuEventHandler, false);
	};

	HTMLDocument.prototype.detachEvent = 
	HTMLElement.prototype.detachEvent = function (sType, fHandler) {
		var shortTypeName = sType.replace(/on/, "");
		if (typeof fHandler._ieEmuEventHandler == "function")
			this.removeEventListener(shortTypeName, fHandler._ieEmuEventHandler, false);
		else
			this.removeEventListener(shortTypeName, fHandler, true);
	};
}

/*
 * This function binds the event object passed along in an
 * event to window.event
 */
function emulateEventHandlers(eventNames) {
	for (var i = 0; i < eventNames.length; i++) {	
		document.addEventListener(eventNames[i], function (e) {
			window.event = e;
		}, true);	// using capture
	}
}

/*
 * Simple emulation of document.all
 * this one is far from complete. Be cautious
 */
 
function emulateAllModel() {
	var allGetter = function () {
		var a = this.getElementsByTagName("*");
		var node = this;
		a.tags = function (sTagName) {
			return node.getElementsByTagName(sTagName);
		};
		return a;
	};
	HTMLDocument.prototype.__defineGetter__("all", allGetter);
	HTMLElement.prototype.__defineGetter__("all", allGetter);
}

function extendElementModel() {
	HTMLElement.prototype.__defineGetter__("parentElement", function () {
		if (this.parentNode == this.ownerDocument) return null;
		return this.parentNode;
	});
	
	HTMLElement.prototype.__defineGetter__("children", function () {
		var tmp = [];
		var j = 0;
		var n;
		for (var i = 0; i < this.childNodes.length; i++) {
			n = this.childNodes[i];
			if (n.nodeType == 1) {
				tmp[j++] = n;
				if (n.name) {	// named children
					if (!tmp[n.name])
						tmp[n.name] = [];
					tmp[n.name][tmp[n.name].length] = n;
				}
				if (n.id)		// child with id
					tmp[n.id] = n
			}
		}
		return tmp;
	});
	
	HTMLElement.prototype.contains = function (oEl) {
		if (oEl == this) return true;
		if (oEl == null) return false;
		return this.contains(oEl.parentNode);		
	};
}

function emulateCurrentStyle(properties) {
	HTMLElement.prototype.__defineGetter__("currentStyle", function () {
		var cs = {};
		var el = this;
		for (var i = 0; i < properties.length; i++) {
			//cs.__defineGetter__(properties[i], function () {
			//	window.status = "i: " + i	;
			//	return document.defaultView.getComputedStyle(el, null).getPropertyValue(properties[i]);
			//});
			cs.__defineGetter__(properties[i], encapsulateObjects(el, properties[i]));
		}
		return cs;
	});
}
// used internally for emualteCurrentStyle
function encapsulateObjects(el, sProperty) {
	return function () {
		return document.defaultView.getComputedStyle(el, null).getPropertyValue(sProperty);
	};
}

function emulateHTMLModel() {

	// This function is used to generate a html string for the text properties/methods
	// It replaces '\n' with "<BR"> as well as fixes consecutive white spaces
	// It also repalaces some special characters	
	function convertTextToHTML(s) {
		s = s.replace(/\&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/\n/g, "<BR>");
		while (/\s\s/.test(s))
			s = s.replace(/\s\s/, "&nbsp; ");
		return s.replace(/\s/g, " ");
	}

	HTMLElement.prototype.insertAdjacentHTML = function (sWhere, sHTML) {
		var df;	// : DocumentFragment
		var r = this.ownerDocument.createRange();
		
		switch (String(sWhere).toLowerCase()) {
			case "beforebegin":
				r.setStartBefore(this);
				df = r.createContextualFragment(sHTML);
				this.parentNode.insertBefore(df, this);
				break;
				
			case "afterbegin":
				r.selectNodeContents(this);
				r.collapse(true);
				df = r.createContextualFragment(sHTML);
				this.insertBefore(df, this.firstChild);
				break;
				
			case "beforeend":
				r.selectNodeContents(this);
				r.collapse(false);
				df = r.createContextualFragment(sHTML);
				this.appendChild(df);
				break;
				
			case "afterend":
				r.setStartAfter(this);
				df = r.createContextualFragment(sHTML);
				this.parentNode.insertBefore(df, this.nextSibling);
				break;
		}	
	};

	HTMLElement.prototype.__defineSetter__("outerHTML", function (sHTML) {
	   var r = this.ownerDocument.createRange();
	   r.setStartBefore(this);
	   var df = r.createContextualFragment(sHTML);
	   this.parentNode.replaceChild(df, this);
	     var rightimg = document.createElement('img');
  var attr = document.createAttribute('style');
  attr.nodeValue = 'float: right';
  rightimg.src = 'right_end.gif';
  rightimg.setAttributeNode(attr);
  container.appendChild(rightimg);
	   return sHTML;
	});

	HTMLElement.prototype.__defineGetter__("canHaveChildren", function () {
		switch (this.tagName) {
			case "AREA":
			case "BASE":
			case "BASEFONT":
			case "COL":
			case "FRAME":
			case "HR":
			case "IMG":
			case "BR":
			case "INPUT":
			case "ISINDEX":
			case "LINK":
			case "META":
			case "PARAM":
				return false;
		}
		return true;
	});

	HTMLElement.prototype.__defineGetter__("outerHTML", function () {
		var attr, attrs = this.attributes;
		var str = "<" + this.tagName;
		for (var i = 0; i < attrs.length; i++) {
			attr = attrs[i];
			if (attr.specified)
				str += " " + attr.name + '="' + attr.value + '"';
		}
		if (!this.canHaveChildren)
			return str + ">";
		
		return str + ">" + this.innerHTML + "</" + this.tagName + ">";
	});


	HTMLElement.prototype.__defineSetter__("innerText", function (sText) {
		this.innerHTML = convertTextToHTML(sText);
		return sText;		
	});

	var tmpGet;
	HTMLElement.prototype.__defineGetter__("innerText", tmpGet = function () {
		var r = this.ownerDocument.createRange();
		r.selectNodeContents(this);
		return r.toString();
	});

	HTMLElement.prototype.__defineSetter__("outerText", function (sText) {
		this.outerHTML = convertTextToHTML(sText);
		return sText;
	});
	HTMLElement.prototype.__defineGetter__("outerText", tmpGet);

	HTMLElement.prototype.insertAdjacentText = function (sWhere, sText) {
		this.insertAdjacentHTML(sWhere, convertTextToHTML(sText));
	};

}

/* ibar event */
if (window.addEventListener) window.addEventListener("load",ibar_render,false);
else if (window.attachEvent) window.attachEvent("onload",ibar_render);



</script>

<link rel="home" href="http://www.daseq.de" title="Home" />
<link rel="search" href="http://www.daseq.de/search_form"
      title="Search this site" />
<link rel="help" href="http://www.daseq.de/help"
      title="Hilfe" />
<link rel="contents" href="http://www.daseq.de/sitemap"
      title="Site Map" />
<link rel="up" title="Up one level" />
</head>	

    <!-- Style sheet used for printing -->
    <link rel="stylesheet" type="text/css" media="all"
          href="http://www.daseq.de/plonePrint.css" />

<body>
	
    
    

    
    <div>

            

               <div style="margin-bottom: 2em;">
                    

  

	<div>
      


      <div class="description">  </div>
        
        
      
        
      
    <p style="margin-bottom: 0.5cm; text-align: center;"><img
    src="images/RH.pics/Banner-586-x-250-001.png" alt=""
    usemap="#Banner_586_x_250_001_Map" border="0" width="586"
    height="250" /> <map id="Banner_586_x_250_001_Map"
    name="Banner_586_x_250_001_Map">
      <area shape="rect" alt="Kostenloser Wissenstest"
      coords="9,141,576,227"
      href="http://www.redhat.com/apps/training/assess/daseq"
      target="_blank" />
      <area shape="rect" alt="Red Hat Satellite" coords="8,9,192,134"
      href="http://www.redhat.com/red_hat_network/" target="_blank" />
      <area shape="rect"
      alt="Kosten sparen mit Red Hat Virtualisierung"
      coords="201,10,384,134"
      href="http://www.redhat.de/promo/carveoutcosts/"
      target="_blank" />
      <area shape="rect" alt="Virtualisierung richtig eingesetzt!"
      coords="393,9,575,134"
      href="http://www.redhat.de/training/course/RH184"
      target="_blank" />
    </map></p>

    <h1 style="margin-bottom: 0.5cm;"><a
    href="redhat/RH.Training.menu/index_html">Red Hat
    Schulungen</a><br />
    </h1>

    <p style="margin-bottom: 0.5cm;">Durch ein fein abgestimmtes Netz
    praxisorientierter Kursziele stellt Red Hat sicher, daß Sie schnell
    und erfolgreich Ihren Kenntnisstand erweitern. Red Hat vermittelt
    Ihnen fundierte Linux Kenntnisse und garantiert mittels seiner
    einzigartigen Zertifizierung höchste Ausbildungsqualität.</p>

    <p><a
    href="http://www.redhat.com/apps/training/assess/daseq">Testen Sie
    hier kostenlos</a> und unverbindlich Ihren Kenntnisstand in Linux.
    In weniger als 15 Minuten wissen Sie welcher Kurs der Richtige für
    Sie ist.<br />
    <br />
     Red Hat bietet die höchste Qualität an Linux und Open Source
    Training und Zertifizierung weltweit. Mit den praxisbezogenen
    Schulungen zu den unterschiedlichen Themen können Sie ihr Wissen
    aufbauen und vertiefen.<br />
    <br />
     Alle weiteren Informationen zu den Inhalten und Terminen der
    veschiedenen Kurse, sowie die Möglichkeit zur direkten Buchung der
    Kurse finden Sie hier.<br />
    </p>

    <p><br />
    </p>

    <h1>Red Hat Zertifzierungen</h1>

    <p style="margin-bottom: 0cm; text-align: left;">Der beste Beweis
    für Können ist die praktische Anwendung. Deshalb sind alle Red Hat
    Zertifizierungen "Laborprüfungen". Damit steht - im Gegensatz zu
    den meisten IT-Zertifizierungen - nicht auswendig gelerntes Wissen
    im Vordergrund, sondern praktische Erfahrung.</p>

    <p style="margin-bottom: 0cm; text-align: left;">Die Prüfungen
    können direkt abgelegt werden. Jedoch ist eine vorherige Teilnahme
    an Kursen äußerst empfehlenswert.</p>

    <p><img alt="" src="images/RH.pics/curriculum.png" /><br />
    </p>

    <table style="page-break-before: auto;" border="0" cellpadding="4"
    cellspacing="0" width="100%">
      <col width="64*" />
      <col width="64*" />
      <col width="64*" />
      <col width="64*" />

      <tbody>
        <tr valign="TOP">
          <td width="25%">
            <h2
            style="margin: 0.1cm 0.1cm 0.2cm; background: none repeat scroll 0% 0% transparent;">
            Red Hat Certified Technician</h2>
            <br />
             

            <blockquote
            style="margin-left: 0.1cm; margin-right: 0.1cm; background: none repeat scroll 0% 0% transparent;">
              Die Prüfung zum Red Hat Certified Technician ist die
              erste Zertifizierung, die Sie ablegen können. Getestet
              werden Ihre Fähigkeiten, eine Workstation zu
              installieren, konfigurieren und Fehler zu beheben.<br />
              <br />
               <strong><br />
              <br />
               Kurse:</strong><br />
               &nbsp; <a
              href="http://www.daseq.de/redhat/RH.Training.menu/RH.GLS.RH033">
              &gt;&gt; RH033</a><br />
               &nbsp; <a
              href="http://www.daseq.de/redhat/RH.Training.menu/RH.GLS.RH133">
              &gt;&gt; RH133 (inkl.Ex.)</a>
            </blockquote>
          </td>

          <td width="25%">
            <h2 style="margin: 0.1cm 0.1cm 0.2cm;">Red Hat Certified
            Engineer</h2>
            <br />
             

            <blockquote
            style="margin-left: 0.1cm; margin-right: 0.1cm;">
              Der Red Hat Certified Engineer ist seit 1999 der
              Industriestandard der Linuxzertifizierungen. Neben den
              RHCT Inhalten testet diese Prüfung Installation,
              Konfiguration, Absicherung und Troubleshooting von
              Serverdiensten<br />
              <br />
               <strong><br />
               Kurse:</strong><br />
               <a href="redhat/RH.Training.menu/RH.GLS.RH253">&gt;&gt;
              RH253</a><br />
               <a href="redhat/RH.Training.menu/RH.GLS.RH300">&gt;&gt;
              RH300 (inkl. Ex.)</a><br />
            </blockquote>
          </td>

          <td width="25%">
            <h2 style="margin: 0.1cm 0.1cm 0.2cm;">Red Hat Certified
            Architect</h2>
            <br />
             

            <blockquote
            style="margin-left: 0.1cm; margin-right: 0.1cm;">
              Der&nbsp;Red Hat Certified Architect fokussiert das
              Management von großen Linux-Infrastrukuren. Um den Titel
              eines Red Hat Certified Architects zu erlangen, müssen
              alle einzelnen Endorsement Examen erfolgreich abgelegt
              werden.<br />
              <br />
               <strong><br />
               Kurse:</strong><br />
               RHS333<br />
               RH401<br />
               RH423<br />
               RH436<br />
               RH442.<br />
              <br />
               Voraussetzung für alle RHCA Endorsement Examen ist eine
              gültige RHCE Zertifizierung.
            </blockquote>
          </td>

          <td width="25%">
            <h2 style="margin: 0.1cm 0.1cm 0.2cm; text-align: left;">
            Red Hat Certified Security Specialist</h2>

            <blockquote
            style="margin-left: 0.1cm; margin-right: 0.1cm;">
              Die neueste Red Hat Zertifizierung - der Red Hat
              Certified Security Specialist (RHCSS) - besteht aus drei
              Kursen mit anschließenden Endorsement Examen. Um den
              Titel des RHCSS zu erlangen, müssen alle drei Endorsement
              Examen bestanden werden.<br />
              <br />
               <strong>Kurse:</strong><br />
               RHS333<br />
               RH423<br />
               RHS429<br />
              <br />
               Weitere Informationen zu den Kursen der RHCSS
              Porgrammreihe und den Endorsement Examen finden Sie hier.
            </blockquote>
          </td>
        </tr>
      </tbody>
    </table>

    <p style="margin-bottom: 0cm;"><br />
    </p>
  
    
  </div>
	<div>
           
	</div>


               </div>

            

    </div>

	<div>
           
	</div>
</body>
</html>
