-
Hi, I made new site then I added new IP address with mask and I created vlan group and vlans in this group. Finally I want to add prefixes with vlan but I can`t. Output: "Multiple objects match the provided attributes" But if I add this from website: How can I add this by script using curl? Output indicates that it is impossible to identify the object because there are many vlanes with such an ID, but I thought that vlan group uniquely identifies them. Why it works from website? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I am guessing you have multiple VLAN objects with vid (tag) 11. You need to uniquely identify the VLAN to associate with the prefix - either using its database id (which is "id" not "vid"), or by name (VLANs don't appear to have a slug). |
Beta Was this translation helpful? Give feedback.
-
You should be able to specify a tighter constraint to select the correct vlan, e.g.
You're trying to add a Prefix, right? Prefix doesn't have a vlan_group attribute. Hence vlan_group is an attribute of the vlan you're linking to, not the prefix itself. |
Beta Was this translation helpful? Give feedback.
You should be able to specify a tighter constraint to select the correct vlan, e.g.
You're trying to add a Prefix, right? Prefix doesn't have a vlan_group attribute. Hence vlan_group is an attribute of the vlan you're linking to, not the prefix itself.