VCP Home LAB – part-2

I am using in this LAB for all are trail version applications . Few application will work for 180 days few less than 3 months .

 

Software Collection :

Operating Systems    :  Windows 7 64 bit

Virtual layer               :  [...]

Linux : HowTo check the DNS server entries?

You can simply use that commands to find your DNS servers on a Linux/Unix/BSD based OS

by usign: # cat /etc/resolv.conf

or

using: # less /etc/resolv.conf

Possibly Related Posts:

News : Protecting Your Email Privacy How to : NX Client for Solaris sparac 8/9/10 Ubuntu : How to install asterisk 10 on ubuntu 12.04 LTS
Linux :How to Check Apache Version
Ubuntu : How to install a .bin file in ubuntu

Security : fail2ban and dependencies

I like to install fail2ban on my Server for securing ssh and Asterisk .

Installed: fail2ban.noarch 0:0.8.4-23.el5

Dependency Installed: shorewall.noarch 0:4.0.15-1.el5       shorewall-common.noarch 0:4.0.15-1.el5 shorewall-perl.noarch 0:4.0.15-1.el5  shorewall-shell.noarch 0:4.0.15-1.el5

Possibly Related Posts:

News : Protecting Your Email Privacy How to : NX Client for Solaris sparac 8/9/10 Ubuntu : How to install asterisk 10 on ubuntu 12.04 LTS
Linux :How to Check Apache Version
Ubuntu : How to install a .bin file in ubuntu

Linux : How to setup Static IP Address in Ubuntu 10.10

Setup Static IP Address

If you want to setup a Static IP Address in your system , Modify the file  /etc/network/interfaces.  If your First Ethernet  Interface is eth0 ,see the following Example.  Just add the following lines in the file with the help of an Editor and Restart the network or system.

auto eth0 [...]

Ubuntu : Fix The Screen Messed up at Start-up and Shutdown

If you’re running Ubuntu Maverick with Nvidia Official drivers, and your screen messed up at starting up and shutting down the system. You can try following method to fix the problem.

Step 1: First, open up a terminal window from Applications -> Accessories menu. Run this command to install preparing tools:

sudo apt-get install [...]

LINUX : Install Logwatch on ubuntu

Install Logwatch :

Issue the following command to install Logwatch along with Postfix:

apt-get install postfix logwatch

Be sure to select the “Internet Site” configuration when installing Postfix. Configure Logwatch Link

Once you have installed Logwatch, you will need to configure it to email you the reports it generates. You are encouraged to look [...]

Linux : Using Fail2ban to Block Network Probes

Installing and Using Fail2ban On Debian and Ubuntu system

Make sure your package repositories and installed programs are up to date by issuing the following commands:

kartook@K:~$ sudo apt-get update [sudo] password for kartook:

kartook@K:~$ sudo apt-get upgrade –show-upgraded

kartook@K:~$ sudo apt-get install python

kartook@K:~$ sudo apt-get install fail2ban

kartook@K:~$

Afterwards, you will find [...]

Linux : How do I disable the ping response?

How do I disable the ping response?

Add the following line to your init script for the network (the name depends on the distribution you use):

echo 1 >/proc/sys/net/ipv4/icmp_echo_ignore_all

This disables ping responses.

To reenable, use the following command:

echo 0 >/proc/sys/net/ipv4/icmp_echo_ignore_all

To make this permanent set the following into /etc/sysctl.conf (if you have [...]

linux :How do I turn on telnet service on ubuntu?

TELNET (TELetype NETwork) is a network protocol used on the Internet or local area network LAN connections.

The telnetd program (telnet server) is a server which supports the DARPA telnet interactive communication protocol. Telnetd is normally invoked by the internet server inetd or xinetd for requests to connect to the telnet port as indicated [...]

Linux : How to get free swap infromation

how to get free – to see swap space information in linux

Command : cat /proc/meminfo ( or ) free

out put from my system

kartook@K:~$ cat /proc/meminfo; free MemTotal: 12320084 kB MemFree: 3508632 kB Buffers: 121068 kB Cached: 5832992 kB SwapCached: 1616 kB Active: 4625864 kB Inactive: 3571736 kB Active(anon): 1689308 kB Inactive(anon): [...]