Releases: den-it/ntmap
Releases · den-it/ntmap
v0.8.0
v0.7.1
v0.7.0
New
- Horizontal/vertical map orientation. You can select horizontal (traditional) or vertical (OpenStack-style) orientation of the map. Some maps look better in traditional view, others are prettier in vertical orientation, especially when you have a lot of devices at one level.
Note: DB schema changed. To upgrade from Ntmap v0.6.0 you need:
# sudo -u postgres psql ntmap
ntmap=# ALTER TABLE ntmap_l1_maps ADD COLUMN "vertical" BOOLEAN;
ALTER TABLE
ntmap=# UPDATE ntmap_l1_maps SET vertical = true;
UPDATE 8
ntmap=# ALTER TABLE ntmap_l1_maps ALTER COLUMN "vertical" SET NOT NULL;
ALTER TABLE
ntmap=# ALTER TABLE ntmap_l1_maps ALTER COLUMN "group_id" SET NOT NULL;
ALTER TABLE
ntmap=# \q
v0.6.0
New
- Number of virtual-chassis members is displayed near the VC (in collapsed VC display mode)
Changed
- Interface model was updated to work with Netbox 2.10.x
Bug Fixes
- Fixed error message on the first page when Ntmap DB is not accessible
- Fixed the display of links number between two devices when there are a lot of links there
- Fixed the sorting of devices by name
- Fixed the display of large VC members list
v0.5.1
v0.5.0
New
- Providers and their circuits are displayed on map. Just add a provider name into the map scheme.
Changed
- Setting "max_devices_at_one_level" deprecated. Setting "max_objects_at_one_level" introduced instead. This is done because now a map contains not only devices, but providers and circuits as well.
v0.4.1
New
- Links of different bandwidth between a pair of devices are displayed separately that gives a better overview of the network. This can be useful in situations when a server has two productive 10G interfaces connected to a switch, as well as one 1G iLo interface connected to the same switch.