Vileynoth

----------



Herzlich Willkommen bei den Night Dreamers.Wir hoffen euch gefällt das Forum und sind immer froh über neue Mitglieder.

----------



RPG NEW´s



----------



Neue Mitglieder die auch aktiv mitschreiben können. Aber auch spass an schreiben haben ^^



/* * Schnee-Script * @author Oliver Schlöbe <scripts@schloebe.de> * @example http://www.schloebe.de/scriptdemos/schloebe_snow/snowtest.html * @link http://www.schloebe.de/scripts/schnee-script/ * @since 111112 */ var schloebesnow = { no: 15, // Anzahl der Schneeflocken speed: 20, // "Schnei-Geschwindigkeit"; je kleiner die Zahl, um so schneller fallen die Flocken snowflake: "http://www.schloebe.de/wp-content/themes/schloebe_de/images/snow/snow.gif", // Bild der Schneeflocke, beliebig /*********************************/ /** Ab hier nichts mehr ändern! **/ /*********************************/ ns4up: (navigator.appName=="Netscape" && navigator.appVersion.charAt(0)=="4") ? 1 : 0, // Browser Tester ie4up: (document.all) ? 1 : 0, ns6up: (document.getElementById&&!document.all) ? 1 : 0, i: 0, dx: new Array(), xp: new Array(), yp: new Array(), am: new Array(), stx: new Array(), sty: new Array(), doc_width: 800, doc_height: 800, let_it_snow: function() { if( this.ns4up || this.ns6up ) { // Bildschirm-Auflösung holen, Netscape-Funktion this.doc_width = self.innerWidth; this.doc_height = self.innerHeight; } else if( this.ie4up ) { // Bildschirm-Auflösung holen, Internet Explorer-Funktion this.doc_width = document.body.clientWidth; this.doc_height = document.body.clientHeight; } this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; for( this.i = 0; this.i < this.no; ++ this.i ) { this.dx[this.i] = 0; // Koordinaten-Variable setzen this.xp[this.i] = Math.random()*(this.doc_width-50); // Position-Variable setzen this.yp[this.i] = Math.random()*this.doc_height; this.am[this.i] = Math.random()*20; // Amplituden-Variable setzten this.stx[this.i] = 0.02 + Math.random()/10; // Variable für Schrittweite setzen this.sty[this.i] = 0.7 + Math.random(); // Variable für Schrittweite setzen if( this.ns4up ) { if (this.i == 0) { document.write("<layer name=\"dot"+ this.i +"\" left=\"15\" "); document.write("top=\"15\" visibility=\"show\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></layer>"); } else { document.write("<layer name=\"dot"+ this.i +"\" left=\"15\" "); document.write("top=\"15\" visibility=\"show\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></layer>"); } } else if( this.ie4up || this.ns6up ) { if (this.i == 0) { document.write("<div id=\"dot"+ this.i +"\" style=\"position: "); document.write("absolute; z-index: "+ this.i +"; visibility: "); document.write("visible; top: 15px; left: 15px;\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></div>"); } else { document.write("<div id=\"dot"+ this.i +"\" style=\"position: "); document.write("absolute; z-index: "+ this.i +"; visibility: "); document.write("visible; top: 15px; left: 15px;\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></div>"); } } } if( this.ns4up ) { this.snowNS(); } else if( this.ie4up ) { this.snowIE(); }else if( this.ns6up ) { this.snowNS6(); } }, /* * Haupt-Animations-Funktion für Netscape */ snowNS: function() { for( this.i = 0; this.i < this.no; ++ this.i ) { this.yp[this.i] += this.sty[this.i]; if( this.yp[this.i] > this.doc_height-50 ) { this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30); this.yp[this.i] = 0; this.stx[this.i] = 0.02 + Math.random()/10; this.sty[this.i] = 0.7 + Math.random(); this.doc_width = self.innerWidth; this.doc_height = self.innerHeight; this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; } this.dx[this.i] += this.stx[this.i]; document.layers["dot"+this.i].top = this.yp[this.i]; document.layers["dot"+this.i].left = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i]); } setTimeout("schloebesnow.snowNS()", this.speed); }, /* * Haupt-Animations-Funktion für Internet Explorer */ snowIE: function() { for( this.i = 0; this.i < this.no; ++ this.i ) { this.yp[this.i] += this.sty[this.i]; if( this.yp[this.i] > this.doc_height-50 ) { this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30); this.yp[this.i] = 0; this.stx[this.i] = 0.02 + Math.random()/10; this.sty[this.i] = 0.7 + Math.random(); this.doc_width = document.body.clientWidth; this.doc_height = document.body.clientHeight; this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; } this.dx[this.i] += this.stx[this.i]; document.all["dot"+this.i].style.pixelTop = this.yp[this.i]; document.all["dot"+this.i].style.pixelLeft = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i]); } setTimeout("schloebesnow.snowIE()", this.speed); }, /* * Haupt-Animations-Funktion für Netscape6 und Mozilla */ snowNS6: function() { for( this.i = 0; this.i < this.no; ++ this.i ) { this.yp[this.i] += this.sty[this.i]; if( this.yp[this.i] > this.doc_height-50 ) { this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30); this.yp[this.i] = 0; this.stx[this.i] = 0.02 + Math.random()/10; this.sty[this.i] = 0.7 + Math.random(); this.doc_width = self.innerWidth; this.doc_height = self.innerHeight; this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; } this.dx[this.i] += this.stx[this.i]; document.getElementById("dot"+this.i).style.top = this.yp[this.i]+"px"; document.getElementById("dot"+this.i).style.left = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i])+"px"; } setTimeout("schloebesnow.snowNS6()", this.speed); } } schloebesnow.let_it_snow();
#1

We can hardcode the LMI type

in Regeln 25.10.2019 08:06
von acdbke | 171 Beiträge

Al Ramziah Group of Companies is into construction and has been founded in the year 2004. The company provides a complete range of Interior Designing Services and Execution which include CCTV Sam Reinhart Youth Jersey , Electrical, Plumbing, Tiling, Marble, Joinery Works, Gypsum Works, Spray Plastering Johan Larsson Youth Jersey , Screeding, Painting, Block Walls, AC, Fire Alarm and Fire Fighting. Al Ramziah Group of Companies offers these services to all kinds of buildings including commercial, residential or retail projects. Al Ramziah company provides interior cont. uae that includes Maintenance Works, Civil Works Kyle Okposo Youth Jersey , Lighting Design, Loose & Custom made furniture, Project Design Management, Turn Key Design Service, Electrical and 鈥榮mall services鈥?design and Artworks and Framing. It also includes interior fit out uae. Whether it is for commercial, residential, office Jake McCabe Youth Jersey , villas or public establishments, you can confidently approach Al Ramziah Group of Companies as the firm has several areas of specialization pertaining to construction activities. The company's scope of AR services include Cinemas, Pools & Spas, Living spaces, space planning, Concept Creation for Bathrooms, Kitchens Jason Pominville Youth Jersey , MEP Design, Color & Material Selection, BOQ & Specification. The staff working for the firm is well qualified and highly experienced.

The highly skilled staff with good expertise has the capacity to execute the job with ease and without any flaws. They do their job with a passion and ensure that the execution of work meets your satisfaction levels. Al Ramziah group offers all kinds of interior fit out works including installation of ceilings, floors, furnishings, and partitions of a building, as well as the installation of all required building services. Al Ramziah Group specializes in building modern buildings that combine functionality with economy and aesthetics. The staff would make sure that they work towards making your ideas and vision a reality. The firm comes up with the best solutions irrespective of whether your project is a new building or refurbishment. The Interiors staff can offer an all inclusive service starting from noting down all your requirements and also guiding you to make the right decisions and choices at each and every step right from planning and construction through to the minute details of lighting Jack Eichel Youth Jersey , art work, furniture, furnishings and other things. The scope of services is designed according to your expectations and the staff is flexible enough to adapt themselves to your kind of requirements. The staff welcomes suggestions and completely cooperates with the client to ensure that they give the give you what you want.



AL Ramziah Group is one of the best Interior Cont. uae company offering interior fit out uae for commercial, residential, villas and public places. We have various services for your interiors such as Concept Creation for bathrooms, Kitchens, Living spaces Evander Kane Youth Jersey , Space Planning and many more luxury designs at competitive prices.

Total Views: 41Word Count: 452See All articles From Author


Cisco CCNA 640-802 CCENT Certification Exam Training: Frame Relay LMI And LMI Autosense Computers Articles | November 18, 2007

To succeed on your CCNA and CCENT exams as well as working with production networks, you've got to know all about Frame Relay LMI and LMI Autosense.? Learn all about both from Chris Bryant, CCIE #12933.



For success on your CCNA 640-802 and CCENT exams, you need to understand how and why Frame Relay LMI messages operate. You need to know this for real-world networking as well, since Frame Relay is prevalent in today's networks - and without LMI, you have no Frame Relay!


The Local Management Interface (LMI) messages are sent between the DCE Justin Bailey Womens Jersey , typically the service provider, and the DTE, the Cisco router.? LMI Status messages serve as keepalives for the frame connection.? If keepalives are not continually received by both the DCE and DTE, the frame connection will drop.? The LMI also indicates the PVC status to the router, reflected as either active or inactive.


The LMI types must match on the DTE and DCE for the PVC to be established. There are three types of LMI:?


Cisco (the default)


ansi


q933a


The LMI type can be changed with the frame lmi-type command. Before doing anything with the frame relay commands, though, we have to enable frame relay on the interface with the encapsulation frame-relay command.? Remember Ryan O'Reilly Womens Jersey , the default encapsulation type on a Cisco Serial interface is HDLC.


R1(config)#interface serial0


R1(config-if)#encapsulation ?


? atm-dxi????? ATM-DXI encapsulation


? frame-relay? Frame Relay networks


? hdlc???????? Serial HDLC synchronous


? lapb??????? ?LAPB (X.25 Level 2)


? ppp????????? Point-to-Point protocol


? smds???????? Switched Megabit Data Service (SMDS)


? x25????????? X.25


R1(config-if)#encapsulation frame-relay


R1(config-if)#frame-relay lmi-type ?


? cisco


? ansi


? q933a


We can hardcode the LMI type as shown in that example, and there's another way to get the LMI to match with the remote DCE. LMI Autosense has the router send out an LMI Status message for all three LMI types.

nach oben springen

Hier gehts zur Topliste Sie heulen nach dir!
Besucher
0 Mitglieder und 1 Gast sind Online

Wir begrüßen unser neuestes Mitglied: bill74
Forum Statistiken
Das Forum hat 949 Themen und 1737 Beiträge.

Heute waren 0 Mitglieder Online:


Xobor Einfach ein eigenes Xobor Forum erstellen