FortiNAC-F
FortiNAC-F is a zero-trust network access solution that provides users with enhanced visibility into the Internet of Things (IoT) devices on their enterprise networks. For legacy FortiNAC articles prior to FortiNAC-F 7.2, see FortiNAC.
khoffman
Staff
Staff
Article Id 272921
Description This article describes how to fix the error message 'Duplicated IP address' when a unit is deleted from the topology view and tries to add it again.
Scope FortiNAC-F (NacOS) v7.x and later.
Solution

When adding a new device inside the FortiNAC Network-Inventory container, the following error may appear if the IP address is re-used:

duplicateIP.png

  1. Login to the FortiNAC Admin UI.
  2. Navigate to System -> Scheduler.
  3.  Select the 'Database BackUp' task and select 'Run Now'.
  4. Login to the FortiNAC-F CLI as Admin.
  5. Issue the following command to enter the database, from the CLI type: 

execute db-shell

  1. Check the database to see if a stale entry exists, in the database shell type:

select request from ELEMENTS where request='192.168.1.1';

  1. The output may show a lot of information from the database that is not relevant. To fix the issue, it may be necessary to remove the entries from the database.
  2.  Delete the state entries from the database, in the database shell type:


delete from ELEMENTS where request='192.168.1.1';

  1. Type 'exit' to exit the db-shell.
  2. Re-add device to inventory from the Admin UI.
Contributors