Daniel Sheppard

Results 181 comments of Daniel Sheppard

I think this would be best blocked until we get #7845 implemented

I think a new model would be appropriate. I guess the question is what fields do we want to capture? The problem with VM resources is they are sometimes all...

### Implementation Change: https://github.com/netbox-community/netbox/blob/ff3fcb8134c229033453afadcc1e315c52f3fd20/netbox/ipam/querysets.py#L69-L74 To: ```python return self.filter( Q(group__in=VLANGroup.objects.filter(q)) | Q(site=device.site) | Q(site__group=device.site.group) | Q(group__scope_id__isnull=True, site__isnull=True) | # Global group VLANs Q(group__isnull=True, site__isnull=True) # Global VLANs ) ``` Change: https://github.com/netbox-community/netbox/blob/ff3fcb8134c229033453afadcc1e315c52f3fd20/netbox/dcim/models/device_components.py#L761...

I have to agree that virtual interfaces shouldn't be cabled. For virtual systems, I could see adding a "virtual switch" system where interfaces are attached to virtual switches either on...

During import, it now looks like this is checked. However, the following exception is generated: ``` ValueError at /dcim/cables/import/ 'CableCSVForm' has no field named 'termination'. Request Method: POST Request URL:...

@sdktr Perhaps open a draft PR and ask for comments on it.

I believe this is a DJango limitation, it looks like the __n is not properly implemented for GFK's using the reverse "GenericRelation". We could feed this to a function, but...

I know it is a bit of a change, but, would it make sense to have the following filters? - is_cabled - has_endpoint - is_connected `is_connected` would include both cabled...

Couple thoughts on data to track: - Primary IP - Serial number - Tenant - Resources (not sure the best way to track this one as most likely every vendor...

Which product hosts the device context on a cluster? Granted my experience is with Nexus but the relationship is a One-to-Many Chassis-to-VDC