This is a cache of https://docs.okd.io/4.19/networking/advanced_networking/route_advertisements/enabling-route-advertisements.html. It is a snapshot of the page at 2025-10-07T20:37:11.947+0000.
Enabling <strong>route</strong> advertisements - Advanced networking | Networking | OKD 4.19
×

As a cluster administrator, you can configure additional route advertisements for your cluster. You must use the OVN-Kubernetes network plugin.

Enabling route advertisements

As a cluster administrator, you can enable additional routing support for your cluster.

Prerequisites
  • You have installed the OpenShift CLI (oc).

  • You are logged in to the cluster as a user with the cluster-admin role.

  • The cluster is installed on compatible infrastructure.

Procedure
  • To enable a routing provider and additional route advertisements, enter the following command:

    $ oc patch Network.operator.openshift.io cluster --type=merge \
      -p='{
        "spec": {
          "additionalRoutingCapabilities": {
            "providers": ["FRR"]
            },
            "defaultNetwork": {
              "ovnKubernetesConfig": {
                "routeAdvertisements": "Enabled"
        }}}}'