Real Lab Workbook

Real Lab Workbook

Learn IT Skills For Free

27/12/2023

📢Scalable Web Application Architecture:
1. Load Balancing:
Distribute incoming traffic across multiple servers to prevent overloading any single server. Load balancers enhance fault tolerance and ensure optimal resource utilization.
Consider using both hardware load balancers and software-based solutions.
2. Horizontal Scaling:
Instead of increasing the power of a single server (vertical scaling), add more servers to your infrastructure (horizontal scaling). This approach provides better scalability and fault tolerance.
Cloud platforms like AWS, Azure, and Google Cloud make horizontal scaling easier through auto-scaling groups.
3. Database Scaling:
Choose a scalable database solution. Consider NoSQL databases (e.g., MongoDB, Cassandra) for distributed and horizontally scalable data storage.
Implement database sharding to distribute data across multiple database instances.
4. Caching:
Use caching mechanisms to reduce the load on your database and improve response times. Utilize in-memory caches (e.g., Redis, Memcached) for frequently accessed data.
Content Delivery Networks (CDNs) can cache and distribute static assets globally, improving the delivery speed for users.
5. Microservices Architecture:
Decompose your application into smaller, independent services that can be developed, deployed, and scaled independently.
Microservices enable better fault isolation, easier updates, and scalability of individual components.
6. Asynchronous Processing:
Move time-consuming or non-urgent tasks to background processes using message queues (e.g., RabbitMQ, Apache Kafka).
Asynchronous processing improves responsiveness and allows better utilization of resources.
7. Elasticity:
Design your architecture to scale dynamically based on demand. Cloud providers often offer auto-scaling features to adjust resources as needed.
Monitor key performance indicators and set triggers for automatic scaling.
8. Stateless Design:
Aim for stateless components, where each request from a client contains all the information needed to fulfill that request. Stateless applications are easier to scale horizontally.
Store session data externally (e.g., in a database or cache) rather than on the server.
9. Global Content Delivery:
Distribute your application's static assets and content across multiple servers or locations to reduce latency and improve user experience globally.
Use multiple data centers or edge locations to serve content closer to the end-users.
10. Monitoring and Analytics:
Implement comprehensive monitoring tools to track performance, detect bottlenecks, and identify areas for improvement.
Use analytics to understand user behavior, optimize features, and plan for future scalability needs.
11. Security Considerations:
Ensure that scalability measures don't compromise security. Implement security best practices and regularly audit your architecture for vulnerabilities.
Use secure communication protocols (HTTPS), data encryption, and access controls.
12. Continuous Integration and Deployment (CI/CD):
Adopt CI/CD pipelines for automated testing, building, and deployment. Continuous integration ensures that changes are tested thoroughly before reaching production.
Automation facilitates rapid and consistent deployment, making it easier to scale and update the application.
13. Distributed Databases:
Consider distributed databases that can span multiple servers or locations. This enables data storage and retrieval to be distributed across a network, enhancing scalability and fault tolerance.
14. Serverless Architecture:
Explore serverless computing for certain parts of your application. Serverless platforms automatically scale based on demand, and you only pay for the actual resources consumed during ex*****on.
15. Documentation and Architecture Planning:
Document your architecture comprehensively. This includes infrastructure setup, dependencies, and scaling strategies. Clear documentation aids in understanding and maintaining the system.
Conclusion:
A scalable web application architecture is a combination of thoughtful design, appropriate technologies, and continuous monitoring. Regularly assess and optimize your architecture to ensure that it can adapt to changing requirements and handle increasing loads effectively. Remember that scalability is an ongoing process rather than a one-time task.

19/12/2023

What is json web token ?
👉Follow us to learn CCNA free.
A JSON Web Token (JWT) is a compact, URL-safe means of representing claims between two parties. It is often used for authentication and authorization purposes in web development. JWTs are commonly used to transmit information between the parties in a secure and compact manner.

JWTs consist of three parts:

Header: Contains information about how the JWT is encoded, typically consisting of two parts: the type of the token, which is JWT, and the signing algorithm being used, such as HMAC SHA256 or RSA.

Payload: Contains the claims. Claims are statements about an entity (typically, the user) and additional data. There are three types of claims: registered, public, and private claims. Some common claims are "iss" (issuer), "exp" (expiration time), "sub" (subject), and "iat" (issued at).

Signature: To create the signature part, you take the encoded header, the encoded payload, a secret, the algorithm specified in the header, and sign that.

The JWT is then formed by concatenating the encoded header, the encoded payload, and the signature, with each part separated by a period ('.'). The resulting JWT can be sent over the network and verified by the receiver to ensure its integrity and authenticity.

JWTs are often used in authentication systems where a user logs in, and upon successful authentication, the server issues a JWT to the client. The client can then include this JWT in subsequent requests to the server, allowing the server to verify the user's identity without the need for the user to send their credentials with each request.

It's important to note that while JWTs are useful for transmitting information securely, they should not be used to store sensitive information that should remain confidential. The information in a JWT can be decoded, so any sensitive data should be stored on the server side.
credit security zines

18/12/2023

What is HTTP request header ?
👉Follow us to learn CCNA free.
The HTTP request header contains important metadata about the request. Below are some common elements found in an HTTP request header:

Request Method:
Specifies the method used by the client to communicate its intentions. Common methods include GET, POST, PUT, DELETE, etc.

URL (Uniform Resource Locator):
The specific resource or endpoint on the server that the client is requesting.

HTTP Version:
Indicates the version of the HTTP protocol being used (e.g., HTTP/1.1).

Host:
Specifies the domain name or IP address of the server.

User-Agent:
Provides information about the client making the request, including details about the browser or user agent.

Accept:
Informs the server about the types of content that the client can understand. It lists MIME types, such as text/html or application/json.

Accept-Language:
Specifies the preferred natural language of the client.

Accept-Encoding:
Informs the server about the encoding methods (like gzip or deflate) that the client can understand.

Connection:
Indicates whether the connection should be kept alive or closed after the request is completed.

Referer:
Contains the URL of the page that referred the client to the current page.

Cookie:
If the client has previously received cookies from the server, it sends them back with subsequent requests.

Authorization:
Contains credentials for authenticating the client with the server.
credit security zines

18/12/2023

What is OSI model ?
👉Follow us to learn CCNA free.
The OSI (Open Systems Interconnection) model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven abstraction layers. Each layer serves a specific purpose and interacts with adjacent layers to provide a comprehensive set of protocols and standards for network communication. The seven layers of the OSI model, from the lowest to the highest, are as follows:

Physical Layer (Layer 1):
Deals with the physical connection between devices.
Specifies the characteristics of the hardware, such as cables, connectors, and signaling.

Data Link Layer (Layer 2):
Responsible for the reliable transmission of data frames between two devices on the same network.
Manages issues such as framing, addressing, and error detection.

Network Layer (Layer 3):
Focuses on logical addressing and routing of data between devices on different networks.
Provides the necessary functions to determine the best path for data to travel from the source to the destination.

Transport Layer (Layer 4):
Ensures end-to-end communication and data integrity between devices.
Manages error detection, flow control, and retransmission of lost or corrupted data.

Session Layer (Layer 5):
Establishes, maintains, and terminates communication sessions between applications.
Manages dialog control, allowing data exchange in half-duplex or full-duplex mode.

Presentation Layer (Layer 6):
Translates data between the application layer and the lower layers.
Handles data formatting, encryption, and compression.

Application Layer (Layer 7):

Provides network services directly to end-users or applications.
Allows software applications to communicate over a network, and it includes protocols for tasks such as file transfer, email, and remote login.
These layers form a hierarchical structure, and each layer relies on the services provided by the layer immediately below it. The OSI model serves as a reference framework for understanding and designing network architectures, though in practice, the TCP/IP model is more commonly used in the context of the internet.
credit brijpandeyji

18/12/2023

What is Canary tokens?
👉Follow us to learn CCNA free.
Canary tokens are a type of digital security mechanism used to detect and alert individuals or organizations to unauthorized access or activity. The concept is inspired by the use of canaries in coal mines, where the death of a canary served as an early warning sign of dangerous conditions.

In the digital realm, a Canary token is essentially a decoy or trap that is placed in various locations within a network or system. If an attacker comes across or interacts with the token, it triggers an alert, signaling a potential security breach. Canary tokens are not meant to prevent attacks but rather to provide early warning and detection.

Here are a few common types of Canary tokens:

URL Tokens: These are links or URLs that, when accessed, trigger an alert. They can be embedded in documents, emails, or web pages.

File Tokens: These are files (such as PDFs, Word documents, or Excel spreadsheets) that, when opened or accessed, trigger an alert. They are often designed to look like enticing targets for attackers.

DNS Tokens: These tokens involve creating subdomains that, when looked up or accessed, trigger an alert. They are often used to detect DNS reconnaissance activities.

Credential Tokens: These tokens are fake credentials placed within a system. If an attacker attempts to use these credentials, it triggers an alert.

Canary tokens are a part of a broader category of security practices known as honeypots, which are systems or components designed to attract and detect attackers. The goal is to divert attackers' attention from real assets while simultaneously providing an early warning of potential threats.

It's important to note that while Canary tokens can be a valuable tool for detecting certain types of attacks, they are not a silver bullet. They should be used as part of a comprehensive cybersecurity strategy that includes other measures such as firewalls, antivirus software, intrusion detection systems, and regular security audits.
Credit Security Zines

17/12/2023

What is Content Delivery Network ?
👉Follow us to learn CCNA free
CDN stands for Content Delivery Network. It is a distributed network of servers strategically placed in various geographical locations to deliver web content, such as text, images, videos, and other multimedia, to users more efficiently. The primary purpose of a CDN is to reduce latency, enhance website performance, and improve the overall user experience.

Here's how a CDN typically works:

Content Distribution:
The original content, hosted on a server (often called the origin server), is replicated and distributed to multiple servers across different locations worldwide. These servers are known as CDN edge servers or nodes.

Geographical Distribution:
CDN providers strategically place their edge servers in various data centers around the globe. The goal is to have these servers located closer to end-users to reduce the physical distance that data needs to travel.

Caching:
CDN servers cache static content, such as images, stylesheets, and scripts. When a user requests a particular piece of content, the CDN delivers it from the nearest edge server that already has a cached copy, reducing the load on the origin server.

Load Balancing:
CDNs use load balancing algorithms to distribute user requests across multiple servers. This ensures that no single server becomes overwhelmed with traffic and helps optimize resource utilization.

Accelerated Content Delivery:
By delivering content from a server that is physically closer to the user, CDNs significantly reduce the time it takes for content to reach the end-user. This results in faster loading times, lower latency, and an improved browsing experience.

Dynamic Content Acceleration:
Some CDNs also optimize the delivery of dynamic content by using techniques like route optimization, TCP optimization, and connection reuse, ensuring that even dynamic content is delivered quickly.

Security Features:
CDNs often include security features such as DDoS (Distributed Denial of Service) protection, web application firewall (WAF), and SSL/TLS termination. These features help protect websites and applications from various online threats.

Scalability:
CDNs are designed to scale easily to handle increased traffic and demand. They automatically adjust to fluctuations in user requests, ensuring consistent performance during traffic spikes.

Popular CDN providers include Akamai, Cloudflare, Amazon CloudFront, and others. Websites, online platforms, and content providers use CDNs to enhance the delivery speed and reliability of their content, especially for global audiences. Additionally, CDNs contribute to improved website performance, which can positively impact search engine rankings and user satisfaction.

credit security zines

15/12/2023

What is a proxy server?
👉Follow us to learn CCNA free.
A proxy server is an intermediate server that acts as a gateway between a local network (e.g., a computer or a smartphone) and a larger-scale network, such as the internet. The primary purpose of a proxy server is to provide a layer of separation and control between the devices making requests and the resources they are trying to access.

Here are some key functions and features of a proxy server:

Request Forwarding: When a user makes a request to access a resource (e.g., a website), the request is sent to the proxy server instead of directly to the target server. The proxy then forwards the request to the target server on behalf of the user.

Content Filtering: Proxy servers can be configured to filter content based on various criteria such as URL, content type, or keywords. This is often used to enforce acceptable use policies in organizations, restrict access to certain websites, or protect against malicious content.

Anonymity and Privacy: Users can route their internet traffic through a proxy server to hide their IP addresses and maintain a level of anonymity. This is commonly used to bypass geo-restrictions or to enhance privacy.

Caching: Proxy servers can cache frequently requested resources locally. When a user requests a cached resource, the proxy can deliver it directly without fetching it from the target server. This improves performance and reduces the load on the network.

Access Control: Proxy servers can be used to control access to resources based on user authentication or IP address. This is often employed in corporate networks to regulate internet access for employees.

Security: Proxy servers can enhance security by acting as an additional layer of defense between the internal network and the internet. They can filter out malicious content, block access to known malicious websites, and provide an additional barrier against external threats.

Bandwidth Control: Proxy servers can be used to control and optimize bandwidth usage. This includes bandwidth throttling, prioritizing certain types of traffic, and managing network resources more efficiently.

Logging and Auditing: Proxy servers can log user activity, including accessed URLs, traffic volume, and timestamps. This information can be useful for monitoring and auditing purposes.

Credit security zine

15/12/2023

Different network level attacks
👉Follow Real Lab Workbook to learn CISCO CCNA for free.

Network attack types.
Network attacks are malicious activities designed to exploit vulnerabilities or compromise the security of computer networks. These attacks can target various components of a network, including hardware, software, and the data transmitted over the network. The motives behind network attacks can range from stealing sensitive information to disrupting network services. Here are some common types of network attacks:

Denial-of-Service (DoS) Attack:

In a DoS attack, the goal is to overwhelm a network, system, or service with a flood of traffic, rendering it unavailable to users. Distributed Denial-of-Service (DDoS) attacks involve multiple compromised computers (a botnet) coordinating the attack.

Man-in-the-Middle (MitM) Attack:
In a MitM attack, an attacker intercepts and possibly alters communication between two parties without their knowledge. This can be used to eavesdrop on sensitive information or manipulate the data being transmitted.

Phishing:
Phishing involves tricking individuals into revealing sensitive information, such as usernames, passwords, or financial details. It often involves deceptive emails, websites, or messages that appear legitimate.

Malware:
Malicious software, or malware, includes viruses, worms, trojans, and other types of malicious code designed to infect and compromise networked systems. Malware can be spread through email attachments, infected websites, or malicious downloads.

SQL Injection:
In an SQL injection attack, an attacker exploits vulnerabilities in a web application's database by injecting malicious SQL code. This can lead to unauthorized access, data theft, or manipulation of the database.

Cross-Site Scripting (XSS):
XSS attacks involve injecting malicious scripts into web pages that are viewed by other users. These scripts can then execute in the context of the victim's browser, potentially stealing information or performing other malicious actions.

Packet Sniffing:
Packet sniffing involves intercepting and inspecting network traffic to capture sensitive information, such as login credentials or sensitive data. This is particularly effective on unencrypted networks.

DNS Spoofing:
In DNS spoofing, attackers manipulate the Domain Name System (DNS) to redirect users to malicious websites. This can be used for phishing or to inject malicious content into legitimate sites.

Brute Force Attacks:
Brute force attacks involve attempting to gain unauthorized access by systematically trying all possible combinations of passwords or encryption keys until the correct one is found.

Eavesdropping:
Eavesdropping, or passive interception, involves monitoring network communications without actively altering the data. Attackers may use tools to capture and analyze unencrypted data.
credit security zones

15/12/2023

How firewall works ?👉Follow Real Lab Workbook to learn CISCO CCNA free.

Firewalls are network security devices or software that monitor and control incoming and outgoing network traffic based on predetermined security rules. They act as a barrier between a trusted internal network and untrusted external networks, such as the internet. There are several types of firewalls, each with its own characteristics and use cases. Here are some common types:

Packet Filtering Firewall:
Operates at the network layer (Layer 3) of the OSI model and filters packets based on predefined rules. It examines the headers of individual packets and allows or blocks them based on criteria such as source and destination IP addresses, port numbers, and protocol types.

Stateful Inspection Firewall:
Combines the features of packet filtering and the monitoring of the state of active connections. Stateful inspection keeps track of the state of active connections and makes decisions based on the context of the traffic, allowing or denying packets based on the state of the connection.

Proxy Firewall (Application Layer Firewall):
Operates at the application layer (Layer 7) of the OSI model and acts as an intermediary between internal and external systems. It intercepts and evaluates network traffic at the application layer, making it more capable of understanding and controlling specific applications and protocols. Proxies can provide additional security features, such as content filtering and caching.

Circuit-Level Gateway:
Works at the session layer (Layer 5) of the OSI model. It monitors TCP handshakes to determine whether a requested session is legitimate or not. Once a session is established, the firewall makes decisions based on the session's characteristics, but it doesn't inspect the actual content of the data.

Next-Generation Firewall (NGFW):
Combines traditional firewall features with additional functionalities such as intrusion prevention, deep packet inspection, and application-layer filtering. NGFWs are designed to provide more comprehensive security measures and are often capable of understanding and controlling applications and users.

Proxy Server (Forward and Reverse Proxy):
Proxy servers act as intermediaries between clients and servers, forwarding requests and responses. In the context of firewalls, a forward proxy protects clients by filtering and controlling outbound traffic. In contrast, a reverse proxy protects servers by filtering and controlling inbound traffic.

Cloud Firewall:
Specifically designed for cloud-based environments, cloud firewalls protect virtual machines and applications running in cloud infrastructures. They often provide dynamic scalability and integrate with cloud-native security services.

Application Layer Gateway (ALG):
ALGs are used to enhance support for certain applications or protocols by dynamically opening or closing ports to facilitate communication. They are often used in conjunction with other firewall types to better support specific applications like FTP or SIP.

Each type of firewall has its strengths and weaknesses, and the choice of firewall depends on the specific security requirements, network architecture, and the types of applications and services being used in an organization. Many modern firewalls combine multiple features to provide comprehensive security solutions.
DevOps is not just a set of tools; it's a cultural shift that emphasizes collaboration, communication, and shared responsibility. Organizations that adopt DevOps practices aim to achieve faster time-to-market, improved product quality, and increased agility in responding to changing business requirements.

Credit security zines

14/12/2023

OSI Model VS TCP/IP Model👉Follow Real Lab Workbook to learn CISCO CCNA free.
The OSI (Open Systems Interconnection) model and the TCP/IP (Transmission Control Protocol/Internet Protocol) model are both conceptual frameworks that describe the functions of a telecommunication or networking system. Here's a brief comparison between the two:

OSI Model:

Layers:
The OSI model consists of seven layers, each representing a specific functionality in the networking process. These layers, from the bottom to the top, are Physical, Data Link, Network, Transport, Session, Presentation, and Application.

Functionality:
Each layer in the OSI model has a distinct function, and it is designed to be independent of the layers above and below it. The model emphasizes a clean separation of concerns and modularity.

Adoption:
The OSI model is more of a theoretical or conceptual model and is not as widely adopted in practice. While it provides a comprehensive framework for understanding networking protocols, the industry tends to use the TCP/IP model more frequently.

TCP/IP Model:

Layers:
The TCP/IP model, also known as the Internet protocol suite, comprises four layers: Link, Internet, Transport, and Application. The layers are sometimes referred to as Network Interface, Internet, Transport, and Application, respectively.

Functionality:

The TCP/IP model is more pragmatic and closely aligned with the actual implementation of the Internet. It combines the OSI model's Presentation and Session layers into the single Application layer.

Adoption:
The TCP/IP model is widely adopted and is the basis for the architecture of the modern Internet. It is used in the design and implementation of the internet and many intranets.

Comparison:

Number of Layers:
OSI has seven layers, while TCP/IP has four (or sometimes five if the Network Interface layer is further divided).

Functionality Integration:
OSI maintains a clear separation between the functions of different layers, while TCP/IP combines certain functionalities into a more streamlined model.

Real-world Adoption:
TCP/IP is the dominant model used in practice, especially in the context of the internet. OSI is more often used as a reference model for understanding networking concepts.

In summary, while both models provide a conceptual framework for understanding networking protocols and communication, the TCP/IP model is more widely adopted and reflects the structure of the modern Internet. The OSI model, on the other hand, is often used in educational contexts and as a reference for understanding networking principles.
credit security zine

12/12/2023

General overview of the Cisco router boot process: 👉Follow Real Lab Workbook to learn CISCO CCNA free.
1. Power-On Self-Test (POST)
2. Bootstrap Program
3. Initialize Configuration Register
4. Locating And Loading Cisco IOS Image
5. Initial Configuration
6. Entering Operational Mode
Detailed Cisco router boot process Steps explanation at https://www.reallabworkbook.com/cisco-router-boot-process/

11/12/2023

CISCO CCNA 200 301 Quiz 70 - Analyze Requirements
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-70/

09/12/2023

CISCO CCNA 200 301 Quiz 67 - Implementing EtherChannel
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-67/

08/12/2023

CISCO CCNA 200 301 Quiz 66 - Implementing EtherChannel
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-66/

07/12/2023

CISCO CCNA 200 301 Quiz 65 - Understanding RSTP Through Configuration
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-65/

06/12/2023

CISCO CCNA 200 301 Quiz 64 - Understanding RSTP Through Configuration
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-64/

05/12/2023

CISCO CCNA 200 301 Quiz 63 - Understanding RSTP Through Configuration
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-63/

01/12/2023

CISCO CCNA 200 301 Quiz 61 - Rapid STP Concepts
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-61/

30/11/2023

CISCO CCNA 200 301 Quiz 60 - Rapid STP Concepts
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-60/

29/11/2023

CISCO CCNA 200 301 Quiz 59 - Details Specific to STP
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-59/

28/11/2023

CISCO CCNA 200 301 Quiz 58 - Details Specific to STP
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-58/

27/11/2023

CISCO CCNA 200 301 Quiz 57 - STP and RSTP Basics
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-57/

26/11/2023

CISCO CCNA 200 301 Quiz 56 - STP and RSTP Basics
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-56/

24/11/2023

CISCO CCNA 200 301 Quiz 55 - Troubleshooting VLANs and VLAN Trunks
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-55/

23/11/2023

CISCO CCNA 200 301 Quiz 54 - Troubleshooting VLANs and VLAN Trunks
Explanation: https://www.reallabworkbook.com/cisco-ccna-quiz-54/

Videos (show all)

CISCO CCNA 200 301 Quiz 61 - Rapid STP ConceptsExplanation: https://www.reallabworkbook.com/cisco-ccna-quiz-61/
CISCO CCNA 200 301 Quiz 60 - Rapid STP ConceptsExplanation: https://www.reallabworkbook.com/cisco-ccna-quiz-60/
CISCO CCNA 200 301 Quiz 59 - Details Specific to STPExplanation: https://www.reallabworkbook.com/cisco-ccna-quiz-59/
CISCO CCNA 200 301 Quiz 58 - Details Specific to STPExplanation: https://www.reallabworkbook.com/cisco-ccna-quiz-58/
CISCO CCNA 200 301 Quiz 57 - STP and RSTP BasicsExplanation: https://www.reallabworkbook.com/cisco-ccna-quiz-57/
CISCO CCNA 200 301 Quiz 56 - STP and RSTP BasicsExplanation: https://www.reallabworkbook.com/cisco-ccna-quiz-56/
CISCO CCNA 200 301 Quiz 55 - Troubleshooting VLANs and VLAN TrunksExplanation: https://www.reallabworkbook.com/cisco-ccn...
CISCO CCNA 200 301 Quiz 54 - Troubleshooting VLANs and VLAN TrunksExplanation: https://www.reallabworkbook.com/cisco-ccn...
CISCO CCNA 200 301 Quiz 53 - VLAN and VLAN Trunking Configuration and VerificationExplanation: https://www.reallabworkbo...
CISCO CCNA 200 301 Quiz 52 - VLAN and VLAN Trunking Configuration and VerificationExplanation: https://www.reallabworkbo...
CISCO CCNA 200 301 Quiz 51 - VLAN and VLAN Trunking Configuration and VerificationExplanation: https://www.reallabworkbo...
CISCO CCNA 200 301 Quiz 50 - Virtual LAN ConceptsExplanation: https://www.reallabworkbook.com/cisco-ccna-quiz-50/

Website