​
Select Service
ves-io-schema-bgp-API-Replace
Published April 5, 2023 | Last modified September 25, 2026
Examples of replacing bgp
Usecase:
Replace BGP object bgp-peering in acmecrop-vsite1 to now start using port 2000 instead of 179
Request using vesctl:
vesctl configuration replace bgp -i bgp.yaml
where file bgp.yaml has following contents (bgp.ReplaceRequest):
RequestJSON:
{ "metadata": { "name": "bgp-peering", "namespace": "system" }, "spec": { "where": { "virtual_site": { "ref": [ { "kind": "virtual_site", "tenant": "acmecorp", "namespace": "system", "name": "acmecrop-vsite1" } ] } }, "bgp_parameters": { "asn": 64512, "local_address": {} }, "peers": [ { "metadata": { "name": "peer-0" }, "external": { "asn": 64514, "address": "10.1.1.2", "port": 65379, "family_inet": { "enable": {} }, "interface": { "tenant": "acmecorp", "namespace": "system", "name": "eth0" }, "address_ipv6": "571c:8935:700e:25ff:ca36:7cf3:279a:3f99" } } ] }}vesctl yaml response: None
Request using curl:
curl -X 'PUT' -d '{"metadata":{"name":"bgp-peering","namespace":"system"},"spec":{"where":{"virtual_site":{"ref":[{"kind":"virtual_site","tenant":"acmecorp","namespace":"system","name":"acmecrop-vsite1"}]}},"bgp_parameters":{"asn":64512,"local_address":{}},"peers":[{"metadata":{"name":"peer-0"},"external":{"asn":64514,"address":"10.1.1.2","port":65379,"family_inet":{"enable":{}},"interface":{"tenant":"acmecorp","namespace":"system","name":"eth0"},"address_ipv6":"571c:8935:700e:25ff:ca36:7cf3:279a:3f99"}}]}}' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build1655461974_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/bgps/bgp-peering'curl response:
HTTP/1.1 200 OKContent-Length: 4Content-Type: application/jsonDate: Fri, 19 Jun 2026 22:02:32 GMTVary: Accept-Encoding
{
}