I have a few (hundreds eventually) of interfaces that I need to set unpluggable. How can I do this easily in NPM? I'm running NPM 10 RC3.
You can also do via web node management. Change the drop down to show interfaces and either search by expression, select the ones you want and click edit and you can edit as many as you want that way.
You could directly set the unpluggable attribute in the SQL Database in the interface table.
You can do this in the DB manager or SQL Server. Depending on what your conditions are for setting the 'UnPluggable' attribute, a simple example is pasted below.
You would need to change the 'Where' portion of the statement to meet your requirements. I used InterfaceType = 6 as a simple example.
Update Interfaces
Set UnPluggable = 1
Where InterfaceType = 6
Thanks Brandon! That's what I was looking for. I know I could do it in the DB, but I try not to do that ever. A good product doesn't make you muck around with the DB for this kind of thing.
I figured there was a GUI way of doing it that I was overlooking.