The New Stuff

Spanning-Tree Protocol Terminology and Selection

Spanning-Tree Protocol Terminology
The ports participating in STP play different roles and those roles use different states of operation.

Spanning-Tree Port Roles
  1. Root Port (RP) - It is a port on a non-root switch, which is the shortest (the best) path towards the root bridge. Root bridge does NOT have any root ports. (no shortest path to itself ;-))
  2. Designated Port (DP) - It is a port that is in the forwarding state. All ports of the root bridge are designated ports (they are never in a blocking state). BPDU frames our sent out this port.
  3. Non-Designated Port (NDP) - It is a port that is in a blocking state in the STP topology.
Spanning-Tree Port States
  1. Disabled - The port in this state does not participate in the STP operation (it is shut down).
  2. Blocking - The port does NOT forward any Ethernet frames, does NOT accept any Ethernet frames (discards arriving frames), does NOT learn any MAC addresses. However, the port DOES process BPDU frames received from a neighboring switch. If the port transitions to this state (blocking), it can stay blocked for 20 seconds by default (max_age)
  3. Listening - The port in this state CAN send and receive the BPDU frames. However, the port in this state does NOT learn any MAC addresses, and does NOT forward or process incoming frames either. All Ethernet frames are being discarded. The computation of loop free topology takes place in this state. If the port transitions to this state (listening), it can stay in this state for 15 seconds by default (forward_delay).
  4. Learning - The port in this state already knows its role (root port or designated port ) in the STP domain. However, the port will not forward any Ethernet frames yet. It will be learning MAC addresses from the frames arriving at the port in order to populate MAC address table. This helps avoid too much flooding when the port transition to the forwarding state. If the port transitions to this state (learning), it can stay in this state for 15 seconds by default (forward_delay).
  5. Forwarding - The port in this state will forward all Ethernet frames as per switch operation. Also, the port will process all incoming Ethernet frames and will actively learn MAC addresses from the arriving traffic.

NOTICE!
Bridges and switches are functionally the same devices. I will use both terms interchangeably.




As soon as you familiarize yourself with STP port roles and port states, it is time to explain how Spanning-Tree Protocol works.

Pic. 1 - STP Port Terminology
Icons designed by: Andrzej Szoblik - http://www.newo.pl

STP (IEEE 802.1d) Principles of Operation
STP will use three stages to compute loop free topology (pic. 2):

  1. Single root bridge election.
  2. Each non-root switch to select a single best port towards the root (root port).
  3. Each non-root switch to select a single forwarding port per segment (designated port).
 Pic. 2 - STP Overview
Icons designed by: Andrzej Szoblik - http://www.newo.pl

Bridge Protocol Data Unit (BPDU)
All switches communicate with one another using special frames called BPDU. Those frames contain multiple parameters that switches are going to process in order to create and maintain loop free topology.

Root Bridge
Root bridge is the switch that has all ports working in the designated role. It will be the reference point from which the loop free topology is computed. Root bridge will impose the timers that other switches will use such as: 

  • hello time - how often BPDUs are going to be sent/relayed (default timer=2 seconds), 
  • max age - how long the configuration is valid (default timer=20 seconds),
  • forward delay - how long a port should be in listening/learning state (default timer=15 seconds). 
Root bridge will be announcing its presence by sending BPDU frames. Other switches will relay those frames out their designated port given the hello time. Also, the root bridge has all its ports in the designated role (forwarding).

1. Root Bridge Election

Only one switch in the layer 2 network becomes the root bridge. This is how standard was defined and is known as the Common Spanning-Tree approach (CST). Cisco changed that paradigm and introduced Per Vlan Spanning-Tree approach (PVST+). Cisco switches elect a single root switch per VLAN so, in theory each VLAN could have its own root bridge.

Root election is based on a single parameter that is found in the BPDU frame called: Bridge ID. The switch with the lowest Bridge ID becomes the root. Bridge ID has the following format:

priority.base-mac-address

Priority is configurable parameter that is used to elect the root bridge a device you want to be the root. The default value is: 32768. The lower the value is the more likely for a switch to become a root.

Base Mac Address is the unique mac address every switch has been given by the manufacturer. It is a tie breaker in case the priority on all switches is identical. 

If you've understood everything so far, you're ready to look at the election process in more detail.

Pic. 3 - Root Bridge Election.
Icons designed by: Andrzej Szoblik - http://www.newo.pl

Imagine that we've just wired our topology in the pic. 3. Now, we start up all the switches and as soon as their ports transition to LISTENING state, they begin to send BPDU frames out of all active ports. In those frames both Bridge ID and Root ID parameters point to their own priority.base-mac-address value. In other words, each switch thinks it is the root bridge. It is like each switch is saying: "Hi there! This is my name (Bridge ID) and by the way I'm the root (Root ID the same as the Bridge ID value). Since they are processing the incoming BPDU's from the neighbors, SW2 and SW3 realize that SW1's Bridge ID is lower than theirs. From that point onwards, they begin to relay BPDU frames saying that SW1 as the root bridge.

In our example, SW3 upon receiving the BPDU from SW1SW2 and SW4  compares their Bridge ID with its own and the conclusion is that SW1's Bridge ID has the lowest value (base-mac-address breaks the tie). From this point onwards, it relays the BPDU frame out of all its active ports with the following parameters:

Bridge ID = 32768.0000.3333.3333
Root ID = 32768.0000.1111.1111

Similarly, all the switches agree that SW1 is the root (their own Bridge ID is higher).

2. Root Port Selection

As soon as the root has been elected, all non-root switches begin to calculate which port is the best (the least cost) towards the root bridge. This port will be called the root port.

Pic. 4 - Root Port Selection
Icons designed by: Andrzej Szoblik - http://www.newo.pl
SW2SW3 and SW4 receive BPDUs from different directions. For instance, SW2 will receive them on its port F0/1 and F0/2 (look at pic 4). The accumulative cost (the sum of the cost in the path towards the root), is taken into consideration. The lowest cost to reach the root becomes the root port.

How the cost of path is calculated?

Each speed has its arbitrarily assigned cost which is configurable. A few examples are below:

10 Mbps = 100
100 Mbps = 19
1 Gbps = 4
10 Gbps = 2

The root bridge (here SW1) is sending its BPDU frame every 2 seconds. It uses the parameter called: Root Path Cost in BPDU to advertise the cost to the root. It puts the value of '0' in it, as it is the root bridge and has no cost to itself. The frame is sent out its port F0/1 towards SW3 and F0/2 towards SW2SW2, upon receiving it, adds the cost used to reach the sender of BPDU based on the predefined speed-to-cost value (all ports in our topology are FastEthernet=19).

Root Path Cost = 0 + 19 = 19 via F0/2

SW2 is going to advertise its best (as of now) cost out of F0/1 port towards SW3SW3 will receive BPDU from SW1 with the Root Path Cost=0 on its F0/1 port. It will also receive BPDU from SW2 on its F0/2 interface with the Root Path Cost=19. As both ports have the cost of 19 towards those BPDU senders, the following math is done to choose the least cost path towards the root bridge:

Root Path Cost = 0 + 19 = 19 via F0/1
Root Path Cost = 19 + 19 = 38 via F0/2

It is clear that the direct connection towards root bridge via F0/1 is going to be selected as the root port.

SW3 has the least cost towards equal 19 (via F0/1 port). This cost is going to be added to Root Path Cost while it sends the BPDUs out F0/2, F0/3 and F0/4. Of course, SW2 also chooses its F0/2 port as the root port since the cost is smaller.

What if the Root Cost Path is identical?

We run into that situation on SW4. It receives BPDUs on its ports F0/1 and F0/2 with the following parameters:

Bridge ID = 32768.0000.3333.3333
Root ID = 32768.0000.1111.1111
Root Path Cost = 19 

The cost clearly does not help to choose a single root port as both ports have the same cost:
19 + 19 = 38.

The following algorithm is used to determine the root port or designated port (in order):

  1. Prefer the lowest Root Path Cost.
  2. In case of the same Root Path Cost, prefer the lowest Bridge ID of the designated switch (the neighbor that sends BPDUs).
  3. In case of receiving BPDUs on multiple ports from the same designated switch (BPDU sender), prefer the lowest Port ID (known also as port priority) of the sender. That parameter has a default value 128 and is configurable.
  4. In case of all above are did not resolve the problem, prefer the lowest Port ID of the BPDU sender.
Equipped with that knowledge let us consider SW4 now.
  1. SW4 receives BPDUs on port F0/1 and F0/2. The Root Path cost is the same: 19 + 19 = 38 on both ports.
  2. The designated switch (SW3), is the same switch i.e. the same Bridge ID (32768.0000.3333.3333).
  3. The designated switch (SW3) sends BPDUs out of its F0/3 and F0/4 ports with the same priority = 128 (Port ID).
  4. The tie breaker is the lowest Port ID where BPDU frames arrive on SW4. Port f0/1 becomes the root port since F0/3 is lower than F0/4 on SW3.
The root ports have been selected on all non-root switches (pic. 5). STP will select a single designated port (forwarding) per segment to block the redundant path towards the root bridge. This way the loop does not exist. Should any of root ports fail, it will take around 30-50 seconds to put the blocking port into forwarding state.

3. Designated Port Selection.
This procedure follows exactly the same algorithm used for root port selection.

Pic. 5 - Designate Port Selection
Icons designed by: Andrzej Szoblik - http://www.newo.pl

Since root port is the best port towards the root bridge it is going to be in the forwarding state (look at the beginning of this lesson). What is left to do, is to choose one of the ports between SW2 and SW3 as designated (forwarding) and the other as non-designated (blocked). The same applies between SW3 and SW4. Either SW3 will block its F0/4, or SW4 should block its F0/2 port.

SW3 will block its F0/2 (non-designated) and SW2 will make its F0/1 port designated (forwarding). The process will look as follows:

  1. Root Path Cost advertised by SW2 is 19 and so is the cost advertised by SW3.
  2. SW2 has lower Bridge ID (32768.0000.2222.2222) than SW3 (32768.0000.3333.3333). SW3 must block its F0/2.
And last selection is going to happen between SW3 (port F0/4) and  SW4 (port F0/2).
  1. Root Path Cost Advertised by SW3 is 19, but SW4 advertises its cost as 38 (two hops via F0/1). SW4 blocks its port F0/2 (non-designated), the SW3 promotes its port F0/4 to designated role (forwarding).
Pic. 6 - Spanning-Tree Topology Computed
Icons designed by: Andrzej Szoblik - http://www.newo.pl

This process happens in the LISTENING state of all ports. Since the topology has been computed and does not have loops (blocking appropriate ports), it is safe to move to next states: learning and finally forwarding.

Is meditation helping us to be motivated?

Mostly people seem busy or we can listen them talking about meditation. First let describe meditation a bit; meditation is a condition that human leave all things behind and focus on what is going around by the power of thought in a silent place.

In my perspective a person who manages time for this task can achieve the life goal. Because a meditator can imagine what will going on before its happening.



Meditation lets us motivated accomplish our goals. We keep behind it and move forward because of only one reason and that is fear. Fear may not be of doing that but fear of losing that with our limited thoughts whether we succeed or not.

These all things happen in our limited thoughts that we can’t think out of the box. But meditation forces us to move our thought and break the wall of those boxes which  limit of our thought.

What Is Routing? A simple Defination

Routing is the act of moving information across an inter-network from a source to a destination. Along the way, at least one intermediate node typically is encountered. Routing is often contrasted with bridging, which might seem to accomplish precisely the same thing to the casual observer. The primary difference between the two is that bridging occurs at Layer 2 (the link layer) of the OSI reference model, whereas routing occurs at Layer 3 (the network layer). This distinction provides routing and bridging with different information to use in the process of moving information from source to destination, so the two functions accomplish their tasks in different ways.


The topic of routing has been covered in computer science literature for more than two decades, but
routing achieved commercial popularity as late as the mid-1980s. The primary reason for this time lag is that networks in the 1970s were simple, homogeneous environments. Only relatively recently has large-scale inter-networking become popular.

All Adobe CS6 Cracke Files free download and Enjoy

1:  Download Crack File *


2:  Extract The Zip File. (Downloaded)

3:Copy amtlib.dll  File, From 32 or 64 bit Folder which is inside of extracted file.

4: paste in this path "C:\Program Files (x86) or programFiles\Adobe\*Your Product Name*.

5: Enjoy!!



   Download Crack File  



 Download Crack File  


FOR EXTENDED BELOW LINK



   Download Crack File  



   Download Crack File  



   Download Crack File  



   Download Crack File  



     Download Crack File 


   Download Crack File  



   Download Crack File  



   Download Crack File  



   Download Crack File  



* Open link and wait for 5 second and then Skip Ads. 

28 Best Joomla Business Website Templates

Joomla is trusted by millions of business owners around the world to drive their business needs with great functionality and features. A large plugin base and user friendly design is what many users stick to it for a long time. Business templates for Joomla are designed at a good rate and you can find many templates here in this article for professional website building.

Business owners who provide services or who just showcase their website portfolio need premium templates with premium support. New Joomla versions has improved the user interface, options and overall responsive design layout. Start making amazing website on your own by altering any of these premium themes to your brand needs. The premium support for Joomla Business Website Templates will ease your effort as you will get any help regarding theme customization or extension compatibility requirements.
Also we have added some free Joomla template recently and updated it so make sure you visit that topic as well. The link is provided below.
Related Post of Interest:

Flatbuild – Construction Joomla Template

A Joomla template to create responsive construction website for companies or contractors who are in the field. With a clean interface and nice set of features including Google map markers, retina icons, dual homepage layouts etc this theme is well worth a try.
Demo | Source
joomla Building and Construction Template

Aaika – Business Website template

This template can serve multiple purposes like photography, fashion, services, blog and much more if you like to set it up that way. The responsive design layout and feature rich modules will get your work done faster.
Demo | Source
 Responsive Joomla website template

Effortless – MultiPurpose Portfolio Joomla Template

A creative portfolio template designed for business, studios, creative design agency, models, artists alike built with warp 7 framework. The best of the Joomla Business Website Templates for business website is effortless as this theme is also responsive with clean parallax effects.
Demo | Source
effortless

Quanti Multi-Purpose Joomla! Template

Quanti is a responsive multi-purpose Joomla 2.5 and 3.x template whose clean design and business feel makes it suitable for corporate websites or personal portfolio websites.
Demo | Source
Quanti

Floyd – One Page Parallax Joomla Template

Floyd is a 100% responsive HTML5 and CSS3 theme. It’s perfect for agencies, corporate and business sites. Is powered with twitter bootstrap 3.0.
Demo | Source
Floyd

DestinyFX – Responsive Joomla Template

DestinyFX is an amazing corporate Joomla 2.5/3.x template. It is fully responsive and has many custom modules. It also offers unlimited color variations, two menu variations – Dark and Light and 500+ Google Fonts to choose from.
Demo | Source
DestinyFX

Simple Love – Multipurpose Joomla Template

Simple Love – a clean and modern website will be one suiting all needs: Corporation, Magazine, Blog and Portfolio…The appearance of Simple Love will make your site become more useful and attractive.
Demo | Source
simplelove-corporation

Haze: One Page Responsive Parallax Joomla Template

HAZE is a vibrant, responsive one page parallax Joomla template built on the Gantry framework. It includes a variety of unique jQuery scripts as well as several premium ones.
Demo | Source
Haze

Flatastic Responsive Multipurpose VirtueMart Theme

Flatastic is a premium responsive multipurpose VirtueMart theme which perfectly fits for any e-commerce website. With such features like this template has you can forget about other store templates.
Demo | Source
Flatastic

Roocky

Roocky template is super flexible and comes with powerful admin panel, boxed and wide page layouts, preinstalled color schemes, unlimited backgrounds and patterns, jQuery animations, SEO optimized and clean, carefully written code.
Demo | Source
roocky-590-300

M-Social – Responsive Joomla Theme

A unique design with modern grid layout for social sharing.
Demo | Source
social

Hermoso

Hermoso is fully responsive multipurpose Joomla Template. It has modern and clean design. You can use it for companies, agencies, portfolios and featuring a trendy but unique flat design.
Demo | Source
hermoso

Mouse Theme

MOUSE is html5, css3 powered responsive multipurpose corporate joomla template which will be a great solution for your corporate, business and portfolio sites. 1 premium componant included (value of $25), which you will get for free with this template. It also comes with K2 for blog, RoksProcket and more custom extensions.
Demo | Source
MOUSE

Neue App Landing Page Joomla Template

Neue is the app landing single page template for Joomla 3.2.x. It is equipped with amazing features and comes with even more amazing support.
Demo | Source
Neue App Landing

Organic Food – Responsive Joomla Template

Organic Food is a clean and modern Joomla 2.5.X and Joomla 3.X Template. It’s based on Helix 2 Framework which gives the template big variety of features such as Unlimited color options.
Demo | Source
Organic

HLI- Responsive Corporate Joomla! Template

HLI – Corporate template for Joomla! 3.2+. Template is built on top of the Bootstrap Framework and it utilizes new features introduced in Joomla 3.X series.
Demo | Source
hli theme

Creatrix – Multipurpose Creative, Online Shop

JM Creatrix is a stunning Joomla template by the Joomlama team. The template is a multi-purposeprofessional Joomla 2.5 & Joomla 3 template, which includes HikaShop plus many more features.With a clean, modern, white, professional design and 8 preset colors, plus the option for unlimited colors.
Demo | Source
Creatrix

Atrium – Responsive One Page Joomla Template

Atrium is a parallax, responsive corporate one page template, suitable for business or corporate related projects.
Demo | Source
Atrium

Livalight Theme – Responsive Multi-Purpose Joomla

Livalight Theme have been designed as a super guide and to present Very Flexible, Clean. Make them easy to prepare and to make sure they can be understood by readers.
Demo | Source
Livalight

Mega Shop – VirtueMart Responsive Theme

Mega Shop VirtueMart Theme is specially designed for electronics, home accessories, computers fashion and match any kind of store.
Demo | Source
Mega Shop

Restaurant – VirtueMart Responsive Template

Restaurant and Hotel VirtueMart Template is specially designed for food, grocery, drinks and restaurant store.
Demo | Source
Restaurant

Easterlin – Responsive Joomla Business Template

Easterlin – is a Corporate Responsive Joomla 3.2.x template. It is creative, clients need, professional Joomla template.
Demo | Source
Easterlin

Agency – Corporate Clean Joomla Template

Agency is a Premium Responsive Joomla 3.2.x template with a clean and professional design which will be a great solution for your corporate, business and portfolio site.
Demo | Source
Agency

NOO Delphinus – Corporate/Portfolio Template

Have you ever seen Delphinus constellation in the night sky? Our Delphinus Joomla Template whose name taken from its constellation is just as bright!.
Demo | Source
NOO Delphinus

Haven – Elegant One Page Joomla Template

Haven is an effortlessly stunning responsive Joomla template featuring subtle design elements and many flexible elements.
Demo | Source
Haven

JSN Corsa – Leverage your social website

JSN Corsa will be the most powerful JoomlaShine template right now, with extended styles for many popular extensions: EasySocial, EasyDiscuss, EasyBlog, K2 andKunena. Leverage your website right now.
Demo | Source
JSN Corsa

Cacoon

Cacoon is a Joomla Template with HTML5, CSS3 and Responsive behavior. Cacoon’s layout is also liquid, this means it can fit any other screen like low resolutions. Cacoon responds to tablets and phones.
Demo | Source
Cacoon

Espresso – Multipurpose Responsive Joomla Template

Espresso – is a clean stylist and multipurpose Joomla 3.2.x ready template powered by Gantry Framework.
Demo | Source
Espresso

dilmurad-responsive

Popular Posts

^