How can I bond one network interface to another using the SDK. I am try to perform the
task in java but I'm unsure in what context I can find the utilities that will do this
task.
The task can be performed in the OVM UI after a host has been initialised. By navigating
from the side bar Compute -> Hosts -> (Select Host) -> (Host tabs) Network
Interfaces ->
From here, click Setup Host Networks.
In the pop up you can select a network interface and drag it to another to create a bond
between them.
How can I perform this step using the SDK. I am attempting to perform this in the context
of a nicservice, found like this:
systemService.hostsService().hostService(hostObject).nicservice(NICObject)).get().send().nic();
but I can't find any methods associated with the retrieved NIC or nicservice that seem
relevant to my task.