Interfaces missing from Device Type #14642
Unanswered
llamafilm
asked this question in
Help Wanted!
Replies: 1 comment
-
Looks to be the same problem as #14430 (comment) - except for device-template + interface-template rather than device + interface. It's useful to know that the count is being initialized to zero: that would explain why the tabs are suppressed. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I've started using the public Netbox demo server to test a custom API integration. I notice that sometimes (always?) a Device Type shows zero interfaces even though they should exist according to the Interfaces page. I'm not sure how this problematic state was created, or how to reproduce it on my own server. This demo server is currently running v3.7.0. Here's one example:

The API https://demo.netbox.dev/api/dcim/device-types/7/ shows
"interface_template_count": 0
. And the GUI page agrees: https://demo.netbox.dev/dcim/device-types/7/But the
interface-templates
API shows 51 interfaces with this device type ID. https://demo.netbox.dev/api/dcim/interface-templates/?devicetype_id=7. Truncated output:After I add a new interface to this device type, now the
device-types
API https://demo.netbox.dev/api/dcim/device-types/7/ shows"interface_template_count": 1
.And the GUI shows all 52 interfaces:

Beta Was this translation helpful? Give feedback.
All reactions