Explain What is STP?

devquora
devquora

Posted On: Feb 22, 2018

 

The STP also stands for Spanning Tree Protocol constructs a loop-free logical topography for Ethernet networks. It is a network protocol. Preventing bridge loops along with the broadcast radiation that results from them are the primary functions. If an active link fails, spanning tree consequently allows a network design to include backup links so that it could provide fault tolerance.

As denoted, STP creates a kind of spanning tree within a network of connected layer-2 bridges, along with disabling those links that which doesn’t form part of the spanning tree, leaving a single active path between any two network nodes. Radia Perlman invented the algorithm on which STP is based. At that time she was working for Digital Equipment Corporation.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Amazon Support Engineer Interview Questions

    Write a function to check if a number is prime?

    A prime number is a whole number greater than 1, which is only divisible by 1 and itself. // function check whether a number // is prime or not bool isPrime(int n) { // Corner case if (n...

    Amazon Support Engineer Interview Questions

    Write a regular expression to validate phone number in  XXX-XXX-XXXX format?

    A regular expression to validate phone number in XXX-XXX-XXXX format is follows: /^(?:\(\d{3}\)|\d{3}-)\d{3}-\d{4}$/...

    Amazon Support Engineer Interview Questions

    Command to check how much disk space a file is taking?

    The du command shows the disk space used by the directory or file....