Skip to main content

Posts

Showing posts with the label ccnp

CCNP Practice questions

  Question: What is the purpose of the Spanning Tree Protocol (STP)? Answer: The purpose of the Spanning Tree Protocol (STP) is to prevent loops in a network. STP is used in Ethernet networks to ensure that there is only one active path between two endpoints. This helps to prevent the occurrence of broadcast storms, which can cause significant network downtime. STP accomplishes this by using a calculation algorithm to determine the best path to take, and then disabling any redundant paths. Question: What is the difference between a switch and a router? Answer: A switch is a networking device that connects devices together on a local area network (LAN). It operates at the data link layer (layer 2) of the OSI model and is responsible for forwarding data frames between connected devices. A router, on the other hand, operates at the network layer (layer 3) of the OSI model and is responsible for forwarding packets between different networks. In addition to its forwarding capabilities, a ro

OSPF Multi-Area Configuration

  OSPF Multi-Area Configurationg We will use the following topology: Above we have R1 and R2 in area 0, the backbone area. Between R1 and R3, we will use area 1 and between R2/R4 we will use area 2. R3 and R4 have a loopback interface with an IP address that we will advertise in their area. Configuration Let’s start with all network commands to get OSPF up and running. The network command defines to which area each interface will belong.First, we will configure R1 and R2 for the backbone area: R1(config)# router ospf 1 R1(config-router)# network 192.168.12.0 0.0.0.255 area 0 R2(config)# router ospf 1 R2(config-router)# network 192.168.12.0 0.0.0.255 area 0 Let’s configure R1 and R3 for area 1: R1(config)# router ospf 1 R1(config-router)# network 192.168.13.0 0.0.0.255 area 1 R3(config)# router ospf 1 R3(config-router)# network 192.168.13.0 0.0.0.255 area 1 R3(config-router)# network 3.3.3.3 0.0.0.0 area 1 And last but not least, R2 and R4 for area 2: R2(config)# router ospf 1 R2(

Hot Standby Router Protocol (HSRP)

  Hot Standby Router Protocol (HSRP) #cybersecurity #coursera #quiz #solution #network HSRP 2 different networks configurations and verification Video Tutorial click here:   Hot Standby Router Protocol (HSRP) is a CISCO proprietary protocol, which provides redundancy for a local subnet. In HSRP, two or more routers gives an illusion of a virtual router. HSRP allows you to configure two or more routers as standby routers and only a single router as an active router at a time. All the routers in a single HSRP group shares a single MAC address and IP address, which acts as a default gateway to the local network. The  Active router  is responsible for forwarding the traffic. If it fails, the  Standby router  takes up all the responsibilities of the active router and forwards the traffic. Some important terms related to HSRP : Virtual IP :  IP address from local subnet is assigned as default gateway to all local hosts in the network. Virtual MAC address  : MAC address is generated automatic

Types of Links on Switches

Types of Links  that can be created on a Network Switch Video Tutorial link given at end ACCESS LINKS Access Links are the most common type of links on any VLAN switch. All network hosts connect to the switch's Access Links in order to gain access to the local network. These links are your ordinary ports found on every switch, but configured in a special way, so you are able to plug a computer into them and access your network. knowledge streams blog spot dot com free knowledge blog. download free source codes for python and java and other free stuff. We must note that the 'Access Link' term describes a configured port - this means that the ports above can be configured as the second type of VLAN links - Trunk Links. What we are showing here is what's usually configured as an Access Link port in 95% of all switches. Depending on your needs, you might require to configure the first port (top left corner) as a Trunk Link, in which case, it is obviously

RIP protocol GNS3 3 routers configuration and ping

how to configure 3 routers in gns3 using RiP protocol using fast ethernet Click here to see the commands tutorial.