Posts

Profile photo

Image
Guru  

wt lab

  HTML CODE: <html> <head>     <title>Registration Form</title>     <link rel="stylesheet" type="text/css" href="RegistrationForm.css">     <link rel="icon" type="image/x-icon" href="C:\Users\svbal\Downloads\wallpaper\icon.jpg">   </head> <body>     <div class="container">         <h2>Registration Form</h2>         <form id="registrationForm" onsubmit="return validateForm()" method="post" action="RegistrationForm.php">             <label for="fullName">Full Name:</label>             <input type="text" id="fullName" name="fullName" required><br><br>            ...

2. Create 3 private networks namely N1, N2 and N3, Send the data from N1 to N2. If the packets are transferring from N3, it shouldn't accept the packets. Accordingly develop the security features.Create 3 private networks namely N1, N2 and N3, Send the data from N1 to N2. If the packets are transferring from N3, it shouldn't accept the packets. Accordingly develop the security features.

Image
 In Cisco Packet Tracer, you can simulate this scenario by configuring access control lists (ACLs) on routers to control the flow of traffic between the networks. Here's a basic example: Procedure  1. **Create the Networks:**    - Place three routers on the workspace and label them R1, R2, and R3.    - Connect the routers as follows:      - Connect R1 to R2 and R3.      - Connect R2 to R3.    - Assign IP addresses to the router interfaces for each network (N1, N2, N3). 2. **Configure Router ACLs:**    - Access the CLI of each router.    For R1 (assuming FastEthernet interfaces):    ```bash    enable    configure terminal    interface FastEthernet0/0    ip address <N1_IP> <Subnet_Mask>    exit    interface FastEthernet0/1    ip address <N2_IP> <Subnet_Mask>    exit    access-li...

Create table with ROWSPAN and COLSPAN attribute of TABLE in HTML (Prepare timetable of your class). Include CELLSPACING & CELL PADDING

 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Class Timetable</title>     <style>         table {             width: 80%;             border-collapse: collapse;             margin: 20px auto;         }         th, td {             border: 1px solid black;             padding: 10px;             text-align: center;         }     </style> </head> <body> <table cellspacing="10" cellpadding="5">     <tr>         <th rowspan="2">Time</th>       ...