Install And Using Snort In Ubuntu

Snort is an open source application Intrusion Detection / Prevention application (IPS) and the application has been downloaded more than 250,000 times around the world
Read More...!!

Speed Up SSH Connections in Ubuntu


Open ssh connection usually takes 10-20 seconds and will immediately be asked a password, but if more than 20 seconds is usually no problem in the configuration in the file /etc/nsswitch.conf. to speed up the ssh connection is open, we directly edit files in  

/etc/nsswitch.conf go to terminal and type this command:

$ sudo su
$ gedit /etc/nsswitch.conf

...
# Change this line
# hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4
# To this (removed mdns4)hosts: files mdns4_minimal [NOTFOUND=return] dns
...


Configuration for sshd to not rDNS look up

$ echo "UseDNS no" >> /etc/ssh/sshd_config
$ /etc/init.d/ssh restart

Add the client machines on the server machine by type :

$ echo "[your_client_ip] [your_client_hostname]" >> /etc/hosts

Debugging ssh

$ tail -f /var/log/auth.log
$ ssh -vvv [normal connection string]

Finish and Happy Testing...!!
Read More...!!

Upgrade Ubuntu Karmic Koala (9.10) To Ubuntu Lucid Lynx (10.04)

Upgrade ubuntu karmic koala (9.10) to ubuntu lucid lynx (10.04) follow these steps :

Go to terminal login as root by type :




$ sudo su
$ update-manager -d

We will shown interface updates manager and click new release Ubuntu 10.04 upgrade, wait and follow the next step, after restarting the computer and ubuntu already installed lynx Lucid. good luck...!!
Read More...!!