How do I deploy host configuration as a custom configuration template ? #2643
-
|
I have the topo below. The intent is to deploy "private vlans" on the bridge created for the multiaccess link . I need to deploy host configuration for this. I currently have a poor-mans bash script. Id like to deploy the needed host config automatically. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Beta Was this translation helpful? Give feedback.
-
|
We don't have anything along these lines yet. I was thinking about making the defaults.providers.provider.start (and stop) into a list of commands, but never got it done. At the moment, you can replace that command with your own script in which you'd execute the original command and get other stuff done. As for "private VLANs", why don't you use a bridge node (for example, a Linux bridge in a container). It would be trivial to add configuration to that node. |
Beta Was this translation helpful? Give feedback.
We don't have anything along these lines yet. I was thinking about making the defaults.providers.provider.start (and stop) into a list of commands, but never got it done.
At the moment, you can replace that command with your own script in which you'd execute the original command and get other stuff done.
As for "private VLANs", why don't you use a bridge node (for example, a Linux bridge in a container). It would be trivial to add configuration to that node.