Skip to main content
Docs
English日本語
Login

Soracom Gate Basic Configuration

Before enabling Gate, ensure that you have completed the following:

Before enabling Gate, ensure that you have completed the following:

Then, enable Gate for your VPG:

  1. Sign in to the User Console . From the Menu, open the VPG screen.

  2. From the list of VPGs, click the name of the VPG you want to configure to open its settings page.

  3. Click the Device LAN tab.

  4. Enable Gate by switching the option to ON.

    Missing
  5. Click the Save button at the bottom of the panel.

When using Gate with an Arc Virtual SIM/Subscriber, you must add your VPG's Device Subnet IP Range to either your:

You can check your Device Subnet IP Range on the VPG Settings Screen. The default range is 10.128.0.0/9.

Programmatic Usage

[block=api]

Soracom API

Enable Gate by using the openGate API method:

[ui-tabs theme=code] [ui-tab title=Global]

curl -X POST \
|  https://g.api.soracom.io/v1/virtual_private_gateways/<VPG-ID>/gate/open

[/ui-tab] [ui-tab title=Japan]

curl -X POST \
|  https://jp.api.soracom.io/v1/virtual_private_gateways/<VPG-ID>/gate/open

[/ui-tab] [/ui-tabs]

Once enabled, the API will return a response indicating the status of the VPG:

{
  "operatorId": "OP0012345678",
  "vpgId": "abcdef00-0000-0000-0000-000012345678",
  "type": 12,
  "status": "running",
  "useInternetGateway": true,
  "tags": {
    "name": "my-vpg"
  },
  "createdTime": 1467007824685,
  "lastModifiedTime": 1467012076035,
  "primaryServiceName": "Gate",
  "vpcPeeringConnections": null,
  "virtualInterfaces": null,
  "gateOpened": true
}

You can disable gate similarly by using the closeGate API. [/block]

[block=cli]

Soracom CLI

Enable Gate by using the open-gate command:

[ui-tabs theme=code] [ui-tab title=Global]

soracom vpg open-gate --vpg-id "<VPG-ID>" --coverage-type g

[/ui-tab] [ui-tab title=Japan]

soracom vpg open-gate --vpg-id "<VPG-ID>" --coverage-type jp

[/ui-tab] [/ui-tabs]

The CLI will return a similar response indicating the VPG status.

You can disable Gate using the close-gate command. [/block]

Search Esc to close / Enter to view results