Skip to content

Demo data useful for populating demo instances of NetBox

License

Notifications You must be signed in to change notification settings

netbox-community/netbox-demo-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 

Repository files navigation

netbox-demo-data

This repository provides "dummy" data that can be used to populate a NetBox instance for the purposes of demonstration and testing. A PostgreSQL database dump is provided for each minor version of NetBox, beginning with v3.0. See below for instructions on populating your database from a SQL dump.

Once populated, the demo instance can be accessed using the username admin and password admin.

Also included in this repository are JSON data dumps that were captured using Django's dumpdata management command. While these have been retained for NetBox v3.6 and earlier for historical purposes, we no longer generate demo data in this format due to its limitations dealing with complex data models. (Specifically, it can be very difficult to ensure that model data is exported in a sequence that can be imported successfully without manual intervention.)

Loading the Data

First, drop and recreate the PostgreSQL database. The example here assumes the database is named netbox.

Caution

This will destroy any existing database. Do not perform this operation on a database you care about.

sudo -u postgres psql -c "DROP database netbox;"
sudo -u postgres psql -c "CREATE database netbox;"

Next, use the PosgtreSQL psql client to load the data from the desired file:

sudo -u postgres psql netbox < netbox-demo-data/sql/netbox-demo-$VERSION.sql

Docker Commands

# Drop & recreate the database
docker-compose exec postgres sh -c 'psql -U $POSTGRES_USER postgres -c "DROP DATABASE netbox;"'
docker-compose exec postgres sh -c 'psql -U $POSTGRES_USER postgres -c "CREATE DATABASE netbox;"'

# Load the demo data
docker cp netbox-demo-$VERSION.sql "$(docker-compose ps -q netbox)":/opt/netbox/netbox/netbox-demo.sql
docker-compose exec netbox bash -c "psql -U $POSTGRES_USER netbox < /opt/netbox/netbox/netbox-demo.sql"

Exporting the Data

The following steps are necessary only if you intend to save a snapshot of data from a demo instance. This is done using PostgreSQL's pg_dump utility. (Again, the example here assumes the database is named netbox.)

sudo -u postgres pg_dump netbox > snapshot.sql

About

Demo data useful for populating demo instances of NetBox

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published