Skip to main content

Posts

Threat Intelligence and Cybersecurity Knowledge Check

  Threat Intelligence and Cybersecurity Knowledge Check #cybersecurity #coursera #quiz #solution #network Congratulations! You passed! Grade received   93.75% To pass   80%  or higher Threat Intelligence and Cybersecurity Knowledge Check Total points  8 1. Question 1 Which three (3) of these were among the top 5 security drivers in 2019? (Select 3) 1 / 1 point Human error accounting for the majority of security breaches Correct Partially correct! New security and privacy laws that went into effect in 2019 IOT device attacks moving from targeting consumer electronics to targeting enterprise devices Correct Partially correct! The number of breached records in 2019 more than 3 times that of 2018 Correct Partially correct! 2. Question 2 What was the average cost of a data breach in 2019 in US dollars? 1 / 1 point $262K $3.92M $42.7M $237M Correct Correct! 3. Question 3 What was the average size of a data breach in 2019

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(