List all Port Allocations cloud-only
Returns a list of all ingress port allocations for a peer
Path Parameters
- Name
peerId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of a peer
Query Parameters
- Name
name
- Type
- string
- Required
- optional
- Enum
- Description
Filters ingress port allocations by name
Request
curl -X GET https://api.netbird.io/api/peers/{peerId}/ingress/ports \
-H 'Accept: application/json' \
-H 'Authorization: Token <TOKEN>'
Response
[
{
"id": "ch8i4ug6lnn4g9hqv7m0",
"name": "Ingress Peer Allocation 1",
"ingress_peer_id": "x7p3kqf2rdd8j5zxw4n9",
"region": "germany",
"enabled": true,
"ingress_ip": "192.34.0.123",
"port_range_mappings": [
{
"translated_start": 80,
"translated_end": 320,
"ingress_start": 1080,
"ingress_end": 1320,
"protocol": "tcp"
}
]
}
]
Create a Port Allocation cloud-only
Creates a new ingress port allocation for a peer
Path Parameters
- Name
peerId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of a peer
Request-Body Parameters
- Name
name
- Type
- string
- Required
- required
- Enum
- Description
Name of the ingress port allocation
- Name
enabled
- Type
- boolean
- Required
- required
- Enum
- Description
Indicates if an ingress port allocation is enabled
- Name
port_ranges
- Type
- object[]
- Required
- optional
- Enum
- Description
List of port ranges that are forwarded by the ingress peer
- Name
start
- Type
- integer
- Required
- required
- Enum
- Description
The starting port of the range of forwarded ports
- Name
end
- Type
- integer
- Required
- required
- Enum
- Description
The ending port of the range of forwarded ports
- Name
protocol
- Type
- string
- Required
- required
- Enum
- Description
The protocol accepted by the port range
- Name
direct_port
- Type
- object
- Required
- optional
- Enum
- Description
More Information
- Name
count
- Type
- integer
- Required
- required
- Enum
- Description
The number of ports to be forwarded
- Name
protocol
- Type
- string
- Required
- required
- Enum
- Description
The protocol accepted by the port
Request
curl -X POST https://api.netbird.io/api/peers/{peerId}/ingress/ports \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Token <TOKEN>' \
--data-raw '{
"name": "Ingress Port Allocation 1",
"enabled": true,
"port_ranges": [
{
"start": 80,
"end": 320,
"protocol": "tcp"
}
],
"direct_port": {
"count": 5,
"protocol": "udp"
}
}'
Response
{
"id": "ch8i4ug6lnn4g9hqv7m0",
"name": "Ingress Peer Allocation 1",
"ingress_peer_id": "x7p3kqf2rdd8j5zxw4n9",
"region": "germany",
"enabled": true,
"ingress_ip": "192.34.0.123",
"port_range_mappings": [
{
"translated_start": 80,
"translated_end": 320,
"ingress_start": 1080,
"ingress_end": 1320,
"protocol": "tcp"
}
]
}
Retrieve a Port Allocation cloud-only
Get information about an ingress port allocation
Path Parameters
- Name
peerId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of a peer
- Name
allocationId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of an ingress port allocation
Request
curl -X GET https://api.netbird.io/api/peers/{peerId}/ingress/ports/{allocationId} \
-H 'Accept: application/json' \
-H 'Authorization: Token <TOKEN>'
Response
{
"id": "ch8i4ug6lnn4g9hqv7m0",
"name": "Ingress Peer Allocation 1",
"ingress_peer_id": "x7p3kqf2rdd8j5zxw4n9",
"region": "germany",
"enabled": true,
"ingress_ip": "192.34.0.123",
"port_range_mappings": [
{
"translated_start": 80,
"translated_end": 320,
"ingress_start": 1080,
"ingress_end": 1320,
"protocol": "tcp"
}
]
}
Update a Port Allocation cloud-only
Update information about an ingress port allocation
Path Parameters
- Name
peerId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of a peer
- Name
allocationId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of an ingress port allocation
Request-Body Parameters
- Name
name
- Type
- string
- Required
- required
- Enum
- Description
Name of the ingress port allocation
- Name
enabled
- Type
- boolean
- Required
- required
- Enum
- Description
Indicates if an ingress port allocation is enabled
- Name
port_ranges
- Type
- object[]
- Required
- optional
- Enum
- Description
List of port ranges that are forwarded by the ingress peer
- Name
start
- Type
- integer
- Required
- required
- Enum
- Description
The starting port of the range of forwarded ports
- Name
end
- Type
- integer
- Required
- required
- Enum
- Description
The ending port of the range of forwarded ports
- Name
protocol
- Type
- string
- Required
- required
- Enum
- Description
The protocol accepted by the port range
- Name
direct_port
- Type
- object
- Required
- optional
- Enum
- Description
More Information
- Name
count
- Type
- integer
- Required
- required
- Enum
- Description
The number of ports to be forwarded
- Name
protocol
- Type
- string
- Required
- required
- Enum
- Description
The protocol accepted by the port
Request
curl -X PUT https://api.netbird.io/api/peers/{peerId}/ingress/ports/{allocationId} \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Token <TOKEN>' \
--data-raw '{
"name": "Ingress Port Allocation 1",
"enabled": true,
"port_ranges": [
{
"start": 80,
"end": 320,
"protocol": "tcp"
}
],
"direct_port": {
"count": 5,
"protocol": "udp"
}
}'
Response
{
"id": "ch8i4ug6lnn4g9hqv7m0",
"name": "Ingress Peer Allocation 1",
"ingress_peer_id": "x7p3kqf2rdd8j5zxw4n9",
"region": "germany",
"enabled": true,
"ingress_ip": "192.34.0.123",
"port_range_mappings": [
{
"translated_start": 80,
"translated_end": 320,
"ingress_start": 1080,
"ingress_end": 1320,
"protocol": "tcp"
}
]
}
Delete a Port Allocation cloud-only
Delete an ingress port allocation
Path Parameters
- Name
peerId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of a peer
- Name
allocationId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of an ingress port allocation
Request
curl -X DELETE https://api.netbird.io/api/peers/{peerId}/ingress/ports/{allocationId} \
-H 'Authorization: Token <TOKEN>'
List all Ingress Peers cloud-only
Returns a list of all ingress peers
Request
curl -X GET https://api.netbird.io/api/ingress/peers \
-H 'Accept: application/json' \
-H 'Authorization: Token <TOKEN>'
Response
[
{
"id": "ch8i4ug6lnn4g9hqv7m0",
"peer_id": "x7p3kqf2rdd8j5zxw4n9",
"ingress_ip": "192.34.0.123",
"available_ports": {
"tcp": 45765,
"udp": 50000
},
"enabled": true,
"connected": true,
"fallback": true,
"region": "germany"
}
]
Create a Ingress Peer cloud-only
Creates a new ingress peer
Request-Body Parameters
- Name
peer_id
- Type
- string
- Required
- required
- Enum
- Description
ID of the peer that is used as an ingress peer
- Name
enabled
- Type
- boolean
- Required
- required
- Enum
- Description
Defines if an ingress peer is enabled
- Name
fallback
- Type
- boolean
- Required
- required
- Enum
- Description
Defines if an ingress peer can be used as a fallback if no ingress peer can be found in the region of the forwarded peer
Request
curl -X POST https://api.netbird.io/api/ingress/peers \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Token <TOKEN>' \
--data-raw '{
"peer_id": "ch8i4ug6lnn4g9hqv7m0",
"enabled": true,
"fallback": true
}'
Response
{
"id": "ch8i4ug6lnn4g9hqv7m0",
"peer_id": "x7p3kqf2rdd8j5zxw4n9",
"ingress_ip": "192.34.0.123",
"available_ports": {
"tcp": 45765,
"udp": 50000
},
"enabled": true,
"connected": true,
"fallback": true,
"region": "germany"
}
Retrieve a Ingress Peer cloud-only
Get information about an ingress peer
Path Parameters
- Name
ingressPeerId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of an ingress peer
Request
curl -X GET https://api.netbird.io/api/ingress/peers/{ingressPeerId} \
-H 'Accept: application/json' \
-H 'Authorization: Token <TOKEN>'
Response
{
"id": "ch8i4ug6lnn4g9hqv7m0",
"peer_id": "x7p3kqf2rdd8j5zxw4n9",
"ingress_ip": "192.34.0.123",
"available_ports": {
"tcp": 45765,
"udp": 50000
},
"enabled": true,
"connected": true,
"fallback": true,
"region": "germany"
}
Update a Ingress Peer cloud-only
Update information about an ingress peer
Path Parameters
- Name
ingressPeerId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of an ingress peer
Request-Body Parameters
- Name
enabled
- Type
- boolean
- Required
- required
- Enum
- Description
Defines if an ingress peer is enabled
- Name
fallback
- Type
- boolean
- Required
- required
- Enum
- Description
Defines if an ingress peer can be used as a fallback if no ingress peer can be found in the region of the forwarded peer
Request
curl -X PUT https://api.netbird.io/api/ingress/peers/{ingressPeerId} \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Token <TOKEN>' \
--data-raw '{
"enabled": true,
"fallback": true
}'
Response
{
"id": "ch8i4ug6lnn4g9hqv7m0",
"peer_id": "x7p3kqf2rdd8j5zxw4n9",
"ingress_ip": "192.34.0.123",
"available_ports": {
"tcp": 45765,
"udp": 50000
},
"enabled": true,
"connected": true,
"fallback": true,
"region": "germany"
}
Delete a Ingress Peer cloud-only
Delete an ingress peer
Path Parameters
- Name
ingressPeerId
- Type
- string
- Required
- required
- Enum
- Description
The unique identifier of an ingress peer
Request
curl -X DELETE https://api.netbird.io/api/ingress/peers/{ingressPeerId} \
-H 'Authorization: Token <TOKEN>'