-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to change clickos configuration at runtime? #22
Comments
Hello ClickOS doesn't support changing the configuration of a running router, you will need to kill the router and instantiate a new one. Note that you don't need to kill the full VM, you can use ClickOS-ctl to remove and install a new router in the same VM. Alternatively you can investigate the use of element handlers to change configurations like IP addresses at runtime. This should be the preferred mechanism. Regarding function chaining, on ClickOS we always talk about chaining multiple VMs, not threads inside the VM. ClickOS supports multiple threads, so indeed you can run multiple router configurations inside the same VM, however:
|
Great answer. Could you please evaluate the efforts associated with adding support for communication between running routers? |
I suppose you're talking about routers running inside the same VM. For that you'll need two things:
You need to write all of this from scratch but it is not that much code. If you're considering writing something like this we are more than happy to help in the process. |
Hi all,
Currently the click configuration is hard-coded and wrote into ClickOS using xenstore from Dom0.
I am wondering whether the click configuration can be changed at runtime. For example, if I want to
change the IP address of eth0 in a running click configuration, do I need to kill that thread and re-instantiate a new configuration with the new IP?
Also, I am not clear of the multithreading support provided by ClickOS. In the NSDI paper it is mentioned that multiple threads can be launched to enable service function chaining. However, I haven't seen any working example.
The text was updated successfully, but these errors were encountered: