IPAM

I have customer that we deployed Northstar for their internal ip management over 8 yrs ago. They are still using it, but it is slowly breaking on them. Can someone recommend an IPAM solution that has a Northstar import option? They have hundreds of entries detailing customer who was assigned the ip address and I would like to avoid any data massaging. TIA

I'm pretty sure that if 6connect doesn't have an existing tool to import Northstar that they'd work with your client to get it done.

Hi,

I'm pretty sure that if 6connect doesn't have an existing tool to import Northstar that they'd work with your client to get it done.

+1 on 6connect. Very helpful people there :slight_smile:
Sander

+1 on 6connect here as well.

Best regards,
Florian

I don�t know Northstar, but if you can export their tables into a *.csv,
you can easily import it into http://www.gestioip.net/

Michael

If you are using Postgresql with Northstar, you should be able to export
data to csv with a command like following:

COPY table_name TO '/tmp/file_name.csv' DELIMITER ',' CSV HEADER;

If you are using mysql as your DB in Northstart, you can do something like
this to create a CSV file:

SELECT *
INTO OUTFILE '/tmp/file_name.csv'
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
ESCAPED BY '\\'
LINES TERMINATED BY '\n'
FROM table_name

Once you create the csv file, most of tools can import it. One more tool to
checkout is device42(http://www.device42.com) which has extensive import
and auto-discovery options.

Raj Jalan is right