

[1] Prerequisites
        a) You should have libpcap  packet capturing library installed
        b) You should have libiconv installed

INSTALL
=======
1.) Installing Scanhill
	# ./configure --help

	If you want to install scanhill with mysql

	# ./configure --enable-mysql 
	# make
	# make install


	If you want to install scanhill without mysql

	# ./configure 
	# make
	# make install

2.)If your library installation path is different from standard library paths (/lib, /usr/lib)
You need to add your libiconv library path to your LD_LIBRARY_PATH environment variable
	Write this line in your shell
	$export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:[libiconv path]
	
	For example: 		
		$export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib

3.) Configure Scanhill for mysql
	You must enter your mysql account in /etc/scanhill.conf file 
				or
	You can specify another scanhill.conf file with -c option in command

	For example:
		scanhill -i eth0 -c /home/cihan/scanhill.conf 
4) Cerate Mysql Database table

	You must create database table. 
	You can use mysql.sql script to create table .

	First You run mysql and enter the command as below

	mysql> source [source path of sql script]

	For example

		mysql> source /usr/cihan/mysql.sql 


Note: You don't have to install mysql-server in your system if you want to 
install scanhill without mysql


