From bf927404390da2b06c4c8911023ae6a7e0512a5d Mon Sep 17 00:00:00 2001 From: mlsmaycon Date: Tue, 10 Mar 2026 22:39:07 +0100 Subject: [PATCH 1/5] add fleetdm types --- shared/management/client/rest/edr.go | 59 +++++ shared/management/http/api/openapi.yml | 281 ++++++++++++++++++++++++ shared/management/http/api/types.gen.go | 84 +++++++ 3 files changed, 424 insertions(+) diff --git a/shared/management/client/rest/edr.go b/shared/management/client/rest/edr.go index 7dfc891c29b..f9b7f2a8840 100644 --- a/shared/management/client/rest/edr.go +++ b/shared/management/client/rest/edr.go @@ -265,6 +265,65 @@ func (a *EDRAPI) DeleteHuntressIntegration(ctx context.Context) error { return nil } +// GetFleetDMIntegration retrieves the EDR FleetDM integration. +func (a *EDRAPI) GetFleetDMIntegration(ctx context.Context) (*api.EDRFleetDMResponse, error) { + resp, err := a.c.NewRequest(ctx, "GET", "/api/integrations/edr/fleetdm", nil, nil) + if err != nil { + return nil, err + } + if resp.Body != nil { + defer resp.Body.Close() + } + ret, err := parseResponse[api.EDRFleetDMResponse](resp) + return &ret, err +} + +// CreateFleetDMIntegration creates a new EDR FleetDM integration. +func (a *EDRAPI) CreateFleetDMIntegration(ctx context.Context, request api.EDRFleetDMRequest) (*api.EDRFleetDMResponse, error) { + requestBytes, err := json.Marshal(request) + if err != nil { + return nil, err + } + resp, err := a.c.NewRequest(ctx, "POST", "/api/integrations/edr/fleetdm", bytes.NewReader(requestBytes), nil) + if err != nil { + return nil, err + } + if resp.Body != nil { + defer resp.Body.Close() + } + ret, err := parseResponse[api.EDRFleetDMResponse](resp) + return &ret, err +} + +// UpdateFleetDMIntegration updates an existing EDR FleetDM integration. +func (a *EDRAPI) UpdateFleetDMIntegration(ctx context.Context, request api.EDRFleetDMRequest) (*api.EDRFleetDMResponse, error) { + requestBytes, err := json.Marshal(request) + if err != nil { + return nil, err + } + resp, err := a.c.NewRequest(ctx, "PUT", "/api/integrations/edr/fleetdm", bytes.NewReader(requestBytes), nil) + if err != nil { + return nil, err + } + if resp.Body != nil { + defer resp.Body.Close() + } + ret, err := parseResponse[api.EDRFleetDMResponse](resp) + return &ret, err +} + +// DeleteFleetDMIntegration deletes the EDR FleetDM integration. +func (a *EDRAPI) DeleteFleetDMIntegration(ctx context.Context) error { + resp, err := a.c.NewRequest(ctx, "DELETE", "/api/integrations/edr/fleetdm", nil, nil) + if err != nil { + return err + } + if resp.Body != nil { + defer resp.Body.Close() + } + return nil +} + // BypassPeerCompliance bypasses compliance for a non-compliant peer // See more: https://docs.netbird.io/api/resources/edr#bypass-peer-compliance func (a *EDRAPI) BypassPeerCompliance(ctx context.Context, peerID string) (*api.BypassResponse, error) { diff --git a/shared/management/http/api/openapi.yml b/shared/management/http/api/openapi.yml index c6723134253..b4c84f7a487 100644 --- a/shared/management/http/api/openapi.yml +++ b/shared/management/http/api/openapi.yml @@ -83,6 +83,9 @@ tags: - name: EDR Huntress Integrations description: Manage Huntress EDR integrations. x-cloud-only: true + - name: EDR FleetDM Integrations + description: Manage FleetDM EDR integrations. + x-cloud-only: true - name: EDR Peers description: Manage EDR compliance bypass for peers. x-cloud-only: true @@ -4106,6 +4109,129 @@ components: description: Status of agent firewall. Can be one of Disabled, Enabled, Pending Isolation, Isolated, Pending Release. example: "Enabled" + EDRFleetDMRequest: + type: object + description: Request payload for creating or updating a FleetDM EDR integration + properties: + api_url: + type: string + description: FleetDM server URL + api_token: + type: string + description: FleetDM API token + groups: + type: array + description: The Groups this integrations applies to + items: + type: string + last_synced_interval: + type: integer + description: The devices last sync requirement interval in hours. Minimum value is 24 hours + minimum: 24 + enabled: + type: boolean + description: Indicates whether the integration is enabled + default: true + match_attributes: + $ref: '#/components/schemas/FleetDMMatchAttributes' + required: + - api_url + - api_token + - groups + - last_synced_interval + - match_attributes + EDRFleetDMResponse: + type: object + description: Represents a FleetDM EDR integration configuration + required: + - id + - account_id + - api_url + - created_by + - last_synced_at + - created_at + - updated_at + - groups + - last_synced_interval + - match_attributes + - enabled + properties: + id: + type: integer + format: int64 + description: The unique numeric identifier for the integration. + example: 123 + account_id: + type: string + description: The identifier of the account this integration belongs to. + example: "ch8i4ug6lnn4g9hqv7l0" + api_url: + type: string + description: FleetDM server URL + last_synced_at: + type: string + format: date-time + description: Timestamp of when the integration was last synced. + example: "2023-05-15T10:30:00Z" + created_by: + type: string + description: The user id that created the integration + created_at: + type: string + format: date-time + description: Timestamp of when the integration was created. + example: "2023-05-15T10:30:00Z" + updated_at: + type: string + format: date-time + description: Timestamp of when the integration was last updated. + example: "2023-05-16T11:45:00Z" + groups: + type: array + description: List of groups + items: + $ref: '#/components/schemas/Group' + last_synced_interval: + type: integer + description: The devices last sync requirement interval in hours. + enabled: + type: boolean + description: Indicates whether the integration is enabled + default: true + match_attributes: + $ref: '#/components/schemas/FleetDMMatchAttributes' + + FleetDMMatchAttributes: + type: object + description: Attribute conditions to match when approving FleetDM hosts + additionalProperties: false + properties: + disk_encryption_enabled: + type: boolean + description: Whether disk encryption (FileVault/BitLocker) must be enabled on the host + failing_policies_count_max: + type: integer + description: Maximum number of allowed failing policies. Use 0 to require all policies to pass + minimum: 0 + example: 0 + failing_critical_policies_count_max: + type: integer + description: Maximum number of allowed failing critical policies (FleetDM Premium). Use 0 to require all critical policies to pass + minimum: 0 + example: 0 + os_version_min: + type: string + description: Minimum OS version required (e.g. "14.0", "22H2") + example: "14.0" + vulnerable_software_count_max: + type: integer + description: Maximum number of allowed vulnerable software on the host + minimum: 0 + example: 0 + status_online: + type: boolean + description: Whether the host must be online (recently seen by Fleet) + CreateScimIntegrationRequest: type: object description: Request payload for creating an SCIM IDP integration @@ -9305,6 +9431,161 @@ paths: schema: $ref: '#/components/schemas/ErrorResponse' + /api/integrations/edr/fleetdm: + post: + tags: + - EDR FleetDM Integrations + summary: Create EDR FleetDM Integration + description: Creates a new EDR FleetDM integration + operationId: createFleetDMEDRIntegration + requestBody: + required: true + content: + application/json: + schema: + $ref: '#/components/schemas/EDRFleetDMRequest' + responses: + '200': + description: Integration created successfully. Returns the created integration. + content: + application/json: + schema: + $ref: '#/components/schemas/EDRFleetDMResponse' + '400': + description: Bad Request (e.g., invalid JSON, missing required fields, validation error). + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '401': + description: Unauthorized (e.g., missing or invalid authentication token). + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '500': + description: Internal Server Error. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + get: + tags: + - EDR FleetDM Integrations + summary: Get EDR FleetDM Integration + description: Retrieves a specific EDR FleetDM integration by its ID. + responses: + '200': + description: Successfully retrieved the integration details. + content: + application/json: + schema: + $ref: '#/components/schemas/EDRFleetDMResponse' + '400': + description: Bad Request (e.g., invalid integration ID format). + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '401': + description: Unauthorized. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '404': + description: Not Found (e.g., integration with the given ID does not exist). + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '500': + description: Internal Server Error. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + put: + tags: + - EDR FleetDM Integrations + summary: Update EDR FleetDM Integration + description: Updates an existing EDR FleetDM Integration. + operationId: updateFleetDMEDRIntegration + requestBody: + required: true + content: + application/json: + schema: + $ref: '#/components/schemas/EDRFleetDMRequest' + responses: + '200': + description: Integration updated successfully. Returns the updated integration. + content: + application/json: + schema: + $ref: '#/components/schemas/EDRFleetDMResponse' + '400': + description: Bad Request (e.g., invalid JSON, validation error, invalid ID). + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '401': + description: Unauthorized. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '404': + description: Not Found. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '500': + description: Internal Server Error. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + delete: + tags: + - EDR FleetDM Integrations + summary: Delete EDR FleetDM Integration + description: Deletes an EDR FleetDM Integration by its ID. + responses: + '200': + description: Integration deleted successfully. Returns an empty object. + content: + application/json: + schema: + type: object + example: { } + '400': + description: Bad Request (e.g., invalid integration ID format). + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '401': + description: Unauthorized. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '404': + description: Not Found. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '500': + description: Internal Server Error. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + /api/peers/{peer-id}/edr/bypass: parameters: - name: peer-id diff --git a/shared/management/http/api/types.gen.go b/shared/management/http/api/types.gen.go index f218679c0aa..7ede040ee2c 100644 --- a/shared/management/http/api/types.gen.go +++ b/shared/management/http/api/types.gen.go @@ -1647,6 +1647,63 @@ type EDRFalconResponse struct { ZtaScoreThreshold int `json:"zta_score_threshold"` } +// EDRFleetDMRequest Request payload for creating or updating a FleetDM EDR integration +type EDRFleetDMRequest struct { + // ApiToken FleetDM API token + ApiToken string `json:"api_token"` + + // ApiUrl FleetDM server URL + ApiUrl string `json:"api_url"` + + // Enabled Indicates whether the integration is enabled + Enabled *bool `json:"enabled,omitempty"` + + // Groups The Groups this integrations applies to + Groups []string `json:"groups"` + + // LastSyncedInterval The devices last sync requirement interval in hours. Minimum value is 24 hours + LastSyncedInterval int `json:"last_synced_interval"` + + // MatchAttributes Attribute conditions to match when approving FleetDM hosts + MatchAttributes FleetDMMatchAttributes `json:"match_attributes"` +} + +// EDRFleetDMResponse Represents a FleetDM EDR integration configuration +type EDRFleetDMResponse struct { + // AccountId The identifier of the account this integration belongs to. + AccountId string `json:"account_id"` + + // ApiUrl FleetDM server URL + ApiUrl string `json:"api_url"` + + // CreatedAt Timestamp of when the integration was created. + CreatedAt time.Time `json:"created_at"` + + // CreatedBy The user id that created the integration + CreatedBy string `json:"created_by"` + + // Enabled Indicates whether the integration is enabled + Enabled bool `json:"enabled"` + + // Groups List of groups + Groups []Group `json:"groups"` + + // Id The unique numeric identifier for the integration. + Id int64 `json:"id"` + + // LastSyncedAt Timestamp of when the integration was last synced. + LastSyncedAt time.Time `json:"last_synced_at"` + + // LastSyncedInterval The devices last sync requirement interval in hours. + LastSyncedInterval int `json:"last_synced_interval"` + + // MatchAttributes Attribute conditions to match when approving FleetDM hosts + MatchAttributes FleetDMMatchAttributes `json:"match_attributes"` + + // UpdatedAt Timestamp of when the integration was last updated. + UpdatedAt time.Time `json:"updated_at"` +} + // EDRHuntressRequest Request payload for creating or updating a EDR Huntress integration type EDRHuntressRequest struct { // ApiKey Huntress API key @@ -1854,6 +1911,27 @@ type Event struct { // EventActivityCode The string code of the activity that occurred during the event type EventActivityCode string +// FleetDMMatchAttributes Attribute conditions to match when approving FleetDM hosts +type FleetDMMatchAttributes struct { + // DiskEncryptionEnabled Whether disk encryption (FileVault/BitLocker) must be enabled on the host + DiskEncryptionEnabled *bool `json:"disk_encryption_enabled,omitempty"` + + // FailingCriticalPoliciesCountMax Maximum number of allowed failing critical policies (FleetDM Premium). Use 0 to require all critical policies to pass + FailingCriticalPoliciesCountMax *int `json:"failing_critical_policies_count_max,omitempty"` + + // FailingPoliciesCountMax Maximum number of allowed failing policies. Use 0 to require all policies to pass + FailingPoliciesCountMax *int `json:"failing_policies_count_max,omitempty"` + + // OsVersionMin Minimum OS version required (e.g. "14.0", "22H2") + OsVersionMin *string `json:"os_version_min,omitempty"` + + // StatusOnline Whether the host must be online (recently seen by Fleet) + StatusOnline *bool `json:"status_online,omitempty"` + + // VulnerableSoftwareCountMax Maximum number of allowed vulnerable software on the host + VulnerableSoftwareCountMax *int `json:"vulnerable_software_count_max,omitempty"` +} + // GeoLocationCheck Posture check for geo location type GeoLocationCheck struct { // Action Action to take upon policy match @@ -4394,6 +4472,12 @@ type CreateFalconEDRIntegrationJSONRequestBody = EDRFalconRequest // UpdateFalconEDRIntegrationJSONRequestBody defines body for UpdateFalconEDRIntegration for application/json ContentType. type UpdateFalconEDRIntegrationJSONRequestBody = EDRFalconRequest +// CreateFleetDMEDRIntegrationJSONRequestBody defines body for CreateFleetDMEDRIntegration for application/json ContentType. +type CreateFleetDMEDRIntegrationJSONRequestBody = EDRFleetDMRequest + +// UpdateFleetDMEDRIntegrationJSONRequestBody defines body for UpdateFleetDMEDRIntegration for application/json ContentType. +type UpdateFleetDMEDRIntegrationJSONRequestBody = EDRFleetDMRequest + // CreateHuntressEDRIntegrationJSONRequestBody defines body for CreateHuntressEDRIntegration for application/json ContentType. type CreateHuntressEDRIntegrationJSONRequestBody = EDRHuntressRequest From d2a9333cfee7e501344e4d9edadb4912514c0882 Mon Sep 17 00:00:00 2001 From: mlsmaycon Date: Sat, 14 Mar 2026 21:41:33 +0100 Subject: [PATCH 2/5] update spec --- shared/management/http/api/openapi.yml | 8 +++++++- shared/management/http/api/types.gen.go | 9 ++++++--- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/shared/management/http/api/openapi.yml b/shared/management/http/api/openapi.yml index b4c84f7a487..6d64c002b99 100644 --- a/shared/management/http/api/openapi.yml +++ b/shared/management/http/api/openapi.yml @@ -4203,7 +4203,7 @@ components: FleetDMMatchAttributes: type: object - description: Attribute conditions to match when approving FleetDM hosts + description: Attribute conditions to match when approving FleetDM hosts. Most attributes work with FleetDM's free/open-source version. Premium-only attributes are marked accordingly additionalProperties: false properties: disk_encryption_enabled: @@ -4231,6 +4231,12 @@ components: status_online: type: boolean description: Whether the host must be online (recently seen by Fleet) + required_policies: + type: array + description: List of FleetDM policy IDs that must be passing on the host. If any of these policies is failing, the host is non-compliant + items: + type: integer + example: [1, 5, 12] CreateScimIntegrationRequest: type: object diff --git a/shared/management/http/api/types.gen.go b/shared/management/http/api/types.gen.go index 7ede040ee2c..d485d765c2c 100644 --- a/shared/management/http/api/types.gen.go +++ b/shared/management/http/api/types.gen.go @@ -1664,7 +1664,7 @@ type EDRFleetDMRequest struct { // LastSyncedInterval The devices last sync requirement interval in hours. Minimum value is 24 hours LastSyncedInterval int `json:"last_synced_interval"` - // MatchAttributes Attribute conditions to match when approving FleetDM hosts + // MatchAttributes Attribute conditions to match when approving FleetDM hosts. Most attributes work with FleetDM's free/open-source version. Premium-only attributes are marked accordingly MatchAttributes FleetDMMatchAttributes `json:"match_attributes"` } @@ -1697,7 +1697,7 @@ type EDRFleetDMResponse struct { // LastSyncedInterval The devices last sync requirement interval in hours. LastSyncedInterval int `json:"last_synced_interval"` - // MatchAttributes Attribute conditions to match when approving FleetDM hosts + // MatchAttributes Attribute conditions to match when approving FleetDM hosts. Most attributes work with FleetDM's free/open-source version. Premium-only attributes are marked accordingly MatchAttributes FleetDMMatchAttributes `json:"match_attributes"` // UpdatedAt Timestamp of when the integration was last updated. @@ -1911,7 +1911,7 @@ type Event struct { // EventActivityCode The string code of the activity that occurred during the event type EventActivityCode string -// FleetDMMatchAttributes Attribute conditions to match when approving FleetDM hosts +// FleetDMMatchAttributes Attribute conditions to match when approving FleetDM hosts. Most attributes work with FleetDM's free/open-source version. Premium-only attributes are marked accordingly type FleetDMMatchAttributes struct { // DiskEncryptionEnabled Whether disk encryption (FileVault/BitLocker) must be enabled on the host DiskEncryptionEnabled *bool `json:"disk_encryption_enabled,omitempty"` @@ -1925,6 +1925,9 @@ type FleetDMMatchAttributes struct { // OsVersionMin Minimum OS version required (e.g. "14.0", "22H2") OsVersionMin *string `json:"os_version_min,omitempty"` + // RequiredPolicies List of FleetDM policy IDs that must be passing on the host. If any of these policies is failing, the host is non-compliant + RequiredPolicies *[]int `json:"required_policies,omitempty"` + // StatusOnline Whether the host must be online (recently seen by Fleet) StatusOnline *bool `json:"status_online,omitempty"` From 8191694774189bd55d62feca64474a4c46fa7ffd Mon Sep 17 00:00:00 2001 From: mlsmaycon Date: Mon, 16 Mar 2026 19:37:49 +0100 Subject: [PATCH 3/5] remove unused FleetDM fields from API spec and generated types --- shared/management/http/api/openapi.yml | 9 --------- shared/management/http/api/types.gen.go | 6 ------ 2 files changed, 15 deletions(-) diff --git a/shared/management/http/api/openapi.yml b/shared/management/http/api/openapi.yml index bdeb5d1b45e..f6d7d661aab 100644 --- a/shared/management/http/api/openapi.yml +++ b/shared/management/http/api/openapi.yml @@ -4255,15 +4255,6 @@ components: description: Maximum number of allowed failing policies. Use 0 to require all policies to pass minimum: 0 example: 0 - failing_critical_policies_count_max: - type: integer - description: Maximum number of allowed failing critical policies (FleetDM Premium). Use 0 to require all critical policies to pass - minimum: 0 - example: 0 - os_version_min: - type: string - description: Minimum OS version required (e.g. "14.0", "22H2") - example: "14.0" vulnerable_software_count_max: type: integer description: Maximum number of allowed vulnerable software on the host diff --git a/shared/management/http/api/types.gen.go b/shared/management/http/api/types.gen.go index 4dee56c07fd..87006d6f73d 100644 --- a/shared/management/http/api/types.gen.go +++ b/shared/management/http/api/types.gen.go @@ -1979,15 +1979,9 @@ type FleetDMMatchAttributes struct { // DiskEncryptionEnabled Whether disk encryption (FileVault/BitLocker) must be enabled on the host DiskEncryptionEnabled *bool `json:"disk_encryption_enabled,omitempty"` - // FailingCriticalPoliciesCountMax Maximum number of allowed failing critical policies (FleetDM Premium). Use 0 to require all critical policies to pass - FailingCriticalPoliciesCountMax *int `json:"failing_critical_policies_count_max,omitempty"` - // FailingPoliciesCountMax Maximum number of allowed failing policies. Use 0 to require all policies to pass FailingPoliciesCountMax *int `json:"failing_policies_count_max,omitempty"` - // OsVersionMin Minimum OS version required (e.g. "14.0", "22H2") - OsVersionMin *string `json:"os_version_min,omitempty"` - // RequiredPolicies List of FleetDM policy IDs that must be passing on the host. If any of these policies is failing, the host is non-compliant RequiredPolicies *[]int `json:"required_policies,omitempty"` From 2c6ec31d352cb66c7a9ced2ab3968951b20ce1e1 Mon Sep 17 00:00:00 2001 From: mlsmaycon Date: Tue, 31 Mar 2026 13:27:00 +0200 Subject: [PATCH 4/5] remove comparison test data fixtures from repository --- .../types/testdata/comparison/components.json | 7224 ----------- .../comparison/components_networkmap.json | 10368 ---------------- .../comparison/legacy_networkmap.json | 10368 ---------------- 3 files changed, 27960 deletions(-) delete mode 100644 management/server/types/testdata/comparison/components.json delete mode 100644 management/server/types/testdata/comparison/components_networkmap.json delete mode 100644 management/server/types/testdata/comparison/legacy_networkmap.json diff --git a/management/server/types/testdata/comparison/components.json b/management/server/types/testdata/comparison/components.json deleted file mode 100644 index 838d57b75dc..00000000000 --- a/management/server/types/testdata/comparison/components.json +++ /dev/null @@ -1,7224 +0,0 @@ -{ - "PeerID": "peer-60", - "Network": { - "id": "net-comparison-test", - "Net": { - "IP": "100.64.0.0", - "Mask": "//8AAA==" - }, - "Dns": "", - "Serial": 1 - }, - "AccountSettings": { - "PeerLoginExpirationEnabled": true, - "PeerLoginExpiration": 3600000000000, - "PeerInactivityExpirationEnabled": false, - "PeerInactivityExpiration": 0 - }, - "DNSSettings": { - "DisabledManagementGroups": [ - "group-ops" - ] - }, - "CustomZoneDomain": "", - "Peers": { - "peer-0": { - "ID": "peer-0", - "Key": "key-peer-0", - "IP": "100.64.0.1", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer1", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345176+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-1": { - "ID": "peer-1", - "Key": "key-peer-1", - "IP": "100.64.0.2", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer2", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345176+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-10": { - "ID": "peer-10", - "Key": "key-peer-10", - "IP": "100.64.0.11", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer11", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-11": { - "ID": "peer-11", - "Key": "key-peer-11", - "IP": "100.64.0.12", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer12", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-12": { - "ID": "peer-12", - "Key": "key-peer-12", - "IP": "100.64.0.13", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer13", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-13": { - "ID": "peer-13", - "Key": "key-peer-13", - "IP": "100.64.0.14", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer14", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-14": { - "ID": "peer-14", - "Key": "key-peer-14", - "IP": "100.64.0.15", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer15", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34518+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-15": { - "ID": "peer-15", - "Key": "key-peer-15", - "IP": "100.64.0.16", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer16", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34518+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-16": { - "ID": "peer-16", - "Key": "key-peer-16", - "IP": "100.64.0.17", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer17", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34518+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-17": { - "ID": "peer-17", - "Key": "key-peer-17", - "IP": "100.64.0.18", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer18", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-18": { - "ID": "peer-18", - "Key": "key-peer-18", - "IP": "100.64.0.19", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer19", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-19": { - "ID": "peer-19", - "Key": "key-peer-19", - "IP": "100.64.0.20", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer20", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-2": { - "ID": "peer-2", - "Key": "key-peer-2", - "IP": "100.64.0.3", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer3", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-20": { - "ID": "peer-20", - "Key": "key-peer-20", - "IP": "100.64.0.21", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer21", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-21": { - "ID": "peer-21", - "Key": "key-peer-21", - "IP": "100.64.0.22", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer22", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-22": { - "ID": "peer-22", - "Key": "key-peer-22", - "IP": "100.64.0.23", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer23", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-23": { - "ID": "peer-23", - "Key": "key-peer-23", - "IP": "100.64.0.24", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer24", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-24": { - "ID": "peer-24", - "Key": "key-peer-24", - "IP": "100.64.0.25", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer25", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-25": { - "ID": "peer-25", - "Key": "key-peer-25", - "IP": "100.64.0.26", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer26", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-26": { - "ID": "peer-26", - "Key": "key-peer-26", - "IP": "100.64.0.27", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer27", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-27": { - "ID": "peer-27", - "Key": "key-peer-27", - "IP": "100.64.0.28", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer28", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345184+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-28": { - "ID": "peer-28", - "Key": "key-peer-28", - "IP": "100.64.0.29", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer29", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345184+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-29": { - "ID": "peer-29", - "Key": "key-peer-29", - "IP": "100.64.0.30", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer30", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345184+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-3": { - "ID": "peer-3", - "Key": "key-peer-3", - "IP": "100.64.0.4", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer4", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-30": { - "ID": "peer-30", - "Key": "key-peer-30", - "IP": "100.64.0.31", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer31", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-31": { - "ID": "peer-31", - "Key": "key-peer-31", - "IP": "100.64.0.32", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer32", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-32": { - "ID": "peer-32", - "Key": "key-peer-32", - "IP": "100.64.0.33", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer33", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-33": { - "ID": "peer-33", - "Key": "key-peer-33", - "IP": "100.64.0.34", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer34", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-34": { - "ID": "peer-34", - "Key": "key-peer-34", - "IP": "100.64.0.35", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer35", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-35": { - "ID": "peer-35", - "Key": "key-peer-35", - "IP": "100.64.0.36", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer36", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-36": { - "ID": "peer-36", - "Key": "key-peer-36", - "IP": "100.64.0.37", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer37", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-37": { - "ID": "peer-37", - "Key": "key-peer-37", - "IP": "100.64.0.38", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer38", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-38": { - "ID": "peer-38", - "Key": "key-peer-38", - "IP": "100.64.0.39", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer39", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-39": { - "ID": "peer-39", - "Key": "key-peer-39", - "IP": "100.64.0.40", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer40", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-4": { - "ID": "peer-4", - "Key": "key-peer-4", - "IP": "100.64.0.5", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer5", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-40": { - "ID": "peer-40", - "Key": "key-peer-40", - "IP": "100.64.0.41", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer41", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-41": { - "ID": "peer-41", - "Key": "key-peer-41", - "IP": "100.64.0.42", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer42", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345187+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-42": { - "ID": "peer-42", - "Key": "key-peer-42", - "IP": "100.64.0.43", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer43", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345187+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-43": { - "ID": "peer-43", - "Key": "key-peer-43", - "IP": "100.64.0.44", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer44", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-44": { - "ID": "peer-44", - "Key": "key-peer-44", - "IP": "100.64.0.45", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer45", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-45": { - "ID": "peer-45", - "Key": "key-peer-45", - "IP": "100.64.0.46", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer46", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-46": { - "ID": "peer-46", - "Key": "key-peer-46", - "IP": "100.64.0.47", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer47", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-47": { - "ID": "peer-47", - "Key": "key-peer-47", - "IP": "100.64.0.48", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer48", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-48": { - "ID": "peer-48", - "Key": "key-peer-48", - "IP": "100.64.0.49", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer49", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-49": { - "ID": "peer-49", - "Key": "key-peer-49", - "IP": "100.64.0.50", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer50", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-5": { - "ID": "peer-5", - "Key": "key-peer-5", - "IP": "100.64.0.6", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer6", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-50": { - "ID": "peer-50", - "Key": "key-peer-50", - "IP": "100.64.0.51", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer51", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-51": { - "ID": "peer-51", - "Key": "key-peer-51", - "IP": "100.64.0.52", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer52", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-52": { - "ID": "peer-52", - "Key": "key-peer-52", - "IP": "100.64.0.53", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer53", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-53": { - "ID": "peer-53", - "Key": "key-peer-53", - "IP": "100.64.0.54", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer54", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-54": { - "ID": "peer-54", - "Key": "key-peer-54", - "IP": "100.64.0.55", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer55", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-55": { - "ID": "peer-55", - "Key": "key-peer-55", - "IP": "100.64.0.56", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer56", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-56": { - "ID": "peer-56", - "Key": "key-peer-56", - "IP": "100.64.0.57", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer57", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-57": { - "ID": "peer-57", - "Key": "key-peer-57", - "IP": "100.64.0.58", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer58", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345191+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-58": { - "ID": "peer-58", - "Key": "key-peer-58", - "IP": "100.64.0.59", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer59", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345191+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-59": { - "ID": "peer-59", - "Key": "key-peer-59", - "IP": "100.64.0.60", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer60", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-6": { - "ID": "peer-6", - "Key": "key-peer-6", - "IP": "100.64.0.7", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer7", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345178+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-60": { - "ID": "peer-60", - "Key": "key-peer-60", - "IP": "100.64.0.61", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer61", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-61": { - "ID": "peer-61", - "Key": "key-peer-61", - "IP": "100.64.0.62", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer62", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-62": { - "ID": "peer-62", - "Key": "key-peer-62", - "IP": "100.64.0.63", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer63", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-63": { - "ID": "peer-63", - "Key": "key-peer-63", - "IP": "100.64.0.64", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer64", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-64": { - "ID": "peer-64", - "Key": "key-peer-64", - "IP": "100.64.0.65", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer65", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-65": { - "ID": "peer-65", - "Key": "key-peer-65", - "IP": "100.64.0.66", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer66", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-66": { - "ID": "peer-66", - "Key": "key-peer-66", - "IP": "100.64.0.67", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer67", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-67": { - "ID": "peer-67", - "Key": "key-peer-67", - "IP": "100.64.0.68", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer68", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-68": { - "ID": "peer-68", - "Key": "key-peer-68", - "IP": "100.64.0.69", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer69", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-69": { - "ID": "peer-69", - "Key": "key-peer-69", - "IP": "100.64.0.70", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer70", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-7": { - "ID": "peer-7", - "Key": "key-peer-7", - "IP": "100.64.0.8", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer8", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345178+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-70": { - "ID": "peer-70", - "Key": "key-peer-70", - "IP": "100.64.0.71", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer71", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-71": { - "ID": "peer-71", - "Key": "key-peer-71", - "IP": "100.64.0.72", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer72", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-72": { - "ID": "peer-72", - "Key": "key-peer-72", - "IP": "100.64.0.73", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer73", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-73": { - "ID": "peer-73", - "Key": "key-peer-73", - "IP": "100.64.0.74", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer74", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-74": { - "ID": "peer-74", - "Key": "key-peer-74", - "IP": "100.64.0.75", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer75", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-75": { - "ID": "peer-75", - "Key": "key-peer-75", - "IP": "100.64.0.76", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer76", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-76": { - "ID": "peer-76", - "Key": "key-peer-76", - "IP": "100.64.0.77", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer77", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-77": { - "ID": "peer-77", - "Key": "key-peer-77", - "IP": "100.64.0.78", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer78", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-78": { - "ID": "peer-78", - "Key": "key-peer-78", - "IP": "100.64.0.79", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer79", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-79": { - "ID": "peer-79", - "Key": "key-peer-79", - "IP": "100.64.0.80", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer80", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-8": { - "ID": "peer-8", - "Key": "key-peer-8", - "IP": "100.64.0.9", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer9", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345178+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-80": { - "ID": "peer-80", - "Key": "key-peer-80", - "IP": "100.64.0.81", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer81", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-81": { - "ID": "peer-81", - "Key": "key-peer-81", - "IP": "100.64.0.82", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer82", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-82": { - "ID": "peer-82", - "Key": "key-peer-82", - "IP": "100.64.0.83", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer83", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345196+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-83": { - "ID": "peer-83", - "Key": "key-peer-83", - "IP": "100.64.0.84", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer84", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345197+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-84": { - "ID": "peer-84", - "Key": "key-peer-84", - "IP": "100.64.0.85", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer85", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345197+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-85": { - "ID": "peer-85", - "Key": "key-peer-85", - "IP": "100.64.0.86", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer86", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345197+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-86": { - "ID": "peer-86", - "Key": "key-peer-86", - "IP": "100.64.0.87", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer87", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-87": { - "ID": "peer-87", - "Key": "key-peer-87", - "IP": "100.64.0.88", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer88", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-88": { - "ID": "peer-88", - "Key": "key-peer-88", - "IP": "100.64.0.89", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer89", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-89": { - "ID": "peer-89", - "Key": "key-peer-89", - "IP": "100.64.0.90", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer90", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-9": { - "ID": "peer-9", - "Key": "key-peer-9", - "IP": "100.64.0.10", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer10", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-90": { - "ID": "peer-90", - "Key": "key-peer-90", - "IP": "100.64.0.91", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer91", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-91": { - "ID": "peer-91", - "Key": "key-peer-91", - "IP": "100.64.0.92", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer92", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-92": { - "ID": "peer-92", - "Key": "key-peer-92", - "IP": "100.64.0.93", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer93", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-93": { - "ID": "peer-93", - "Key": "key-peer-93", - "IP": "100.64.0.94", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer94", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-94": { - "ID": "peer-94", - "Key": "key-peer-94", - "IP": "100.64.0.95", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer95", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-95": { - "ID": "peer-95", - "Key": "key-peer-95", - "IP": "100.64.0.96", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer96", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-96": { - "ID": "peer-96", - "Key": "key-peer-96", - "IP": "100.64.0.97", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer97", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-97": { - "ID": "peer-97", - "Key": "key-peer-97", - "IP": "100.64.0.98", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer98", - "Status": { - "LastSeen": "2026-02-24T17:47:26.3452+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - "peer-98": { - "ID": "peer-98", - "Key": "key-peer-98", - "IP": "100.64.0.99", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer99", - "Status": { - "LastSeen": "2026-02-24T17:47:26.3452+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": true, - "InactivityExpirationEnabled": false, - "LastLogin": "2026-02-24T15:47:26.3452+01:00", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - } - }, - "Groups": { - "group-all": { - "ID": "group-all", - "Name": "All", - "Issued": "", - "Peers": [ - "peer-0", - "peer-1", - "peer-2", - "peer-3", - "peer-4", - "peer-5", - "peer-6", - "peer-7", - "peer-8", - "peer-9", - "peer-10", - "peer-11", - "peer-12", - "peer-13", - "peer-14", - "peer-15", - "peer-16", - "peer-17", - "peer-18", - "peer-19", - "peer-20", - "peer-21", - "peer-22", - "peer-23", - "peer-24", - "peer-25", - "peer-26", - "peer-27", - "peer-28", - "peer-29", - "peer-30", - "peer-31", - "peer-32", - "peer-33", - "peer-34", - "peer-35", - "peer-36", - "peer-37", - "peer-38", - "peer-39", - "peer-40", - "peer-41", - "peer-42", - "peer-43", - "peer-44", - "peer-45", - "peer-46", - "peer-47", - "peer-48", - "peer-49", - "peer-50", - "peer-51", - "peer-52", - "peer-53", - "peer-54", - "peer-55", - "peer-56", - "peer-57", - "peer-58", - "peer-59", - "peer-60", - "peer-61", - "peer-62", - "peer-63", - "peer-64", - "peer-65", - "peer-66", - "peer-67", - "peer-68", - "peer-69", - "peer-70", - "peer-71", - "peer-72", - "peer-73", - "peer-74", - "peer-75", - "peer-76", - "peer-77", - "peer-78", - "peer-79", - "peer-80", - "peer-81", - "peer-82", - "peer-83", - "peer-84", - "peer-85", - "peer-86", - "peer-87", - "peer-88", - "peer-89", - "peer-90", - "peer-91", - "peer-92", - "peer-93", - "peer-94", - "peer-95", - "peer-96", - "peer-97", - "peer-98" - ], - "GroupPeers": [], - "Resources": [], - "IntegrationReference": { - "ID": 0, - "IntegrationType": "" - } - }, - "group-dev": { - "ID": "group-dev", - "Name": "Developers", - "Issued": "", - "Peers": [ - "peer-0", - "peer-1", - "peer-2", - "peer-3", - "peer-4", - "peer-5", - "peer-6", - "peer-7", - "peer-8", - "peer-9", - "peer-10", - "peer-11", - "peer-12", - "peer-13", - "peer-14", - "peer-15", - "peer-16", - "peer-17", - "peer-18", - "peer-19", - "peer-20", - "peer-21", - "peer-22", - "peer-23", - "peer-24", - "peer-25", - "peer-26", - "peer-27", - "peer-28", - "peer-29", - "peer-30", - "peer-31", - "peer-32", - "peer-33", - "peer-34", - "peer-35", - "peer-36", - "peer-37", - "peer-38", - "peer-39", - "peer-40", - "peer-41", - "peer-42", - "peer-43", - "peer-44", - "peer-45", - "peer-46", - "peer-47", - "peer-48", - "peer-49" - ], - "GroupPeers": null, - "Resources": null, - "IntegrationReference": { - "ID": 0, - "IntegrationType": "" - } - }, - "group-ops": { - "ID": "group-ops", - "Name": "Operations", - "Issued": "", - "Peers": [ - "peer-50", - "peer-51", - "peer-52", - "peer-53", - "peer-54", - "peer-55", - "peer-56", - "peer-57", - "peer-58", - "peer-59", - "peer-60", - "peer-61", - "peer-62", - "peer-63", - "peer-64", - "peer-65", - "peer-66", - "peer-67", - "peer-68", - "peer-69", - "peer-70", - "peer-71", - "peer-72", - "peer-73", - "peer-74", - "peer-75", - "peer-76", - "peer-77", - "peer-78", - "peer-79", - "peer-80", - "peer-81", - "peer-82", - "peer-83", - "peer-84", - "peer-85", - "peer-86", - "peer-87", - "peer-88", - "peer-89", - "peer-90", - "peer-91", - "peer-92", - "peer-93", - "peer-94", - "peer-95", - "peer-96", - "peer-97", - "peer-98" - ], - "GroupPeers": [], - "Resources": [], - "IntegrationReference": { - "ID": 0, - "IntegrationType": "" - } - } - }, - "Policies": [ - { - "ID": "policy-all", - "Name": "Default-Allow", - "Description": "", - "Enabled": true, - "Rules": [ - { - "ID": "policy-all", - "Name": "Allow All", - "Description": "", - "Enabled": true, - "Action": "accept", - "Destinations": [ - "group-all" - ], - "DestinationResource": { - "ID": "", - "Type": "" - }, - "Sources": [ - "group-all" - ], - "SourceResource": { - "ID": "", - "Type": "" - }, - "Bidirectional": true, - "Protocol": "all", - "Ports": null, - "PortRanges": null, - "AuthorizedGroups": null, - "AuthorizedUser": "" - } - ], - "SourcePostureChecks": null - }, - { - "ID": "policy-dev-ops", - "Name": "Dev to Ops Web Access", - "Description": "", - "Enabled": true, - "Rules": [ - { - "ID": "policy-dev-ops", - "Name": "Dev -\u003e Ops (HTTP Range)", - "Description": "", - "Enabled": true, - "Action": "accept", - "Destinations": [ - "group-ops" - ], - "DestinationResource": { - "ID": "", - "Type": "" - }, - "Sources": [ - "group-dev" - ], - "SourceResource": { - "ID": "", - "Type": "" - }, - "Bidirectional": false, - "Protocol": "tcp", - "Ports": null, - "PortRanges": [ - { - "Start": 8080, - "End": 8090 - } - ], - "AuthorizedGroups": null, - "AuthorizedUser": "" - } - ], - "SourcePostureChecks": null - }, - { - "ID": "policy-drop", - "Name": "Drop DB traffic", - "Description": "", - "Enabled": true, - "Rules": [ - { - "ID": "policy-drop", - "Name": "Drop DB", - "Description": "", - "Enabled": true, - "Action": "drop", - "Destinations": [ - "group-ops" - ], - "DestinationResource": { - "ID": "", - "Type": "" - }, - "Sources": [ - "group-dev" - ], - "SourceResource": { - "ID": "", - "Type": "" - }, - "Bidirectional": true, - "Protocol": "tcp", - "Ports": [ - "5432" - ], - "PortRanges": null, - "AuthorizedGroups": null, - "AuthorizedUser": "" - } - ], - "SourcePostureChecks": null - }, - { - "ID": "policy-posture", - "Name": "Posture Check for DB Resource", - "Description": "", - "Enabled": true, - "Rules": [ - { - "ID": "policy-posture", - "Name": "Allow DB Access", - "Description": "", - "Enabled": true, - "Action": "accept", - "Destinations": null, - "DestinationResource": { - "ID": "res-database", - "Type": "" - }, - "Sources": [ - "group-ops" - ], - "SourceResource": { - "ID": "", - "Type": "" - }, - "Bidirectional": true, - "Protocol": "all", - "Ports": null, - "PortRanges": null, - "AuthorizedGroups": null, - "AuthorizedUser": "" - } - ], - "SourcePostureChecks": [ - "posture-check-ver" - ] - } - ], - "Routes": [ - { - "ID": "route-ha-1", - "AccountID": "account-comparison-test", - "Network": "10.10.0.0/16", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "HA Route 1", - "Peer": "key-peer-80", - "PeerID": "peer-80", - "PeerGroups": [ - "group-all" - ], - "NetworkType": 0, - "Masquerade": false, - "Metric": 1000, - "Enabled": true, - "Groups": [ - "group-all" - ], - "AccessControlGroups": [ - "group-all" - ], - "SkipAutoApply": false - }, - { - "ID": "route-ha-2", - "AccountID": "account-comparison-test", - "Network": "10.10.0.0/16", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "HA Route 2", - "Peer": "key-peer-90", - "PeerID": "peer-90", - "PeerGroups": [ - "group-dev", - "group-ops" - ], - "NetworkType": 0, - "Masquerade": false, - "Metric": 900, - "Enabled": true, - "Groups": [ - "group-dev", - "group-ops" - ], - "AccessControlGroups": [ - "group-all" - ], - "SkipAutoApply": false - }, - { - "ID": "route-main", - "AccountID": "account-comparison-test", - "Network": "192.168.10.0/24", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "Route to internal resource", - "Peer": "key-peer-75", - "PeerID": "peer-75", - "PeerGroups": [ - "group-dev", - "group-ops" - ], - "NetworkType": 0, - "Masquerade": false, - "Metric": 0, - "Enabled": true, - "Groups": [ - "group-dev", - "group-ops" - ], - "AccessControlGroups": [ - "group-dev" - ], - "SkipAutoApply": false - } - ], - "NameServerGroups": [ - { - "ID": "ns-group-main", - "AccountID": "", - "Name": "Main NS", - "Description": "", - "NameServers": [ - { - "IP": "8.8.8.8", - "NSType": 1, - "Port": 53 - } - ], - "Groups": [ - "group-dev" - ], - "Primary": false, - "Domains": null, - "Enabled": true, - "SearchDomainsEnabled": false - } - ], - "AllDNSRecords": null, - "AccountZones": null, - "ResourcePoliciesMap": { - "res-database": [ - { - "ID": "policy-posture", - "Name": "Posture Check for DB Resource", - "Description": "", - "Enabled": true, - "Rules": [ - { - "ID": "policy-posture", - "Name": "Allow DB Access", - "Description": "", - "Enabled": true, - "Action": "accept", - "Destinations": null, - "DestinationResource": { - "ID": "res-database", - "Type": "" - }, - "Sources": [ - "group-ops" - ], - "SourceResource": { - "ID": "", - "Type": "" - }, - "Bidirectional": true, - "Protocol": "all", - "Ports": null, - "PortRanges": null, - "AuthorizedGroups": null, - "AuthorizedUser": "" - } - ], - "SourcePostureChecks": [ - "posture-check-ver" - ] - } - ] - }, - "RoutersMap": { - "net-database": { - "peer-95": { - "ID": "router-database", - "NetworkID": "net-database", - "AccountID": "account-comparison-test", - "Peer": "peer-95", - "PeerGroups": null, - "Masquerade": false, - "Metric": 0, - "Enabled": true - } - } - }, - "NetworkResources": [ - { - "ID": "res-database", - "NetworkID": "net-database", - "AccountID": "account-comparison-test", - "Name": "", - "Description": "", - "Type": "", - "Address": "db.netbird.cloud", - "GroupIDs": null, - "Domain": "", - "Prefix": "", - "Enabled": true - } - ], - "GroupIDToUserIDs": null, - "AllowedUserIDs": null, - "PostureFailedPeers": { - "posture-check-ver": { - "peer-51": {}, - "peer-53": {}, - "peer-55": {}, - "peer-57": {}, - "peer-59": {}, - "peer-61": {}, - "peer-63": {}, - "peer-65": {}, - "peer-67": {}, - "peer-69": {}, - "peer-71": {}, - "peer-73": {}, - "peer-75": {}, - "peer-77": {}, - "peer-79": {}, - "peer-81": {}, - "peer-83": {}, - "peer-85": {}, - "peer-87": {}, - "peer-89": {}, - "peer-91": {}, - "peer-93": {}, - "peer-95": {}, - "peer-97": {} - } - }, - "RouterPeers": { - "peer-95": { - "ID": "peer-95", - "Key": "key-peer-95", - "IP": "100.64.0.96", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer96", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - } - } -} \ No newline at end of file diff --git a/management/server/types/testdata/comparison/components_networkmap.json b/management/server/types/testdata/comparison/components_networkmap.json deleted file mode 100644 index 2c1b5cd8226..00000000000 --- a/management/server/types/testdata/comparison/components_networkmap.json +++ /dev/null @@ -1,10368 +0,0 @@ -{ - "Peers": [ - { - "ID": "peer-0", - "Key": "key-peer-0", - "IP": "100.64.0.1", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer1", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345176+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-1", - "Key": "key-peer-1", - "IP": "100.64.0.2", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer2", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345176+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-10", - "Key": "key-peer-10", - "IP": "100.64.0.11", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer11", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-11", - "Key": "key-peer-11", - "IP": "100.64.0.12", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer12", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-12", - "Key": "key-peer-12", - "IP": "100.64.0.13", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer13", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-13", - "Key": "key-peer-13", - "IP": "100.64.0.14", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer14", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-14", - "Key": "key-peer-14", - "IP": "100.64.0.15", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer15", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34518+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-15", - "Key": "key-peer-15", - "IP": "100.64.0.16", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer16", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34518+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-16", - "Key": "key-peer-16", - "IP": "100.64.0.17", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer17", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34518+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-17", - "Key": "key-peer-17", - "IP": "100.64.0.18", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer18", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-18", - "Key": "key-peer-18", - "IP": "100.64.0.19", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer19", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-19", - "Key": "key-peer-19", - "IP": "100.64.0.20", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer20", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-2", - "Key": "key-peer-2", - "IP": "100.64.0.3", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer3", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-20", - "Key": "key-peer-20", - "IP": "100.64.0.21", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer21", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-21", - "Key": "key-peer-21", - "IP": "100.64.0.22", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer22", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-22", - "Key": "key-peer-22", - "IP": "100.64.0.23", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer23", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-23", - "Key": "key-peer-23", - "IP": "100.64.0.24", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer24", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-24", - "Key": "key-peer-24", - "IP": "100.64.0.25", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer25", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-25", - "Key": "key-peer-25", - "IP": "100.64.0.26", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer26", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-26", - "Key": "key-peer-26", - "IP": "100.64.0.27", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer27", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-27", - "Key": "key-peer-27", - "IP": "100.64.0.28", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer28", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345184+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-28", - "Key": "key-peer-28", - "IP": "100.64.0.29", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer29", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345184+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-29", - "Key": "key-peer-29", - "IP": "100.64.0.30", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer30", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345184+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-3", - "Key": "key-peer-3", - "IP": "100.64.0.4", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer4", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-30", - "Key": "key-peer-30", - "IP": "100.64.0.31", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer31", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-31", - "Key": "key-peer-31", - "IP": "100.64.0.32", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer32", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-32", - "Key": "key-peer-32", - "IP": "100.64.0.33", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer33", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-33", - "Key": "key-peer-33", - "IP": "100.64.0.34", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer34", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-34", - "Key": "key-peer-34", - "IP": "100.64.0.35", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer35", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-35", - "Key": "key-peer-35", - "IP": "100.64.0.36", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer36", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-36", - "Key": "key-peer-36", - "IP": "100.64.0.37", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer37", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-37", - "Key": "key-peer-37", - "IP": "100.64.0.38", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer38", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-38", - "Key": "key-peer-38", - "IP": "100.64.0.39", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer39", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-39", - "Key": "key-peer-39", - "IP": "100.64.0.40", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer40", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-4", - "Key": "key-peer-4", - "IP": "100.64.0.5", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer5", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-40", - "Key": "key-peer-40", - "IP": "100.64.0.41", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer41", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-41", - "Key": "key-peer-41", - "IP": "100.64.0.42", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer42", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345187+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-42", - "Key": "key-peer-42", - "IP": "100.64.0.43", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer43", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345187+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-43", - "Key": "key-peer-43", - "IP": "100.64.0.44", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer44", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-44", - "Key": "key-peer-44", - "IP": "100.64.0.45", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer45", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-45", - "Key": "key-peer-45", - "IP": "100.64.0.46", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer46", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-46", - "Key": "key-peer-46", - "IP": "100.64.0.47", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer47", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-47", - "Key": "key-peer-47", - "IP": "100.64.0.48", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer48", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-48", - "Key": "key-peer-48", - "IP": "100.64.0.49", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer49", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-49", - "Key": "key-peer-49", - "IP": "100.64.0.50", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer50", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-5", - "Key": "key-peer-5", - "IP": "100.64.0.6", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer6", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-50", - "Key": "key-peer-50", - "IP": "100.64.0.51", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer51", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-51", - "Key": "key-peer-51", - "IP": "100.64.0.52", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer52", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-52", - "Key": "key-peer-52", - "IP": "100.64.0.53", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer53", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-53", - "Key": "key-peer-53", - "IP": "100.64.0.54", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer54", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-54", - "Key": "key-peer-54", - "IP": "100.64.0.55", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer55", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-55", - "Key": "key-peer-55", - "IP": "100.64.0.56", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer56", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-56", - "Key": "key-peer-56", - "IP": "100.64.0.57", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer57", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-57", - "Key": "key-peer-57", - "IP": "100.64.0.58", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer58", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345191+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-58", - "Key": "key-peer-58", - "IP": "100.64.0.59", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer59", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345191+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-59", - "Key": "key-peer-59", - "IP": "100.64.0.60", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer60", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-6", - "Key": "key-peer-6", - "IP": "100.64.0.7", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer7", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345178+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-61", - "Key": "key-peer-61", - "IP": "100.64.0.62", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer62", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-62", - "Key": "key-peer-62", - "IP": "100.64.0.63", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer63", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-63", - "Key": "key-peer-63", - "IP": "100.64.0.64", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer64", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-64", - "Key": "key-peer-64", - "IP": "100.64.0.65", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer65", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-65", - "Key": "key-peer-65", - "IP": "100.64.0.66", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer66", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-66", - "Key": "key-peer-66", - "IP": "100.64.0.67", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer67", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-67", - "Key": "key-peer-67", - "IP": "100.64.0.68", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer68", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-68", - "Key": "key-peer-68", - "IP": "100.64.0.69", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer69", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-69", - "Key": "key-peer-69", - "IP": "100.64.0.70", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer70", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-7", - "Key": "key-peer-7", - "IP": "100.64.0.8", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer8", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345178+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-70", - "Key": "key-peer-70", - "IP": "100.64.0.71", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer71", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-71", - "Key": "key-peer-71", - "IP": "100.64.0.72", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer72", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-72", - "Key": "key-peer-72", - "IP": "100.64.0.73", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer73", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-73", - "Key": "key-peer-73", - "IP": "100.64.0.74", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer74", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-74", - "Key": "key-peer-74", - "IP": "100.64.0.75", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer75", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-75", - "Key": "key-peer-75", - "IP": "100.64.0.76", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer76", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-76", - "Key": "key-peer-76", - "IP": "100.64.0.77", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer77", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-77", - "Key": "key-peer-77", - "IP": "100.64.0.78", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer78", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-78", - "Key": "key-peer-78", - "IP": "100.64.0.79", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer79", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-79", - "Key": "key-peer-79", - "IP": "100.64.0.80", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer80", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-8", - "Key": "key-peer-8", - "IP": "100.64.0.9", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer9", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345178+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-80", - "Key": "key-peer-80", - "IP": "100.64.0.81", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer81", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-81", - "Key": "key-peer-81", - "IP": "100.64.0.82", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer82", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-82", - "Key": "key-peer-82", - "IP": "100.64.0.83", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer83", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345196+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-83", - "Key": "key-peer-83", - "IP": "100.64.0.84", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer84", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345197+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-84", - "Key": "key-peer-84", - "IP": "100.64.0.85", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer85", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345197+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-85", - "Key": "key-peer-85", - "IP": "100.64.0.86", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer86", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345197+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-86", - "Key": "key-peer-86", - "IP": "100.64.0.87", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer87", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-87", - "Key": "key-peer-87", - "IP": "100.64.0.88", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer88", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-88", - "Key": "key-peer-88", - "IP": "100.64.0.89", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer89", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-89", - "Key": "key-peer-89", - "IP": "100.64.0.90", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer90", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-9", - "Key": "key-peer-9", - "IP": "100.64.0.10", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer10", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-90", - "Key": "key-peer-90", - "IP": "100.64.0.91", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer91", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-91", - "Key": "key-peer-91", - "IP": "100.64.0.92", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer92", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-92", - "Key": "key-peer-92", - "IP": "100.64.0.93", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer93", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-93", - "Key": "key-peer-93", - "IP": "100.64.0.94", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer94", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-94", - "Key": "key-peer-94", - "IP": "100.64.0.95", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer95", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-95", - "Key": "key-peer-95", - "IP": "100.64.0.96", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer96", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-96", - "Key": "key-peer-96", - "IP": "100.64.0.97", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer97", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-97", - "Key": "key-peer-97", - "IP": "100.64.0.98", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer98", - "Status": { - "LastSeen": "2026-02-24T17:47:26.3452+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - } - ], - "Network": { - "id": "net-comparison-test", - "Net": { - "IP": "100.64.0.0", - "Mask": "//8AAA==" - }, - "Dns": "", - "Serial": 1 - }, - "Routes": [ - { - "ID": "res-database:peer-95", - "AccountID": "account-comparison-test", - "Network": "", - "Domains": null, - "KeepRoute": true, - "NetID": "", - "Description": "", - "Peer": "key-peer-95", - "PeerID": "peer-95", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 0, - "Enabled": true, - "Groups": null, - "AccessControlGroups": null, - "SkipAutoApply": false - }, - { - "ID": "route-ha-1:peer-60", - "AccountID": "account-comparison-test", - "Network": "10.10.0.0/16", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "HA Route 1", - "Peer": "key-peer-60", - "PeerID": "peer-80", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 1000, - "Enabled": true, - "Groups": [ - "group-all" - ], - "AccessControlGroups": [ - "group-all" - ], - "SkipAutoApply": false - }, - { - "ID": "route-ha-2:peer-60", - "AccountID": "account-comparison-test", - "Network": "10.10.0.0/16", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "HA Route 2", - "Peer": "key-peer-60", - "PeerID": "peer-90", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 900, - "Enabled": true, - "Groups": [ - "group-dev", - "group-ops" - ], - "AccessControlGroups": [ - "group-all" - ], - "SkipAutoApply": false - }, - { - "ID": "route-main:peer-60", - "AccountID": "account-comparison-test", - "Network": "192.168.10.0/24", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "Route to internal resource", - "Peer": "key-peer-60", - "PeerID": "peer-75", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 0, - "Enabled": true, - "Groups": [ - "group-dev", - "group-ops" - ], - "AccessControlGroups": [ - "group-dev" - ], - "SkipAutoApply": false - } - ], - "DNSConfig": { - "ServiceEnable": false, - "NameServerGroups": null, - "CustomZones": null, - "ForwarderPort": 0 - }, - "OfflinePeers": [ - { - "ID": "peer-98", - "Key": "key-peer-98", - "IP": "100.64.0.99", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer99", - "Status": { - "LastSeen": "2026-02-24T17:47:26.3452+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": true, - "InactivityExpirationEnabled": false, - "LastLogin": "2026-02-24T15:47:26.3452+01:00", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - } - ], - "FirewallRules": [ - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.1", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.1", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.1", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.1", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.10", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.10", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.10", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.10", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.11", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.11", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.11", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.11", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.12", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.12", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.12", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.12", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.13", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.13", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.13", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.13", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.14", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.14", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.14", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.14", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.15", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.15", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.15", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.15", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.16", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.16", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.16", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.16", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.17", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.17", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.17", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.17", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.18", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.18", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.18", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.18", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.19", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.19", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.19", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.19", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.2", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.2", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.2", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.2", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.20", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.20", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.20", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.20", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.21", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.21", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.21", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.21", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.22", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.22", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.22", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.22", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.23", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.23", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.23", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.23", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.24", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.24", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.24", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.24", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.25", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.25", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.25", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.25", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.26", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.26", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.26", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.26", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.27", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.27", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.27", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.27", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.28", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.28", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.28", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.28", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.29", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.29", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.29", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.29", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.3", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.3", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.3", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.3", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.30", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.30", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.30", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.30", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.31", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.31", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.31", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.31", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.32", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.32", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.32", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.32", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.33", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.33", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.33", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.33", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.34", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.34", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.34", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.34", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.35", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.35", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.35", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.35", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.36", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.36", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.36", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.36", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.37", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.37", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.37", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.37", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.38", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.38", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.38", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.38", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.39", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.39", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.39", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.39", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.4", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.4", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.4", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.4", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.40", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.40", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.40", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.40", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.41", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.41", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.41", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.41", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.42", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.42", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.42", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.42", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.43", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.43", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.43", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.43", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.44", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.44", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.44", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.44", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.45", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.45", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.45", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.45", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.46", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.46", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.46", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.46", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.47", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.47", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.47", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.47", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.48", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.48", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.48", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.48", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.49", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.49", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.49", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.49", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.5", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.5", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.5", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.5", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.50", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.50", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.50", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.50", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.51", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.51", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.52", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.52", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.53", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.53", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.54", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.54", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.55", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.55", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.56", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.56", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.57", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.57", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.58", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.58", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.59", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.59", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.6", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.6", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.6", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.6", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.60", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.60", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.62", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.62", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.63", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.63", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.64", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.64", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.65", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.65", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.66", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.66", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.67", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.67", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.68", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.68", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.69", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.69", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.7", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.7", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.7", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.7", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.70", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.70", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.71", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.71", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.72", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.72", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.73", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.73", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.74", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.74", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.75", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.75", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.76", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.76", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.77", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.77", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.78", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.78", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.79", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.79", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.8", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.8", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.8", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.8", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.80", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.80", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.81", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.81", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.82", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.82", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.83", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.83", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.84", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.84", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.85", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.85", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.86", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.86", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.87", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.87", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.88", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.88", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.89", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.89", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.9", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.9", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.9", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.9", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.90", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.90", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.91", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.91", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.92", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.92", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.93", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.93", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.94", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.94", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.95", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.95", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.96", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.96", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.97", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.97", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.98", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.98", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.99", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.99", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - } - ], - "RoutesFirewallRules": [ - { - "PolicyID": "", - "RouteID": "route-ha-1:peer-60", - "SourceRanges": [ - "100.64.0.1/32", - "100.64.0.10/32", - "100.64.0.11/32", - "100.64.0.12/32", - "100.64.0.13/32", - "100.64.0.14/32", - "100.64.0.15/32", - "100.64.0.16/32", - "100.64.0.17/32", - "100.64.0.18/32", - "100.64.0.19/32", - "100.64.0.2/32", - "100.64.0.20/32", - "100.64.0.21/32", - "100.64.0.22/32", - "100.64.0.23/32", - "100.64.0.24/32", - "100.64.0.25/32", - "100.64.0.26/32", - "100.64.0.27/32", - "100.64.0.28/32", - "100.64.0.29/32", - "100.64.0.3/32", - "100.64.0.30/32", - "100.64.0.31/32", - "100.64.0.32/32", - "100.64.0.33/32", - "100.64.0.34/32", - "100.64.0.35/32", - "100.64.0.36/32", - "100.64.0.37/32", - "100.64.0.38/32", - "100.64.0.39/32", - "100.64.0.4/32", - "100.64.0.40/32", - "100.64.0.41/32", - "100.64.0.42/32", - "100.64.0.43/32", - "100.64.0.44/32", - "100.64.0.45/32", - "100.64.0.46/32", - "100.64.0.47/32", - "100.64.0.48/32", - "100.64.0.49/32", - "100.64.0.5/32", - "100.64.0.50/32", - "100.64.0.51/32", - "100.64.0.52/32", - "100.64.0.53/32", - "100.64.0.54/32", - "100.64.0.55/32", - "100.64.0.56/32", - "100.64.0.57/32", - "100.64.0.58/32", - "100.64.0.59/32", - "100.64.0.6/32", - "100.64.0.60/32", - "100.64.0.62/32", - "100.64.0.63/32", - "100.64.0.64/32", - "100.64.0.65/32", - "100.64.0.66/32", - "100.64.0.67/32", - "100.64.0.68/32", - "100.64.0.69/32", - "100.64.0.7/32", - "100.64.0.70/32", - "100.64.0.71/32", - "100.64.0.72/32", - "100.64.0.73/32", - "100.64.0.74/32", - "100.64.0.75/32", - "100.64.0.76/32", - "100.64.0.77/32", - "100.64.0.78/32", - "100.64.0.79/32", - "100.64.0.8/32", - "100.64.0.80/32", - "100.64.0.81/32", - "100.64.0.82/32", - "100.64.0.83/32", - "100.64.0.84/32", - "100.64.0.85/32", - "100.64.0.86/32", - "100.64.0.87/32", - "100.64.0.88/32", - "100.64.0.89/32", - "100.64.0.9/32", - "100.64.0.90/32", - "100.64.0.91/32", - "100.64.0.92/32", - "100.64.0.93/32", - "100.64.0.94/32", - "100.64.0.95/32", - "100.64.0.96/32", - "100.64.0.97/32", - "100.64.0.98/32", - "100.64.0.99/32" - ], - "Action": "accept", - "Destination": "10.10.0.0/16", - "Protocol": "all", - "Port": 0, - "PortRange": { - "Start": 0, - "End": 0 - }, - "Domains": null, - "IsDynamic": false - }, - { - "PolicyID": "", - "RouteID": "route-ha-2:peer-60", - "SourceRanges": [ - "100.64.0.1/32", - "100.64.0.10/32", - "100.64.0.11/32", - "100.64.0.12/32", - "100.64.0.13/32", - "100.64.0.14/32", - "100.64.0.15/32", - "100.64.0.16/32", - "100.64.0.17/32", - "100.64.0.18/32", - "100.64.0.19/32", - "100.64.0.2/32", - "100.64.0.20/32", - "100.64.0.21/32", - "100.64.0.22/32", - "100.64.0.23/32", - "100.64.0.24/32", - "100.64.0.25/32", - "100.64.0.26/32", - "100.64.0.27/32", - "100.64.0.28/32", - "100.64.0.29/32", - "100.64.0.3/32", - "100.64.0.30/32", - "100.64.0.31/32", - "100.64.0.32/32", - "100.64.0.33/32", - "100.64.0.34/32", - "100.64.0.35/32", - "100.64.0.36/32", - "100.64.0.37/32", - "100.64.0.38/32", - "100.64.0.39/32", - "100.64.0.4/32", - "100.64.0.40/32", - "100.64.0.41/32", - "100.64.0.42/32", - "100.64.0.43/32", - "100.64.0.44/32", - "100.64.0.45/32", - "100.64.0.46/32", - "100.64.0.47/32", - "100.64.0.48/32", - "100.64.0.49/32", - "100.64.0.5/32", - "100.64.0.50/32", - "100.64.0.51/32", - "100.64.0.52/32", - "100.64.0.53/32", - "100.64.0.54/32", - "100.64.0.55/32", - "100.64.0.56/32", - "100.64.0.57/32", - "100.64.0.58/32", - "100.64.0.59/32", - "100.64.0.6/32", - "100.64.0.60/32", - "100.64.0.62/32", - "100.64.0.63/32", - "100.64.0.64/32", - "100.64.0.65/32", - "100.64.0.66/32", - "100.64.0.67/32", - "100.64.0.68/32", - "100.64.0.69/32", - "100.64.0.7/32", - "100.64.0.70/32", - "100.64.0.71/32", - "100.64.0.72/32", - "100.64.0.73/32", - "100.64.0.74/32", - "100.64.0.75/32", - "100.64.0.76/32", - "100.64.0.77/32", - "100.64.0.78/32", - "100.64.0.79/32", - "100.64.0.8/32", - "100.64.0.80/32", - "100.64.0.81/32", - "100.64.0.82/32", - "100.64.0.83/32", - "100.64.0.84/32", - "100.64.0.85/32", - "100.64.0.86/32", - "100.64.0.87/32", - "100.64.0.88/32", - "100.64.0.89/32", - "100.64.0.9/32", - "100.64.0.90/32", - "100.64.0.91/32", - "100.64.0.92/32", - "100.64.0.93/32", - "100.64.0.94/32", - "100.64.0.95/32", - "100.64.0.96/32", - "100.64.0.97/32", - "100.64.0.98/32", - "100.64.0.99/32" - ], - "Action": "accept", - "Destination": "10.10.0.0/16", - "Protocol": "all", - "Port": 0, - "PortRange": { - "Start": 0, - "End": 0 - }, - "Domains": null, - "IsDynamic": false - } - ], - "ForwardingRules": null, - "AuthorizedUsers": {}, - "EnableSSH": false -} \ No newline at end of file diff --git a/management/server/types/testdata/comparison/legacy_networkmap.json b/management/server/types/testdata/comparison/legacy_networkmap.json deleted file mode 100644 index 2c1b5cd8226..00000000000 --- a/management/server/types/testdata/comparison/legacy_networkmap.json +++ /dev/null @@ -1,10368 +0,0 @@ -{ - "Peers": [ - { - "ID": "peer-0", - "Key": "key-peer-0", - "IP": "100.64.0.1", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer1", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345176+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-1", - "Key": "key-peer-1", - "IP": "100.64.0.2", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer2", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345176+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-10", - "Key": "key-peer-10", - "IP": "100.64.0.11", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer11", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-11", - "Key": "key-peer-11", - "IP": "100.64.0.12", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer12", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-12", - "Key": "key-peer-12", - "IP": "100.64.0.13", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer13", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-13", - "Key": "key-peer-13", - "IP": "100.64.0.14", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer14", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-14", - "Key": "key-peer-14", - "IP": "100.64.0.15", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer15", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34518+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-15", - "Key": "key-peer-15", - "IP": "100.64.0.16", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer16", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34518+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-16", - "Key": "key-peer-16", - "IP": "100.64.0.17", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer17", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34518+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-17", - "Key": "key-peer-17", - "IP": "100.64.0.18", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer18", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-18", - "Key": "key-peer-18", - "IP": "100.64.0.19", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer19", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-19", - "Key": "key-peer-19", - "IP": "100.64.0.20", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer20", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-2", - "Key": "key-peer-2", - "IP": "100.64.0.3", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer3", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-20", - "Key": "key-peer-20", - "IP": "100.64.0.21", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer21", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345182+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-21", - "Key": "key-peer-21", - "IP": "100.64.0.22", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer22", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-22", - "Key": "key-peer-22", - "IP": "100.64.0.23", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer23", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-23", - "Key": "key-peer-23", - "IP": "100.64.0.24", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer24", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-24", - "Key": "key-peer-24", - "IP": "100.64.0.25", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer25", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-25", - "Key": "key-peer-25", - "IP": "100.64.0.26", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer26", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-26", - "Key": "key-peer-26", - "IP": "100.64.0.27", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer27", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345183+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-27", - "Key": "key-peer-27", - "IP": "100.64.0.28", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer28", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345184+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-28", - "Key": "key-peer-28", - "IP": "100.64.0.29", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer29", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345184+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-29", - "Key": "key-peer-29", - "IP": "100.64.0.30", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer30", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345184+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-3", - "Key": "key-peer-3", - "IP": "100.64.0.4", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer4", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-30", - "Key": "key-peer-30", - "IP": "100.64.0.31", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer31", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-31", - "Key": "key-peer-31", - "IP": "100.64.0.32", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer32", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-32", - "Key": "key-peer-32", - "IP": "100.64.0.33", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer33", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-33", - "Key": "key-peer-33", - "IP": "100.64.0.34", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer34", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-34", - "Key": "key-peer-34", - "IP": "100.64.0.35", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer35", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345185+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-35", - "Key": "key-peer-35", - "IP": "100.64.0.36", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer36", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-36", - "Key": "key-peer-36", - "IP": "100.64.0.37", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer37", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-37", - "Key": "key-peer-37", - "IP": "100.64.0.38", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer38", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-38", - "Key": "key-peer-38", - "IP": "100.64.0.39", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer39", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-39", - "Key": "key-peer-39", - "IP": "100.64.0.40", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer40", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-4", - "Key": "key-peer-4", - "IP": "100.64.0.5", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer5", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-40", - "Key": "key-peer-40", - "IP": "100.64.0.41", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer41", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345186+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-41", - "Key": "key-peer-41", - "IP": "100.64.0.42", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer42", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345187+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-42", - "Key": "key-peer-42", - "IP": "100.64.0.43", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer43", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345187+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-43", - "Key": "key-peer-43", - "IP": "100.64.0.44", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer44", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-44", - "Key": "key-peer-44", - "IP": "100.64.0.45", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer45", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-45", - "Key": "key-peer-45", - "IP": "100.64.0.46", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer46", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-46", - "Key": "key-peer-46", - "IP": "100.64.0.47", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer47", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-47", - "Key": "key-peer-47", - "IP": "100.64.0.48", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer48", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345188+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-48", - "Key": "key-peer-48", - "IP": "100.64.0.49", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer49", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-49", - "Key": "key-peer-49", - "IP": "100.64.0.50", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer50", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-5", - "Key": "key-peer-5", - "IP": "100.64.0.6", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer6", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345177+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-50", - "Key": "key-peer-50", - "IP": "100.64.0.51", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer51", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-51", - "Key": "key-peer-51", - "IP": "100.64.0.52", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer52", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-52", - "Key": "key-peer-52", - "IP": "100.64.0.53", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer53", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345189+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-53", - "Key": "key-peer-53", - "IP": "100.64.0.54", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer54", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-54", - "Key": "key-peer-54", - "IP": "100.64.0.55", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer55", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-55", - "Key": "key-peer-55", - "IP": "100.64.0.56", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer56", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-56", - "Key": "key-peer-56", - "IP": "100.64.0.57", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer57", - "Status": { - "LastSeen": "2026-02-24T17:47:26.34519+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-57", - "Key": "key-peer-57", - "IP": "100.64.0.58", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer58", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345191+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-58", - "Key": "key-peer-58", - "IP": "100.64.0.59", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer59", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345191+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-59", - "Key": "key-peer-59", - "IP": "100.64.0.60", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer60", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-6", - "Key": "key-peer-6", - "IP": "100.64.0.7", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer7", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345178+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-61", - "Key": "key-peer-61", - "IP": "100.64.0.62", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer62", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-62", - "Key": "key-peer-62", - "IP": "100.64.0.63", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer63", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-63", - "Key": "key-peer-63", - "IP": "100.64.0.64", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer64", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-64", - "Key": "key-peer-64", - "IP": "100.64.0.65", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer65", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345192+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-65", - "Key": "key-peer-65", - "IP": "100.64.0.66", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer66", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-66", - "Key": "key-peer-66", - "IP": "100.64.0.67", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer67", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-67", - "Key": "key-peer-67", - "IP": "100.64.0.68", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer68", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-68", - "Key": "key-peer-68", - "IP": "100.64.0.69", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer69", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-69", - "Key": "key-peer-69", - "IP": "100.64.0.70", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer70", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345193+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-7", - "Key": "key-peer-7", - "IP": "100.64.0.8", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer8", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345178+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-70", - "Key": "key-peer-70", - "IP": "100.64.0.71", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer71", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-71", - "Key": "key-peer-71", - "IP": "100.64.0.72", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer72", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-72", - "Key": "key-peer-72", - "IP": "100.64.0.73", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer73", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-73", - "Key": "key-peer-73", - "IP": "100.64.0.74", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer74", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-74", - "Key": "key-peer-74", - "IP": "100.64.0.75", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer75", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-75", - "Key": "key-peer-75", - "IP": "100.64.0.76", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer76", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345194+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-76", - "Key": "key-peer-76", - "IP": "100.64.0.77", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer77", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-77", - "Key": "key-peer-77", - "IP": "100.64.0.78", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer78", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-78", - "Key": "key-peer-78", - "IP": "100.64.0.79", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer79", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-79", - "Key": "key-peer-79", - "IP": "100.64.0.80", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer80", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-8", - "Key": "key-peer-8", - "IP": "100.64.0.9", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer9", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345178+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-80", - "Key": "key-peer-80", - "IP": "100.64.0.81", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer81", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-81", - "Key": "key-peer-81", - "IP": "100.64.0.82", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer82", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345195+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-82", - "Key": "key-peer-82", - "IP": "100.64.0.83", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer83", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345196+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-83", - "Key": "key-peer-83", - "IP": "100.64.0.84", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer84", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345197+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-84", - "Key": "key-peer-84", - "IP": "100.64.0.85", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer85", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345197+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-85", - "Key": "key-peer-85", - "IP": "100.64.0.86", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer86", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345197+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-86", - "Key": "key-peer-86", - "IP": "100.64.0.87", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer87", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-87", - "Key": "key-peer-87", - "IP": "100.64.0.88", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer88", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-88", - "Key": "key-peer-88", - "IP": "100.64.0.89", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer89", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-89", - "Key": "key-peer-89", - "IP": "100.64.0.90", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer90", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-9", - "Key": "key-peer-9", - "IP": "100.64.0.10", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer10", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345179+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-90", - "Key": "key-peer-90", - "IP": "100.64.0.91", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer91", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-91", - "Key": "key-peer-91", - "IP": "100.64.0.92", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer92", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345198+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-92", - "Key": "key-peer-92", - "IP": "100.64.0.93", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer93", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-93", - "Key": "key-peer-93", - "IP": "100.64.0.94", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer94", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-94", - "Key": "key-peer-94", - "IP": "100.64.0.95", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer95", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-95", - "Key": "key-peer-95", - "IP": "100.64.0.96", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer96", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-96", - "Key": "key-peer-96", - "IP": "100.64.0.97", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer97", - "Status": { - "LastSeen": "2026-02-24T17:47:26.345199+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-97", - "Key": "key-peer-97", - "IP": "100.64.0.98", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer98", - "Status": { - "LastSeen": "2026-02-24T17:47:26.3452+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": null, - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - } - ], - "Network": { - "id": "net-comparison-test", - "Net": { - "IP": "100.64.0.0", - "Mask": "//8AAA==" - }, - "Dns": "", - "Serial": 1 - }, - "Routes": [ - { - "ID": "res-database:peer-95", - "AccountID": "account-comparison-test", - "Network": "", - "Domains": null, - "KeepRoute": true, - "NetID": "", - "Description": "", - "Peer": "key-peer-95", - "PeerID": "peer-95", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 0, - "Enabled": true, - "Groups": null, - "AccessControlGroups": null, - "SkipAutoApply": false - }, - { - "ID": "route-ha-1:peer-60", - "AccountID": "account-comparison-test", - "Network": "10.10.0.0/16", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "HA Route 1", - "Peer": "key-peer-60", - "PeerID": "peer-80", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 1000, - "Enabled": true, - "Groups": [ - "group-all" - ], - "AccessControlGroups": [ - "group-all" - ], - "SkipAutoApply": false - }, - { - "ID": "route-ha-2:peer-60", - "AccountID": "account-comparison-test", - "Network": "10.10.0.0/16", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "HA Route 2", - "Peer": "key-peer-60", - "PeerID": "peer-90", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 900, - "Enabled": true, - "Groups": [ - "group-dev", - "group-ops" - ], - "AccessControlGroups": [ - "group-all" - ], - "SkipAutoApply": false - }, - { - "ID": "route-main:peer-60", - "AccountID": "account-comparison-test", - "Network": "192.168.10.0/24", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "Route to internal resource", - "Peer": "key-peer-60", - "PeerID": "peer-75", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 0, - "Enabled": true, - "Groups": [ - "group-dev", - "group-ops" - ], - "AccessControlGroups": [ - "group-dev" - ], - "SkipAutoApply": false - } - ], - "DNSConfig": { - "ServiceEnable": false, - "NameServerGroups": null, - "CustomZones": null, - "ForwarderPort": 0 - }, - "OfflinePeers": [ - { - "ID": "peer-98", - "Key": "key-peer-98", - "IP": "100.64.0.99", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer99", - "Status": { - "LastSeen": "2026-02-24T17:47:26.3452+01:00", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": true, - "InactivityExpirationEnabled": false, - "LastLogin": "2026-02-24T15:47:26.3452+01:00", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - } - ], - "FirewallRules": [ - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.1", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.1", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.1", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.1", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.10", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.10", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.10", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.10", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.11", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.11", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.11", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.11", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.12", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.12", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.12", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.12", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.13", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.13", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.13", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.13", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.14", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.14", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.14", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.14", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.15", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.15", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.15", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.15", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.16", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.16", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.16", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.16", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.17", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.17", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.17", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.17", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.18", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.18", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.18", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.18", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.19", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.19", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.19", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.19", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.2", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.2", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.2", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.2", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.20", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.20", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.20", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.20", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.21", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.21", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.21", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.21", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.22", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.22", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.22", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.22", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.23", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.23", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.23", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.23", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.24", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.24", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.24", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.24", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.25", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.25", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.25", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.25", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.26", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.26", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.26", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.26", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.27", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.27", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.27", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.27", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.28", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.28", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.28", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.28", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.29", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.29", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.29", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.29", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.3", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.3", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.3", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.3", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.30", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.30", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.30", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.30", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.31", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.31", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.31", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.31", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.32", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.32", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.32", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.32", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.33", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.33", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.33", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.33", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.34", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.34", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.34", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.34", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.35", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.35", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.35", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.35", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.36", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.36", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.36", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.36", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.37", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.37", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.37", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.37", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.38", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.38", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.38", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.38", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.39", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.39", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.39", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.39", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.4", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.4", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.4", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.4", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.40", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.40", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.40", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.40", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.41", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.41", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.41", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.41", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.42", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.42", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.42", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.42", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.43", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.43", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.43", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.43", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.44", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.44", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.44", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.44", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.45", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.45", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.45", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.45", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.46", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.46", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.46", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.46", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.47", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.47", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.47", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.47", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.48", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.48", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.48", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.48", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.49", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.49", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.49", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.49", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.5", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.5", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.5", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.5", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.50", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.50", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.50", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.50", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.51", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.51", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.52", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.52", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.53", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.53", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.54", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.54", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.55", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.55", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.56", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.56", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.57", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.57", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.58", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.58", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.59", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.59", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.6", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.6", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.6", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.6", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.60", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.60", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.62", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.62", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.63", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.63", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.64", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.64", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.65", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.65", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.66", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.66", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.67", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.67", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.68", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.68", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.69", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.69", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.7", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.7", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.7", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.7", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.70", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.70", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.71", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.71", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.72", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.72", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.73", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.73", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.74", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.74", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.75", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.75", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.76", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.76", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.77", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.77", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.78", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.78", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.79", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.79", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.8", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.8", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.8", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.8", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.80", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.80", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.81", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.81", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.82", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.82", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.83", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.83", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.84", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.84", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.85", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.85", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.86", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.86", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.87", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.87", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.88", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.88", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.89", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.89", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.9", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.9", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.9", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.9", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.90", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.90", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.91", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.91", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.92", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.92", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.93", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.93", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.94", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.94", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.95", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.95", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.96", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.96", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.97", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.97", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.98", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.98", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.99", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.99", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - } - ], - "RoutesFirewallRules": [ - { - "PolicyID": "", - "RouteID": "route-ha-1:peer-60", - "SourceRanges": [ - "100.64.0.1/32", - "100.64.0.10/32", - "100.64.0.11/32", - "100.64.0.12/32", - "100.64.0.13/32", - "100.64.0.14/32", - "100.64.0.15/32", - "100.64.0.16/32", - "100.64.0.17/32", - "100.64.0.18/32", - "100.64.0.19/32", - "100.64.0.2/32", - "100.64.0.20/32", - "100.64.0.21/32", - "100.64.0.22/32", - "100.64.0.23/32", - "100.64.0.24/32", - "100.64.0.25/32", - "100.64.0.26/32", - "100.64.0.27/32", - "100.64.0.28/32", - "100.64.0.29/32", - "100.64.0.3/32", - "100.64.0.30/32", - "100.64.0.31/32", - "100.64.0.32/32", - "100.64.0.33/32", - "100.64.0.34/32", - "100.64.0.35/32", - "100.64.0.36/32", - "100.64.0.37/32", - "100.64.0.38/32", - "100.64.0.39/32", - "100.64.0.4/32", - "100.64.0.40/32", - "100.64.0.41/32", - "100.64.0.42/32", - "100.64.0.43/32", - "100.64.0.44/32", - "100.64.0.45/32", - "100.64.0.46/32", - "100.64.0.47/32", - "100.64.0.48/32", - "100.64.0.49/32", - "100.64.0.5/32", - "100.64.0.50/32", - "100.64.0.51/32", - "100.64.0.52/32", - "100.64.0.53/32", - "100.64.0.54/32", - "100.64.0.55/32", - "100.64.0.56/32", - "100.64.0.57/32", - "100.64.0.58/32", - "100.64.0.59/32", - "100.64.0.6/32", - "100.64.0.60/32", - "100.64.0.62/32", - "100.64.0.63/32", - "100.64.0.64/32", - "100.64.0.65/32", - "100.64.0.66/32", - "100.64.0.67/32", - "100.64.0.68/32", - "100.64.0.69/32", - "100.64.0.7/32", - "100.64.0.70/32", - "100.64.0.71/32", - "100.64.0.72/32", - "100.64.0.73/32", - "100.64.0.74/32", - "100.64.0.75/32", - "100.64.0.76/32", - "100.64.0.77/32", - "100.64.0.78/32", - "100.64.0.79/32", - "100.64.0.8/32", - "100.64.0.80/32", - "100.64.0.81/32", - "100.64.0.82/32", - "100.64.0.83/32", - "100.64.0.84/32", - "100.64.0.85/32", - "100.64.0.86/32", - "100.64.0.87/32", - "100.64.0.88/32", - "100.64.0.89/32", - "100.64.0.9/32", - "100.64.0.90/32", - "100.64.0.91/32", - "100.64.0.92/32", - "100.64.0.93/32", - "100.64.0.94/32", - "100.64.0.95/32", - "100.64.0.96/32", - "100.64.0.97/32", - "100.64.0.98/32", - "100.64.0.99/32" - ], - "Action": "accept", - "Destination": "10.10.0.0/16", - "Protocol": "all", - "Port": 0, - "PortRange": { - "Start": 0, - "End": 0 - }, - "Domains": null, - "IsDynamic": false - }, - { - "PolicyID": "", - "RouteID": "route-ha-2:peer-60", - "SourceRanges": [ - "100.64.0.1/32", - "100.64.0.10/32", - "100.64.0.11/32", - "100.64.0.12/32", - "100.64.0.13/32", - "100.64.0.14/32", - "100.64.0.15/32", - "100.64.0.16/32", - "100.64.0.17/32", - "100.64.0.18/32", - "100.64.0.19/32", - "100.64.0.2/32", - "100.64.0.20/32", - "100.64.0.21/32", - "100.64.0.22/32", - "100.64.0.23/32", - "100.64.0.24/32", - "100.64.0.25/32", - "100.64.0.26/32", - "100.64.0.27/32", - "100.64.0.28/32", - "100.64.0.29/32", - "100.64.0.3/32", - "100.64.0.30/32", - "100.64.0.31/32", - "100.64.0.32/32", - "100.64.0.33/32", - "100.64.0.34/32", - "100.64.0.35/32", - "100.64.0.36/32", - "100.64.0.37/32", - "100.64.0.38/32", - "100.64.0.39/32", - "100.64.0.4/32", - "100.64.0.40/32", - "100.64.0.41/32", - "100.64.0.42/32", - "100.64.0.43/32", - "100.64.0.44/32", - "100.64.0.45/32", - "100.64.0.46/32", - "100.64.0.47/32", - "100.64.0.48/32", - "100.64.0.49/32", - "100.64.0.5/32", - "100.64.0.50/32", - "100.64.0.51/32", - "100.64.0.52/32", - "100.64.0.53/32", - "100.64.0.54/32", - "100.64.0.55/32", - "100.64.0.56/32", - "100.64.0.57/32", - "100.64.0.58/32", - "100.64.0.59/32", - "100.64.0.6/32", - "100.64.0.60/32", - "100.64.0.62/32", - "100.64.0.63/32", - "100.64.0.64/32", - "100.64.0.65/32", - "100.64.0.66/32", - "100.64.0.67/32", - "100.64.0.68/32", - "100.64.0.69/32", - "100.64.0.7/32", - "100.64.0.70/32", - "100.64.0.71/32", - "100.64.0.72/32", - "100.64.0.73/32", - "100.64.0.74/32", - "100.64.0.75/32", - "100.64.0.76/32", - "100.64.0.77/32", - "100.64.0.78/32", - "100.64.0.79/32", - "100.64.0.8/32", - "100.64.0.80/32", - "100.64.0.81/32", - "100.64.0.82/32", - "100.64.0.83/32", - "100.64.0.84/32", - "100.64.0.85/32", - "100.64.0.86/32", - "100.64.0.87/32", - "100.64.0.88/32", - "100.64.0.89/32", - "100.64.0.9/32", - "100.64.0.90/32", - "100.64.0.91/32", - "100.64.0.92/32", - "100.64.0.93/32", - "100.64.0.94/32", - "100.64.0.95/32", - "100.64.0.96/32", - "100.64.0.97/32", - "100.64.0.98/32", - "100.64.0.99/32" - ], - "Action": "accept", - "Destination": "10.10.0.0/16", - "Protocol": "all", - "Port": 0, - "PortRange": { - "Start": 0, - "End": 0 - }, - "Domains": null, - "IsDynamic": false - } - ], - "ForwardingRules": null, - "AuthorizedUsers": {}, - "EnableSSH": false -} \ No newline at end of file From 50c1a608a742b8bb895fbc0c13c04d6ed00b3221 Mon Sep 17 00:00:00 2001 From: mlsmaycon Date: Tue, 31 Mar 2026 13:27:41 +0200 Subject: [PATCH 5/5] remove obsolete network map test data file --- ...ap_golden_new_with_onpeeradded_router.json | 11093 ---------------- 1 file changed, 11093 deletions(-) delete mode 100644 management/server/types/testdata/networkmap_golden_new_with_onpeeradded_router.json diff --git a/management/server/types/testdata/networkmap_golden_new_with_onpeeradded_router.json b/management/server/types/testdata/networkmap_golden_new_with_onpeeradded_router.json deleted file mode 100644 index 8e322a5b2e6..00000000000 --- a/management/server/types/testdata/networkmap_golden_new_with_onpeeradded_router.json +++ /dev/null @@ -1,11093 +0,0 @@ -{ - "Peers": [ - { - "ID": "peer-0", - "Key": "key-peer-0", - "IP": "100.64.0.1", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer1", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-1", - "Key": "key-peer-1", - "IP": "100.64.0.2", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer2", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-10", - "Key": "key-peer-10", - "IP": "100.64.0.11", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer11", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-11", - "Key": "key-peer-11", - "IP": "100.64.0.12", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer12", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-12", - "Key": "key-peer-12", - "IP": "100.64.0.13", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer13", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-13", - "Key": "key-peer-13", - "IP": "100.64.0.14", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer14", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-14", - "Key": "key-peer-14", - "IP": "100.64.0.15", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer15", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-15", - "Key": "key-peer-15", - "IP": "100.64.0.16", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer16", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-16", - "Key": "key-peer-16", - "IP": "100.64.0.17", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer17", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-17", - "Key": "key-peer-17", - "IP": "100.64.0.18", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer18", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-18", - "Key": "key-peer-18", - "IP": "100.64.0.19", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer19", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-19", - "Key": "key-peer-19", - "IP": "100.64.0.20", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer20", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-2", - "Key": "key-peer-2", - "IP": "100.64.0.3", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer3", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-20", - "Key": "key-peer-20", - "IP": "100.64.0.21", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer21", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-21", - "Key": "key-peer-21", - "IP": "100.64.0.22", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer22", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-22", - "Key": "key-peer-22", - "IP": "100.64.0.23", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer23", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-23", - "Key": "key-peer-23", - "IP": "100.64.0.24", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer24", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-24", - "Key": "key-peer-24", - "IP": "100.64.0.25", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer25", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-25", - "Key": "key-peer-25", - "IP": "100.64.0.26", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer26", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-26", - "Key": "key-peer-26", - "IP": "100.64.0.27", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer27", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-27", - "Key": "key-peer-27", - "IP": "100.64.0.28", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer28", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-28", - "Key": "key-peer-28", - "IP": "100.64.0.29", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer29", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-29", - "Key": "key-peer-29", - "IP": "100.64.0.30", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer30", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-3", - "Key": "key-peer-3", - "IP": "100.64.0.4", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer4", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-30", - "Key": "key-peer-30", - "IP": "100.64.0.31", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer31", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-31", - "Key": "key-peer-31", - "IP": "100.64.0.32", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer32", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-32", - "Key": "key-peer-32", - "IP": "100.64.0.33", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer33", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-33", - "Key": "key-peer-33", - "IP": "100.64.0.34", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer34", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-34", - "Key": "key-peer-34", - "IP": "100.64.0.35", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer35", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-35", - "Key": "key-peer-35", - "IP": "100.64.0.36", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer36", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-36", - "Key": "key-peer-36", - "IP": "100.64.0.37", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer37", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-37", - "Key": "key-peer-37", - "IP": "100.64.0.38", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer38", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-38", - "Key": "key-peer-38", - "IP": "100.64.0.39", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer39", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-39", - "Key": "key-peer-39", - "IP": "100.64.0.40", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer40", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-4", - "Key": "key-peer-4", - "IP": "100.64.0.5", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer5", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-40", - "Key": "key-peer-40", - "IP": "100.64.0.41", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer41", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-41", - "Key": "key-peer-41", - "IP": "100.64.0.42", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer42", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-42", - "Key": "key-peer-42", - "IP": "100.64.0.43", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer43", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-43", - "Key": "key-peer-43", - "IP": "100.64.0.44", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer44", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-44", - "Key": "key-peer-44", - "IP": "100.64.0.45", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer45", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-45", - "Key": "key-peer-45", - "IP": "100.64.0.46", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer46", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-46", - "Key": "key-peer-46", - "IP": "100.64.0.47", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer47", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-47", - "Key": "key-peer-47", - "IP": "100.64.0.48", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer48", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-48", - "Key": "key-peer-48", - "IP": "100.64.0.49", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer49", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-49", - "Key": "key-peer-49", - "IP": "100.64.0.50", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer50", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-5", - "Key": "key-peer-5", - "IP": "100.64.0.6", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer6", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-50", - "Key": "key-peer-50", - "IP": "100.64.0.51", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer51", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-51", - "Key": "key-peer-51", - "IP": "100.64.0.52", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer52", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-52", - "Key": "key-peer-52", - "IP": "100.64.0.53", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer53", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-53", - "Key": "key-peer-53", - "IP": "100.64.0.54", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer54", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-54", - "Key": "key-peer-54", - "IP": "100.64.0.55", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer55", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-55", - "Key": "key-peer-55", - "IP": "100.64.0.56", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer56", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-56", - "Key": "key-peer-56", - "IP": "100.64.0.57", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer57", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-57", - "Key": "key-peer-57", - "IP": "100.64.0.58", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer58", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-58", - "Key": "key-peer-58", - "IP": "100.64.0.59", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer59", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-59", - "Key": "key-peer-59", - "IP": "100.64.0.60", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer60", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-6", - "Key": "key-peer-6", - "IP": "100.64.0.7", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer7", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-61", - "Key": "key-peer-61", - "IP": "100.64.0.62", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer62", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-62", - "Key": "key-peer-62", - "IP": "100.64.0.63", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer63", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-63", - "Key": "key-peer-63", - "IP": "100.64.0.64", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer64", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-64", - "Key": "key-peer-64", - "IP": "100.64.0.65", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer65", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-65", - "Key": "key-peer-65", - "IP": "100.64.0.66", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer66", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-66", - "Key": "key-peer-66", - "IP": "100.64.0.67", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer67", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-67", - "Key": "key-peer-67", - "IP": "100.64.0.68", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer68", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-68", - "Key": "key-peer-68", - "IP": "100.64.0.69", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer69", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-69", - "Key": "key-peer-69", - "IP": "100.64.0.70", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer70", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-7", - "Key": "key-peer-7", - "IP": "100.64.0.8", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer8", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-70", - "Key": "key-peer-70", - "IP": "100.64.0.71", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer71", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-71", - "Key": "key-peer-71", - "IP": "100.64.0.72", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer72", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-72", - "Key": "key-peer-72", - "IP": "100.64.0.73", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer73", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-73", - "Key": "key-peer-73", - "IP": "100.64.0.74", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer74", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-74", - "Key": "key-peer-74", - "IP": "100.64.0.75", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer75", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-75", - "Key": "key-peer-75", - "IP": "100.64.0.76", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer76", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-76", - "Key": "key-peer-76", - "IP": "100.64.0.77", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer77", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-77", - "Key": "key-peer-77", - "IP": "100.64.0.78", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer78", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-78", - "Key": "key-peer-78", - "IP": "100.64.0.79", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer79", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-79", - "Key": "key-peer-79", - "IP": "100.64.0.80", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer80", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-8", - "Key": "key-peer-8", - "IP": "100.64.0.9", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer9", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-80", - "Key": "key-peer-80", - "IP": "100.64.0.81", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer81", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-81", - "Key": "key-peer-81", - "IP": "100.64.0.82", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer82", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-82", - "Key": "key-peer-82", - "IP": "100.64.0.83", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer83", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-83", - "Key": "key-peer-83", - "IP": "100.64.0.84", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer84", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-84", - "Key": "key-peer-84", - "IP": "100.64.0.85", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer85", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-85", - "Key": "key-peer-85", - "IP": "100.64.0.86", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer86", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-86", - "Key": "key-peer-86", - "IP": "100.64.0.87", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer87", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-87", - "Key": "key-peer-87", - "IP": "100.64.0.88", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer88", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-88", - "Key": "key-peer-88", - "IP": "100.64.0.89", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer89", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-89", - "Key": "key-peer-89", - "IP": "100.64.0.90", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer90", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-9", - "Key": "key-peer-9", - "IP": "100.64.0.10", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer10", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-90", - "Key": "key-peer-90", - "IP": "100.64.0.91", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer91", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-91", - "Key": "key-peer-91", - "IP": "100.64.0.92", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer92", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-92", - "Key": "key-peer-92", - "IP": "100.64.0.93", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer93", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-93", - "Key": "key-peer-93", - "IP": "100.64.0.94", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer94", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-94", - "Key": "key-peer-94", - "IP": "100.64.0.95", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer95", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-95", - "Key": "key-peer-95", - "IP": "100.64.0.96", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer96", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-96", - "Key": "key-peer-96", - "IP": "100.64.0.97", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer97", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-97", - "Key": "key-peer-97", - "IP": "100.64.0.98", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.25.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer98", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - }, - { - "ID": "peer-new-router-102", - "Key": "key-peer-new-router-102", - "IP": "100.64.1.2", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.26.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "newrouter102", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": false, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - } - ], - "Network": { - "id": "net-golden-test", - "Net": { - "IP": "100.64.0.0", - "Mask": "//8AAA==" - }, - "Dns": "", - "Serial": 2 - }, - "Routes": [ - { - "ID": "res-database:peer-95", - "AccountID": "account-golden-test", - "Network": "", - "Domains": null, - "KeepRoute": true, - "NetID": "", - "Description": "", - "Peer": "key-peer-95", - "PeerID": "peer-95", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 0, - "Enabled": true, - "Groups": null, - "AccessControlGroups": null, - "SkipAutoApply": false - }, - { - "ID": "route-ha-1:peer-60", - "AccountID": "account-golden-test", - "Network": "10.10.0.0/16", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "HA Route 1", - "Peer": "key-peer-60", - "PeerID": "peer-80", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 1000, - "Enabled": true, - "Groups": [ - "group-all" - ], - "AccessControlGroups": [ - "group-all" - ], - "SkipAutoApply": false - }, - { - "ID": "route-ha-2:peer-60", - "AccountID": "account-golden-test", - "Network": "10.10.0.0/16", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "HA Route 2", - "Peer": "key-peer-60", - "PeerID": "peer-90", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 900, - "Enabled": true, - "Groups": [ - "group-dev", - "group-ops" - ], - "AccessControlGroups": [ - "group-all" - ], - "SkipAutoApply": false - }, - { - "ID": "route-main:peer-60", - "AccountID": "account-golden-test", - "Network": "192.168.10.0/24", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "Route to internal resource", - "Peer": "key-peer-60", - "PeerID": "peer-75", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 0, - "Enabled": true, - "Groups": [ - "group-dev", - "group-ops" - ], - "AccessControlGroups": [ - "group-dev" - ], - "SkipAutoApply": false - }, - { - "ID": "route-new-router:peer-60", - "AccountID": "account-golden-test", - "Network": "172.16.0.0/24", - "Domains": null, - "KeepRoute": false, - "NetID": "", - "Description": "Route from new router", - "Peer": "key-peer-60", - "PeerID": "peer-new-router-102", - "PeerGroups": null, - "NetworkType": 0, - "Masquerade": false, - "Metric": 0, - "Enabled": true, - "Groups": [ - "group-dev", - "group-ops" - ], - "AccessControlGroups": [ - "group-dev" - ], - "SkipAutoApply": false - } - ], - "DNSConfig": { - "ServiceEnable": false, - "NameServerGroups": null, - "CustomZones": null, - "ForwarderPort": 0 - }, - "OfflinePeers": [ - { - "ID": "peer-98", - "Key": "key-peer-98", - "IP": "100.64.0.99", - "Meta": { - "Hostname": "", - "GoOS": "linux", - "Kernel": "", - "Core": "", - "Platform": "", - "OS": "", - "OSVersion": "", - "WtVersion": "0.40.0", - "UIVersion": "", - "KernelVersion": "", - "NetworkAddresses": null, - "SystemSerialNumber": "", - "SystemProductName": "", - "SystemManufacturer": "", - "Environment": { - "Cloud": "", - "Platform": "" - }, - "Flags": { - "RosenpassEnabled": false, - "RosenpassPermissive": false, - "ServerSSHAllowed": false, - "DisableClientRoutes": false, - "DisableServerRoutes": false, - "DisableDNS": false, - "DisableFirewall": false, - "BlockLANAccess": false, - "BlockInbound": false, - "LazyConnectionEnabled": false - }, - "Files": null - }, - "ProxyMeta": { - "Embedded": false, - "Cluster": "" - }, - "Name": "", - "DNSLabel": "peer99", - "Status": { - "LastSeen": "0001-01-01T00:00:00Z", - "Connected": true, - "LoginExpired": false, - "RequiresApproval": false - }, - "UserID": "user-admin", - "SSHKey": "", - "SSHEnabled": false, - "LoginExpirationEnabled": true, - "InactivityExpirationEnabled": false, - "LastLogin": "0001-01-01T00:00:00Z", - "CreatedAt": "0001-01-01T00:00:00Z", - "Ephemeral": false, - "Location": { - "ConnectionIP": "", - "CountryCode": "", - "CityName": "", - "GeoNameID": 0 - }, - "ExtraDNSLabels": null, - "AllowExtraDNSLabels": false - } - ], - "FirewallRules": [ - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.1", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.1", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.1", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.1", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.1", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.10", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.10", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.10", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.10", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.10", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.11", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.11", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.11", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.11", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.11", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.12", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.12", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.12", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.12", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.12", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.13", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.13", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.13", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.13", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.13", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.14", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.14", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.14", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.14", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.14", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.15", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.15", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.15", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.15", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.15", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.16", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.16", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.16", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.16", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.16", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.17", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.17", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.17", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.17", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.17", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.18", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.18", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.18", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.18", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.18", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.19", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.19", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.19", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.19", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.19", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.2", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.2", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.2", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.2", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.2", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.20", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.20", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.20", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.20", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.20", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.21", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.21", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.21", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.21", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.21", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.22", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.22", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.22", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.22", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.22", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.23", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.23", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.23", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.23", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.23", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.24", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.24", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.24", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.24", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.24", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.25", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.25", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.25", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.25", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.25", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.26", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.26", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.26", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.26", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.26", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.27", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.27", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.27", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.27", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.27", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.28", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.28", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.28", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.28", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.28", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.29", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.29", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.29", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.29", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.29", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.3", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.3", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.3", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.3", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.3", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.30", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.30", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.30", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.30", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.30", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.31", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.31", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.31", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.31", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.31", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.32", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.32", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.32", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.32", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.32", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.33", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.33", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.33", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.33", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.33", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.34", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.34", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.34", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.34", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.34", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.35", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.35", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.35", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.35", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.35", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.36", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.36", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.36", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.36", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.36", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.37", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.37", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.37", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.37", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.37", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.38", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.38", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.38", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.38", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.38", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.39", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.39", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.39", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.39", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.39", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.4", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.4", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.4", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.4", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.4", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.40", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.40", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.40", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.40", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.40", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.41", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.41", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.41", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.41", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.41", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.42", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.42", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.42", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.42", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.42", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.43", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.43", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.43", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.43", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.43", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.44", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.44", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.44", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.44", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.44", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.45", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.45", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.45", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.45", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.45", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.46", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.46", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.46", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.46", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.46", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.47", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.47", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.47", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.47", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.47", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.48", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.48", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.48", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.48", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.48", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.49", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.49", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.49", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.49", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.49", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.5", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.5", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.5", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.5", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.5", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.50", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.50", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.50", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.50", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.50", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.51", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.51", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.52", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.52", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.53", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.53", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.54", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.54", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.55", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.55", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.56", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.56", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.57", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.57", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.58", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.58", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.59", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.59", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.6", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.6", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.6", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.6", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.6", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.60", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.60", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.62", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.62", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.63", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.63", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.64", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.64", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.65", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.65", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.66", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.66", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.67", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.67", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.68", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.68", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.69", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.69", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.7", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.7", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.7", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.7", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.7", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.70", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.70", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.71", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.71", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.72", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.72", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.73", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.73", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.74", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.74", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.75", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.75", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.76", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.76", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.77", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.77", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.78", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.78", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.79", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.79", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.8", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.8", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.8", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.8", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.8", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.80", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.80", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.81", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.81", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.82", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.82", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.83", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.83", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.84", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.84", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.85", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.85", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.86", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.86", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.87", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.87", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.88", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.88", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.89", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.89", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.9", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.9", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-ssh", - "PeerIP": "100.64.0.9", - "Direction": 0, - "Action": "accept", - "Protocol": "tcp", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.9", - "Direction": 0, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-drop", - "PeerIP": "100.64.0.9", - "Direction": 1, - "Action": "drop", - "Protocol": "tcp", - "Port": "5432", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.90", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.90", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.91", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.91", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.92", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.92", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.93", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.93", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.94", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.94", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.95", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.95", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.96", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.96", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.97", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.97", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.98", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.98", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.99", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.0.99", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.1.2", - "Direction": 0, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - }, - { - "PolicyID": "policy-all", - "PeerIP": "100.64.1.2", - "Direction": 1, - "Action": "accept", - "Protocol": "all", - "Port": "", - "PortRange": { - "Start": 0, - "End": 0 - } - } - ], - "RoutesFirewallRules": [ - { - "PolicyID": "", - "RouteID": "route-ha-1:peer-60", - "SourceRanges": [ - "100.64.0.1/32", - "100.64.0.10/32", - "100.64.0.11/32", - "100.64.0.12/32", - "100.64.0.13/32", - "100.64.0.14/32", - "100.64.0.15/32", - "100.64.0.16/32", - "100.64.0.17/32", - "100.64.0.18/32", - "100.64.0.19/32", - "100.64.0.2/32", - "100.64.0.20/32", - "100.64.0.21/32", - "100.64.0.22/32", - "100.64.0.23/32", - "100.64.0.24/32", - "100.64.0.25/32", - "100.64.0.26/32", - "100.64.0.27/32", - "100.64.0.28/32", - "100.64.0.29/32", - "100.64.0.3/32", - "100.64.0.30/32", - "100.64.0.31/32", - "100.64.0.32/32", - "100.64.0.33/32", - "100.64.0.34/32", - "100.64.0.35/32", - "100.64.0.36/32", - "100.64.0.37/32", - "100.64.0.38/32", - "100.64.0.39/32", - "100.64.0.4/32", - "100.64.0.40/32", - "100.64.0.41/32", - "100.64.0.42/32", - "100.64.0.43/32", - "100.64.0.44/32", - "100.64.0.45/32", - "100.64.0.46/32", - "100.64.0.47/32", - "100.64.0.48/32", - "100.64.0.49/32", - "100.64.0.5/32", - "100.64.0.50/32", - "100.64.0.51/32", - "100.64.0.52/32", - "100.64.0.53/32", - "100.64.0.54/32", - "100.64.0.55/32", - "100.64.0.56/32", - "100.64.0.57/32", - "100.64.0.58/32", - "100.64.0.59/32", - "100.64.0.6/32", - "100.64.0.60/32", - "100.64.0.62/32", - "100.64.0.63/32", - "100.64.0.64/32", - "100.64.0.65/32", - "100.64.0.66/32", - "100.64.0.67/32", - "100.64.0.68/32", - "100.64.0.69/32", - "100.64.0.7/32", - "100.64.0.70/32", - "100.64.0.71/32", - "100.64.0.72/32", - "100.64.0.73/32", - "100.64.0.74/32", - "100.64.0.75/32", - "100.64.0.76/32", - "100.64.0.77/32", - "100.64.0.78/32", - "100.64.0.79/32", - "100.64.0.8/32", - "100.64.0.80/32", - "100.64.0.81/32", - "100.64.0.82/32", - "100.64.0.83/32", - "100.64.0.84/32", - "100.64.0.85/32", - "100.64.0.86/32", - "100.64.0.87/32", - "100.64.0.88/32", - "100.64.0.89/32", - "100.64.0.9/32", - "100.64.0.90/32", - "100.64.0.91/32", - "100.64.0.92/32", - "100.64.0.93/32", - "100.64.0.94/32", - "100.64.0.95/32", - "100.64.0.96/32", - "100.64.0.97/32", - "100.64.0.98/32", - "100.64.0.99/32", - "100.64.1.2/32" - ], - "Action": "accept", - "Destination": "10.10.0.0/16", - "Protocol": "all", - "Port": 0, - "PortRange": { - "Start": 0, - "End": 0 - }, - "Domains": null, - "IsDynamic": false - }, - { - "PolicyID": "", - "RouteID": "route-ha-2:peer-60", - "SourceRanges": [ - "100.64.0.1/32", - "100.64.0.10/32", - "100.64.0.11/32", - "100.64.0.12/32", - "100.64.0.13/32", - "100.64.0.14/32", - "100.64.0.15/32", - "100.64.0.16/32", - "100.64.0.17/32", - "100.64.0.18/32", - "100.64.0.19/32", - "100.64.0.2/32", - "100.64.0.20/32", - "100.64.0.21/32", - "100.64.0.22/32", - "100.64.0.23/32", - "100.64.0.24/32", - "100.64.0.25/32", - "100.64.0.26/32", - "100.64.0.27/32", - "100.64.0.28/32", - "100.64.0.29/32", - "100.64.0.3/32", - "100.64.0.30/32", - "100.64.0.31/32", - "100.64.0.32/32", - "100.64.0.33/32", - "100.64.0.34/32", - "100.64.0.35/32", - "100.64.0.36/32", - "100.64.0.37/32", - "100.64.0.38/32", - "100.64.0.39/32", - "100.64.0.4/32", - "100.64.0.40/32", - "100.64.0.41/32", - "100.64.0.42/32", - "100.64.0.43/32", - "100.64.0.44/32", - "100.64.0.45/32", - "100.64.0.46/32", - "100.64.0.47/32", - "100.64.0.48/32", - "100.64.0.49/32", - "100.64.0.5/32", - "100.64.0.50/32", - "100.64.0.51/32", - "100.64.0.52/32", - "100.64.0.53/32", - "100.64.0.54/32", - "100.64.0.55/32", - "100.64.0.56/32", - "100.64.0.57/32", - "100.64.0.58/32", - "100.64.0.59/32", - "100.64.0.6/32", - "100.64.0.60/32", - "100.64.0.62/32", - "100.64.0.63/32", - "100.64.0.64/32", - "100.64.0.65/32", - "100.64.0.66/32", - "100.64.0.67/32", - "100.64.0.68/32", - "100.64.0.69/32", - "100.64.0.7/32", - "100.64.0.70/32", - "100.64.0.71/32", - "100.64.0.72/32", - "100.64.0.73/32", - "100.64.0.74/32", - "100.64.0.75/32", - "100.64.0.76/32", - "100.64.0.77/32", - "100.64.0.78/32", - "100.64.0.79/32", - "100.64.0.8/32", - "100.64.0.80/32", - "100.64.0.81/32", - "100.64.0.82/32", - "100.64.0.83/32", - "100.64.0.84/32", - "100.64.0.85/32", - "100.64.0.86/32", - "100.64.0.87/32", - "100.64.0.88/32", - "100.64.0.89/32", - "100.64.0.9/32", - "100.64.0.90/32", - "100.64.0.91/32", - "100.64.0.92/32", - "100.64.0.93/32", - "100.64.0.94/32", - "100.64.0.95/32", - "100.64.0.96/32", - "100.64.0.97/32", - "100.64.0.98/32", - "100.64.0.99/32", - "100.64.1.2/32" - ], - "Action": "accept", - "Destination": "10.10.0.0/16", - "Protocol": "all", - "Port": 0, - "PortRange": { - "Start": 0, - "End": 0 - }, - "Domains": null, - "IsDynamic": false - } - ], - "ForwardingRules": null, - "AuthorizedUsers": { - "admin": { - "user-dev": {}, - "user-ops": {} - }, - "root": { - "user-dev": {}, - "user-ops": {} - } - }, - "EnableSSH": true -} \ No newline at end of file