Windows 10 WiFi not working after Upgrade

One of the problem after upgrading to Windows 10 is WiFi not working or not Stable. 


Solution Below: 


1. Upgrade your WiFi Adapter. For Intel WiFi Adapters, you can install the following updated drivers provided by intel. Hope this will help you: 

https://downloadcenter.intel.com/download/25833/Intel-PROSet-Wireless-Software-and-Drivers-for-Windows-10?v=t

2. If Upgrade is not working, Uninstall your WiFi Adapter Driver and Install Again. 

3 .Reboot your Computer after doing step 1 or step 1 above. 


How to Enable SSH in Huawei Switches

To enable ssh in Huawei Switches and Routers, you must do the following:

1. Configure AAA in order to allow AAA for SSH.

Below are sample steps:

!
aaa
 authentication-scheme default
 authorization-scheme default
 accounting-scheme default
 domain default
 domain default_admin
 local-user sshuser password irreversible-cipher sshuserpassword
 local-user sshuser privilege level 15
 local-user sshuser service-type ssh
!

2. generate rsa keys as per command below:

rsa local-key-pair create

just press enter for default value.

3. enable ssh in vty 0 4

!
user-interface vty 0 4
 authentication-mode aaa
 user privilege level 15
 protocol inbound ssh
!
quit
!

4. enable ssh server

!
stelnet server enable
ssh authentication-type default aaa
return
!

TFTP for Windows 8

I have been searching a compatible tftp program for windows 8 and found out that TFTPD32 is the best compatible, lightweight and easy to use. 

You can download the software at the link below: 


Please post your comments if you have encounter any problem. 

How to shutdown windows 8

Steps to Shutdown Windows 8: 

1. Press WINDOWS-C on your keyboard. 

2. Click Settings in the Slide Menu. 

3. Choose Power, then 

4. Shutdown 


SNMP Explanation

SNMP is also know as Simple Network Monitoring Protocol. It operates at the application layer in OSI Network Reference Model. 

SNMP Variable is constructed in a format defined by SNMP Protocol, therefore an access to data can be done. 

SNMP Variable name is consist of an IP Address with integer number fields separated by dots (decimal points or period). It have more than 1 fields found in the IP Address. 

MIB ( Management Information Base ) is the collection of variables or managed objects found in an SNMP device. It provides the complete hierarchy order of all managed objects in order to access the data. Variables are unique to a particular manufacturer's equipment must be located under the private enterprises branch of the ISO naming tree. Hence, every private enterprise OID will begin with 1.3.6.4.1.XXX , where XXX is the private enterprise number for the manufacturer that is registered. Private Enterprise Number is maintained by IANA. The entire and updated list can be found here: http://iana.org/assignments/enterprise-numbers.

OID is called as Stands for Object Indentifier. It is a string of numbers that defines the address of variable in MIB. 

SNMP Trap is the only form of SNMP message initiated by the SNMP Agent. It is most commonly used as an alarm notifications.