Here I have showed IPplan installation and configuration process on Debian. which front end is PHP and back end is mysql.
Prerequisite:
Apache-2, Mysql-server, php5, php5-mysql.
Installation:
- #apt-get update [check package management tools are uptodate]
- #apt-get dist-upgrade [check installed software are latest]
- #apt-get install mysql-server
- #apt-get install apache2
- #apt-get install php5
- #apt-get install php5-mysql
- Download IPplan from http://sourceforge.net/projects/iptrack/files or use
#wget http://sourceforge.net/projects/iptrack/files/ipplan-4.92a.tar.gz. [here version is 4.92a]
- #tar –zxvf ipplan-<….>.tar.gz [where the file has downloaded]
- #mv –vf
/var/www/ [substitute ipplan folder to /var/www] - #mysqladmin –u root –p create ipplan [ipplan database create in Mysql]
- #mysql –u root –p ipplan [A user create name “ipplan”]
- mysql> grant all on ipplan.* to ipplan@localhost identified by ‘rubel’; [set all privilege to ipplan user for ipplan database].
- mysql> flush privileges; [Reload mysql rights.]
- mysql > exit;
- Now open config.php file from /var/www/ipplan/ location and edit following for connection with mysql;
define("DBF_TYPE", 'maxsql');
define("DBF_HOST", 'localhost');
define("DBF_USER", 'ipplan');
define("DBF_NAME", 'ipplan');
define("DBF_PASSWORD", 'rubel'); [password of ipplan user is rubel]
- #chown –R
:www-data /var/www/ipplan [Change ownership and group of ipplan directory. www-data group hold execute permission.] - #chmod –R 750 /var/www/ipplan [Set permission for owner, group and others]
- Open a web browser and write http://localhost/ipplan/admin/install.php [for creating ipplan tables in mysql. 24 tables will create.]
- click go. [may want ipplan admin authentication. Default user : admin and password: admin. You can change this by edit config.php file or later from browser.]
- IPplan Installation has finished. [Hurray………..].
Now go to Configuration Steps:
- open web browser and write http://localhost/ipplan/
- click on admin -> users -> create a new user. [ipplan admin authentication password need.]
- click on admin -> groups -> create a new group. With create/modify/delete customers right. Then created user insert into this group.
- click on Customers -> Create a new customer/autonomous system. [ipplan authentication is required. User and password will just created.]
- click on Network -> Hierarchy -> create a new network range/supernet. [fill the blank field and select customer for which the network you want to apply]
- Then click on Network -> subnets -> Create a subnet. [fill the blank fields].
- Now create another user and group that groups users can only view the customers and their addresses.
- for show click on Network -> subnets -> display subnet informations – tree.
IPPlan installation and configuration has completed. ******** Now Take rest ********