IBM Cloud Docs
Managing VPN routes

Managing VPN routes

Each client-to-site VPN uses a routing table to list destination network routes, where network traffic is directed. To specify which clients have access to the destination network, configure authorization rules for each client-to-site VPN route.

Private IPs are not static and can change at any time. Do not create routes and try to use the private IP addresses.

Using split-tunnel on client-to-site VPNs

When the VPN is established in split-tunnel configuration, all routes in the client-to-site VPN server routing tables are added to the client routing table. You must reset the connection if you add routes later, to ensure that the new route is delivered to the client.

To avoid running out of routes, make note of the client device's route capacity before modifying the client-to-site VPN server routing table.

Creating a route in the UI

Specify how destination network traffic is directed by creating a route. To create a route, the VPN client server must have a health status of "Healthy" and a server status of "Stable".

Add 0.0.0.0/0 as a route to enable clients access to the internet.

  1. From your browser, open the IBM Cloud console and log in to your account.
  2. Select the Navigation Menu icon menu icon, then click > VPC Infrastructure VPC icon > VPNs in the Network section.
  3. Select the Client-to-site servers tab.
  4. Select the VPN server where you want to add a route. Then, in the VPN server details page, select the VPN server routes tab.
  5. Select Create +.
  6. Give the route a name.
  7. Specify a destination CIDR range for the destination network. For example:
    • For internet access, enter 0.0.0.0/0.
    • For an on-premises network, enter the IPv4 CIDR range of the site-to-site gateway connection.
    • For the VPC subnet, enter the VPC subnet CIDR.
  8. Choose an action:
    • Deliver - Use when the route destination is in the VPC, or an on-premises private subnet connected using VPN gateway. When VPN routes use the Deliver action, the client IP is preserved.
    • Drop - Use when you want to block traffic from the client, to forward unwanted or undesirable network traffic to a null or "black hole" route.
    • Translate - Use to translate the source IP to the VPN server private IP before it is sent out from the VPN server, making your VPN client IP invisible to the destination devices.
  9. Click Save.

You can select Edit from the Actions menu of the VPN server route to change the name of your route.

Deleting a route in the UI

To delete a route using the UI, follow these steps:

  1. From your browser, open the IBM Cloud console and log in to your account.
  2. Select the Navigation Menu icon menu icon, then click > VPC Infrastructure VPC icon > VPNs in the Network section.
  3. Select Client-to-site servers tab.
  4. Select the VPN server where you want to delete a route. Then, from the Actions menu, select Delete.
  5. Select Delete again to confirm deletion.

Creating a route from the CLI

Before you begin, set up your CLI environment.

To create a VPN server route from the CLI, enter the following command:

ibmcloud is vpn-server-route-create VPN_SERVER_ID --destination DESTINATION_CIDR [--action translate | deliver | drop] [--name NAME] [--output JSON] [-q, --quiet]

Where:

  • VPN_SERVER_ID: is the ID of the VPN server.
  • --action: is the action to perform with a packet that matches the route. One of: translate, deliver, drop. (default: deliver).
  • --destination: is the destination to use for this VPN route in the VPN server. Must be unique within the VPN server. If an incoming packet does not match any destination, it will be dropped.
  • --name: is the name of the VPN route.
  • --output: specifies output format, only JSON is supported. One of: JSON.
  • -q, --quiet: suppresses verbose output.

For example:

  • ibmcloud is vpn-server-route-create r006-77e21079-7291-44c2-866a-8f1848bc10f0 --name myroute --action deliver --destination 10.0.0.0/24

  • ibmcloud is vpn-server-route-create r006-77e21079-7291-44c2-866a-8f1848bc10f0 --name myroute --action drop --destination 10.0.0.0/24

Updating a route from the CLI

To update a VPN server route from the CLI, enter the following command:

ibmcloud is vpn-server-route-update VPN_SERVER_ID ROUTE_ID [--name NAME] [--output JSON] [-q, --quiet]

Where:

  • VPN_SERVER_ID: is the ID of the VPN server.
  • ROUTE_ID: is the ID of the VPN route.
  • --name: is the new name of the VPN route.
  • --output: specifies output format, only JSON is supported. One of: JSON.
  • -q, --quiet: suppresses verbose output.

For example:

ibmcloud is vpn-server-route-update r006-77e21079-7291-44c2-866a-8f1848bc10f0 1233a60b-fc95-4dbc-96ab-a976b723bfb0 --name myroute

Viewing VPN route details from the CLI

To view details of a VPN route, enter the following command:

ibmcloud is vpn-server-route VPN_SERVER_ID ROUTE_ID [--output JSON] [-q, --quiet]

Where:

  • VPN_SERVER_ID: is the ID of the VPN server.
  • ROUTE_ID: is the ID of the VPN route.
  • --output: specifies output format, only JSON is supported. One of: JSON.
  • -q, --quiet: suppresses verbose output.

Viewing all routes by using the CLI

Before you begin, set up your CLI environment.

To view a list of VPN server routes for a VPN server from the CLI, enter the following command:

ibmcloud is vpn-server-routes VPN_SERVER_ID [--resource-group-id RESOURCE_GROUP_ID | --resource-group-name RESOURCE_GROUP_NAME | --all-resource-groups] [--output JSON] [-q, --quiet]

Where:

  • VPN_SERVER_ID: is the ID of the VPN server.
  • --resource-group-id: is the ID of the resource group. This option is mutually exclusive with --resource-group-name.
  • --resource-group-name: is the name of the resource group. This option is mutually exclusive with --resource-group-id.
  • --all-resource-groups: queries all resource groups.
  • --output: specifies output format, only JSON is supported. One of: JSON.
  • -q, --quiet: suppresses verbose output.

Deleting a route by using the CLI

To delete a VPN server route from the CLI, enter the following command:

ibmcloud is vpn-server-route-delete VPN_SERVER_ID (ROUTE_ID1 ROUTE_ID2 ...) [--output JSON] [-f, --force] [-q, --quiet]

Where:

  • VPN_SERVER_ID: is the ID of the VPN server.
  • ROUTE_ID1: is the ID of the VPN route.
  • ROUTE_ID2: is the ID of the VPN route.
  • --output: specifies output format, only JSON is supported. One of: JSON.
  • --force, -f: forces the operation without confirmation.
  • -q, --quiet: suppresses verbose output.

Creating a route by using the API

To create a VPN route on the VPN server with the API, follow these steps:

  1. Set up your API environment with the right variables.

  2. Perform a POST to /vpn_servers/{vpn_server_id}/routes.

       curl -X POST "$vpc_api_endpoint/v1/vpn_servers/$vpn_server_id/routes?version=$api_version&generation=2" \
         -H "Authorization: $iam_token" \
         -d '{
            "name":"my-route-1",
             "destination": "10.10.10.0/24",
             "action": "translate"
          }'
    

Updating a route by using the API

To update a route on the VPN server with the API, follow these steps:

  1. Set up your API environment with the right variables.

  2. Perform a PATCH on /vpn_servers/{vpn_server_id}/routes/{id}

       curl -X PUT "$vpc_api_endpoint/v1/vpn_servers/$vpn_server_id/routes/$route_id?version=$api_version&generation=2" \
         -H "Authorization: $iam_token" \
         -d '{
            "name":"new-route-name"
          }'
    

Viewing a route by using the API

To view a route on a VPN server with the API, follow these steps:

  1. Set up your API environment with the right variables.

  2. When all variables are initiated, list your routes:

    curl -sS -X GET \
    -H "Authorization: $iam_token" \
    "$vpc_api_endpoint/v1/vpn_servers/$vpn_server_id/routes?version=$api_version&generation=2" | jq
    
  3. Perform a GET on /vpn_servers/{vpn_server_id}/routes/{id}. For details, see list_vpn-server_routes.

    curl -sS -X GET \
    -H "Authorization: $iam_token" \
    "$vpc_api_endpoint/v1/vpn_servers/$vpn_server_id/routes/$route_id?version=$api_version&generation=2" | jq
    

Deleting a route by using the API

To delete a route on a VPN server with the API, follow these steps:

  1. Set up your API environment with the right variables.

  2. Perform a DELETE on /vpn_servers/{vpn_server_id}/routes/{id}.

    curl -sS -X DELETE \
    -H "Authorization: $iam_token" \
    "$vpc_api_endpoint/v1/vpn_servers/$vpn_server_id/routes/$route_id?version=$api_version&generation=2"