Friday, 19 February 2016

Enable Remote desktop without/Blank Password in Microsoft Windows

Enable Remote desktop without/Blank Password in Microsoft Windows


You can disable blank password restrictions by using a policy. To locate and change this policy:

1. Click Start, point to Run, type gpedit.msc, and then click OK to start the Group Policy Editor.
2.  Open Computer Configuration\Windows Settings\Security Settings\Local Policies\Security Options\Accounts: Limit local account use of blank passwords to console logon only.
3.  Double-click Limit local account use of blank passwords to console logon only.
4.  Click Disabled, and then click OK.
5.  Quit Group Policy Editor.

6. Open Run and type gpupdate.exe then Click OK

NOTE: By default, this policy is on (enabled)



This Article by KASHAN KHAN
Thanks For Reading This Article



Thursday, 21 January 2016

How to install/Configuration DHCP Server on Linux RHEL 6.1

How to configure/Install DHCP Server In Linux RHEL 6.1

This Article Is Not for Linux beginners
Install  DHCP  rpm  in  Linux red hat 6.1 by using Linux DVD

Installation of DHCP  rpm
Insert Linux DVD and open Package Folder right click open in terminal  And Type
                         [root@localhost Packages]# rpm -ivh dhcp-4.1.1-19.P1.el6.x86_64.rpm

After Install rpm Successfully Type setup in terminal
                                          [root@localhost]# setup
System service---> and   enable   [*] dhcpd   and  ok
Now go to

/etc/dhcp/   and rename dhcpd.conf with any name e.g. dhcp.conf
Now go to
/usr/share/doc/dhcp-4.1.1   and copy file dhcpd.conf.sample and paste

This directory  /etc/dhcp/  now rename dhcpd.conf.sample file with dhcpd.conf

And open this file and go to line number 32 and 33
By default 32 line                   subnet 10.254.239.0 netmask 255.255.255.224 {
Replace 32 line number with your network id and subnet mask
e.g. subnet 192.168.1.0 netmask 255.255.255.0 {

By default 33 line     range 10.254.239.10 10.254.239.20;  
Replace 32 line number with your ip range
e.g. range 192.168.0.2 192.168.0.200;  

Note :- only edit 32 and 33 line number if you are edit another line dhcp will not work  
Save file and open terminal and restart dhcp service by typing this command

[root@localhost]#  service dhcpd restart

Now your DHCP Server is started   
Note :-
All Command Is Case sensitive
You must have root  rights Or log on with root



This Article By Engineer Kashan Khan


Tuesday, 19 January 2016

How to install/Configuration FTP Server on Linux RHEL 6.1

How to install/Configuration FTP Server on Linux red hat 6.1
This Article Is Not for Linux beginners
Install  ftp  rpm  in  Linux red hat 6.1 by using Linux DVD
Installation of FTP rpm
Insert Linux DVD and open Package Folder right click open in terminal  And Type
                            # rpm –ivh vsftpd-2.2.2-6.el6_0.1.x86_64.rpm
Now ftp rpm is installed
Now enable ftp service
Open terminal
                            # setup
System service---> and   enable   [*] vsftpd   and  ok
Now Restart FTP service
Open terminal
                          # service vsftpd restart 
Now upload file on ftp directory
    /var/ftp/pub    upload file here

Now your ftp is start  
You Can Access Your using This type Of Address ftp://your server name (e.g.-ftp://10.0.0.1/kashan)    

Note :-
All Command Is Case sensitive
You must have root  rights Or log on with root



This Article By Engineer Kashan Khan