Hi!
Currently server can have interfaces excluded from network topology. The problem is that there are no UI to set this flag on interface object. As a workaround, you can find interface objects with addresses from 128.0.0.0/2 subnet, record their IDs, then stop the server and execute SQL query like this:
UPDATE interfaces SET flags=flags+4 WHERE id=your_interface_object_id
for each such interface object. Then you can start server and delete 128.0.0.0/2 subnet object . It should not appear again.
Best regards,
Victor
Currently server can have interfaces excluded from network topology. The problem is that there are no UI to set this flag on interface object. As a workaround, you can find interface objects with addresses from 128.0.0.0/2 subnet, record their IDs, then stop the server and execute SQL query like this:
UPDATE interfaces SET flags=flags+4 WHERE id=your_interface_object_id
for each such interface object. Then you can start server and delete 128.0.0.0/2 subnet object . It should not appear again.
Best regards,
Victor