Skip to main content

Posts

Showing posts with the label tutorial

MPLS TROUBLESHOOTING TIPS FOR CISCO AND JUNIPER

MPLS TROUBLESHOOTING TIPS FOR CISCO AND JUNIPER #mpls #cisco #juniper #troubleshooting #huawei #copy #tutorial Basic MPLS Troubleshooting Tips 1. Verifying MPLS Configuration: Cisco: Use  show mpls interfaces  to verify that MPLS is enabled on the correct interfaces. Check  show mpls ldp neighbor  to ensure that Label Distribution Protocol (LDP) neighbors are discovered, and that the session is up. Juniper: Use  show mpls interface  to check MPLS status on interfaces. Utilize  show mpls ldp session  to confirm LDP neighbor sessions. 2. Checking Label Switch Paths (LSP): Cisco: Use  show mpls ldp bindings  to display local and remote label bindings. show mpls forwarding-table  helps to inspect the labels being forwarded and their corresponding next-hops. Juniper: Use  show mpls lsp extensive  to get detailed information about the LSPs. show route table mpls.0  to view the label-switched routes. 3. Ensuring Proper Route Distribution: Cisco: Verify routing protocols are correctly redistri

AWS IAM user

 how to give IAM user full access in AWS console. follow below steps:   Login to console.aws.amazon.com using root user.   Search IAM on the search bar on the top as shown in figure 1.   Click on users in the left menu under access management as shown in figure 2. Steps to configure a user are shown in figure 0. Click on create user as shown in figure 3 after following figure 2 step. After following figure 3, follow figure 4 steps. Define the username, provide access to console, and select we want to create a IAM user. For the password we are using an auto generated password and enforcing that user must create a new password after first login as shown in figure 5. Set permissions as IAM full access as shown in figure 6.

How To Create A Simple Analog Clock

  How To Create A Simple Analog Clock #JAVA #CSS #HTML #coding #tutorial First you will need to include javascript, Html and CSS codes in your text editor as follows; Lets first add  HTML CODES  as below; <div class="clock"> <div class="hour"> <div class="hr" id="hr"></div> </div> <div class="min"> <div class="mn" id="mn"></div> </div> <div class="sec"> <div class="sc" id="sc"></div> </div> </div> After you have inserted the Html code in your text editor you will have now to edit Css code using embedded style, where by the css codes are inserted in between <style> </style>tags, which are normally placed in between <head></head> tags of a html file. The css codes are used to apply formatting to the whole clock . Therefore the  CSS codes  will be inserted as follows; body { display:

5G Phased array

  In 5G communication systems, the phased-array antenna is one of the lead front-end components that defines massive multiple-input, multiple-output (MIMO) performance. The trend outlined in recent years involves providing a robust and complete platform/wizard for RF/microwave engineers to develop more capable antennas and other RF front-end components in less time than before. 1   In addition, systems that operate at millimeter-wave (mmWave) frequencies offer benefits that include small antenna sizes and more available bandwidth. 2 However, a challenge arises due to the wide variety of application-driven requirements, which encompasses everything from both city and rural environments to realized gain, scan, and polarization performance attributes to impedance matching and more. Such an extensive number of requirements cannot be met by a single and one-time designed element. This means that any practically convenient modeling platform must contain an extensive library of predesigned an

EMPLOYEE MANAGEMENT SYSTEM PROJECT CODE

EMPLOYEE MANAGEMENT SYSTEM PROJECT CODE A - Below is the source code of the project. B - Create separate class files for every class. C - Copy the code of one class (ex: login.java) and paste it in Login class file, do it for every class . #stream #blog #knowledge 1 - Create your first class with name 'conn' and paste the code below in it  package Employeee; import java.sql.*; public class conn{        public Connection c;     public Statement s;     public conn(){         try{             Class.forName("com.mysql.jdbc.Driver");             c = DriverManager.getConnection("jdbc:mysql:///project3","root","");             s = c.createStatement();         }catch(Exception e) {             e.printStackTrace();         }     } }   2 - Create second class with name 'Login' and paste the code below in it package Employeee; import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.sql.*; cl