Skip to content

kuritaka/SimpleIPAM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SimpleIPAM - Simple IP address management

What is SimpleIPAM?

SimpleIPAM is IP address management(IPAM) for Small and medium-sized enterprises.
This can manage IP address and networks like VLAN.
This is very simple and very useful.

Screenshots

Screenshot1

Network1

Screenshot2

Hosts1

Screenshot3

Hosts2

Features

  • Modal Popup
  • Using SQLite
  • CSV Export / Import

Dependencies

  • PHP >= 5.3.7 (recommends PHP 5.4 or newer)
  • Apache (Nginx etc)
  • SQLite3

Using

Installation

  • Download SimpeIPAM with GitHub
  • Upload SimpeIPAM in Document Root in Nginx # /var/www/html/simpleipam
  • Copy ipam.db.sample to ipam.db # sqlite/ipam.db

Configuration

Change Per Page

Edit $config['per_page'] in controllers/Networks.php and controllers/Hosts.php
For example, change "5" to "300"

public function index()
{
  ....
  $config['per_page'] = "5";
  ....
}

function search()
{
  ....
  $config['per_page'] = "5";
  ....
}

ChangeLog

v2.0

  • Delete Model Column in hosts

v1.0

  • First Release