os-net-config/etc/os-net-config/samples/vpp_bond.json
Feng Pan 130e8dbb20 Add support for VPP Bond
Enable configuration for bonding of VPP interfaces in os-net-config.

Change-Id: Iaf2e13b460abbefad7b0f6e7cda21b7bbfba6591
Signed-off-by: Feng Pan <fpan@redhat.com>
2017-11-10 18:01:01 -05:00

24 lines
460 B
JSON

{ "network_config": [
{
"type": "vpp_bond",
"name": "net_bonding0",
"addresses": [
{
"ip_netmask": "192.0.2.1/24"
}
],
"bonding_options": "mode=2,xmit_policy=l34",
"members": [
{
"type": "vpp_interface",
"name": "eth1"
},
{
"type": "vpp_interface",
"name": "eth2"
}
]
}
]
}