Saturday, 15 July 2017

Cisco Prime Infrastructure fuctionality

                        
1.      Monitoring the Network           
                        Basic Monitoring
                         - Device Health
                         - Interface Statistics
                        Clients and Users monitoring features
                        Alarms and events
                        Wireless Monitoring and Troubleshooting
                         - RRM/CleanAir
                         - WIPs related
                         - Location Tracking
                        AVC (Application Visibility and Control)
                        Creating Monitoring Policies and Thresholds

2.      Lifecycle - End ot End lifecyle management    
                        Discovery, Inventory and Configuration Management
                        360 deg view for every device
                        Integration with MSE for location based services
                        Integration with ISE for simplified troubleshooting
                        Integration with APIC-EM
                       
3.      Plug & Play          
                        Zero Touch Provisioning
                        Supports Apple iOS P&P App
                        Deployment workflow with guided step by step procedure to deploy the devices
                       
4.      Using templates  
                        WLAN configuration
                        Security Configuration
                        Pushing changes in the existing onboarded devices
                        Define and Deploy AAA method Lists
                        Device firmware upgrade
                       
5.      360 Deg View      
                        IP address and Site Information
                        AP Name/MAC Address/Associated Controller
                        Wireless LAN information
                        Modules information
                        Neighbours
                        Alarms and events for the device
                       
6.      Reports    
                       
7.      Configuration Management      
                        Sync-up configuration with the device to keep it upto date
                        Compare Old and Latest configuration to Identify the changes
                       
                       
8.      Job Scheduling    
                        Backup scheduling
                        System Jobs
                        Assurance and Health Summary
                       
9.      Troubleshooting  (Few examples)
                        Troubleshooting Wireless Performance Problems
                        Troubleshooting user problems
                        Troubleshooting Authentication and Authorization
                        Easy Troubleshooting - Mouse rollover to see the status
                       
10.  Auditing Device Configuration 
                        Compare device configuration as per the defined policies


Saturday, 24 June 2017

Python Basic example - Class - Python 3.6


#Defining Class to total of two variables
class total:
 def setvar(self,x,y):  #defining member functions to get variable from user
    self.x = int (input("enter value of x :->"))
    self.y = int (input("enter value of y :->"))

 def addvar(self): #defining member functions to add variables
        z=int(self.x+self.y)
        print(z)

sum=total()# create class instance
sum.setvar("x","y")
sum.addvar()

Python basic example - To find Maximum number out of three


x = int (input("Enter the value of x:- "))
y = int (input("Enter the value of y:- "))
z = int (input("Enter the value of z:- "))
a = max (x,y,z)
print ("maximum number is :- ",a)

input ("please press enter to exit")
       

VPLS operating Modes

Which two operating modes does VPLS support? (Choose two.)

A. transport mode
B. strict mode
C. port mode
D. loose mode
E. VLAN mode
F. dynamic mode

A and E

Wednesday, 7 June 2017

UDP properties

1. connection-less
2. Latency can cause jitter
3. There are no effects of latency on the sending device with UDP traffic

Which routing protocol still process updates coming from its neighbor over a passive-interface


Answer:- RIP

Which are two MPLS label discovery Mechanisms?

Out of below options which two are correct label discovery mechanisms:-

  1. Targetted
  2. Standard
  3. Strict
  4. Basic 
  5. Extended 
Answer:- Option 4 and 5 are correct.

Basic discovery is also known as Directly Connected MPLS LDP Sessions where LDP peers are directly connected

Extended Discovery is known as inDirectly Connected MPLS LDP Sessions where LDP peers are not directly connected.