diff --git a/management/server/types/account.go b/management/server/types/account.go index f0887be07..77f920b64 100644 --- a/management/server/types/account.go +++ b/management/server/types/account.go @@ -23,7 +23,6 @@ import ( nbpeer "github.com/netbirdio/netbird/management/server/peer" "github.com/netbirdio/netbird/management/server/posture" "github.com/netbirdio/netbird/management/server/status" - "github.com/netbirdio/netbird/management/server/telemetry" "github.com/netbirdio/netbird/management/server/util" "github.com/netbirdio/netbird/route" ) @@ -118,109 +117,6 @@ func (o AccountOnboarding) IsEqual(onboarding AccountOnboarding) bool { o.SignupFormPending == onboarding.SignupFormPending } -// GetRoutesToSync returns the enabled routes for the peer ID and the routes -// from the ACL peers that have distribution groups associated with the peer ID. -// Please mind, that the returned route.Route objects will contain Peer.Key instead of Peer.ID. -func (a *Account) GetRoutesToSync(ctx context.Context, peerID string, aclPeers []*nbpeer.Peer) []*route.Route { - routes, peerDisabledRoutes := a.getRoutingPeerRoutes(ctx, peerID) - peerRoutesMembership := make(LookupMap) - for _, r := range append(routes, peerDisabledRoutes...) { - peerRoutesMembership[string(r.GetHAUniqueID())] = struct{}{} - } - - groupListMap := a.GetPeerGroups(peerID) - for _, peer := range aclPeers { - activeRoutes, _ := a.getRoutingPeerRoutes(ctx, peer.ID) - groupFilteredRoutes := a.filterRoutesByGroups(activeRoutes, groupListMap) - filteredRoutes := a.filterRoutesFromPeersOfSameHAGroup(groupFilteredRoutes, peerRoutesMembership) - routes = append(routes, filteredRoutes...) - } - - return routes -} - -// filterRoutesFromPeersOfSameHAGroup filters and returns a list of routes that don't share the same HA route membership -func (a *Account) filterRoutesFromPeersOfSameHAGroup(routes []*route.Route, peerMemberships LookupMap) []*route.Route { - var filteredRoutes []*route.Route - for _, r := range routes { - _, found := peerMemberships[string(r.GetHAUniqueID())] - if !found { - filteredRoutes = append(filteredRoutes, r) - } - } - return filteredRoutes -} - -// filterRoutesByGroups returns a list with routes that have distribution groups in the group's map -func (a *Account) filterRoutesByGroups(routes []*route.Route, groupListMap LookupMap) []*route.Route { - var filteredRoutes []*route.Route - for _, r := range routes { - for _, groupID := range r.Groups { - _, found := groupListMap[groupID] - if found { - filteredRoutes = append(filteredRoutes, r) - break - } - } - } - return filteredRoutes -} - -// getRoutingPeerRoutes returns the enabled and disabled lists of routes that the given routing peer serves -// Please mind, that the returned route.Route objects will contain Peer.Key instead of Peer.ID. -// If the given is not a routing peer, then the lists are empty. -func (a *Account) getRoutingPeerRoutes(ctx context.Context, peerID string) (enabledRoutes []*route.Route, disabledRoutes []*route.Route) { - - peer := a.GetPeer(peerID) - if peer == nil { - log.WithContext(ctx).Errorf("peer %s that doesn't exist under account %s", peerID, a.Id) - return enabledRoutes, disabledRoutes - } - - seenRoute := make(map[route.ID]struct{}) - - takeRoute := func(r *route.Route, id string) { - if _, ok := seenRoute[r.ID]; ok { - return - } - seenRoute[r.ID] = struct{}{} - - if r.Enabled { - r.Peer = peer.Key - enabledRoutes = append(enabledRoutes, r) - return - } - disabledRoutes = append(disabledRoutes, r) - } - - for _, r := range a.Routes { - for _, groupID := range r.PeerGroups { - group := a.GetGroup(groupID) - if group == nil { - log.WithContext(ctx).Errorf("route %s has peers group %s that doesn't exist under account %s", r.ID, groupID, a.Id) - continue - } - for _, id := range group.Peers { - if id != peerID { - continue - } - - newPeerRoute := r.Copy() - newPeerRoute.Peer = id - newPeerRoute.PeerGroups = nil - newPeerRoute.ID = route.ID(string(r.ID) + ":" + id) // we have to provide unique route id when distribute network map - takeRoute(newPeerRoute, id) - break - } - } - if r.Peer == peerID { - takeRoute(r.Copy(), peerID) - } - } - - return enabledRoutes, disabledRoutes -} - // GetRoutesByPrefixOrDomains return list of routes by account and route prefix func (a *Account) GetRoutesByPrefixOrDomains(prefix netip.Prefix, domains domain.List) []*route.Route { var routes []*route.Route @@ -240,171 +136,6 @@ func (a *Account) GetGroup(groupID string) *Group { return a.Groups[groupID] } -// GetPeerNetworkMap returns the networkmap for the given peer ID. -func (a *Account) GetPeerNetworkMap( - ctx context.Context, - peerID string, - peersCustomZone nbdns.CustomZone, - validatedPeersMap map[string]struct{}, - resourcePolicies map[string][]*Policy, - routers map[string]map[string]*routerTypes.NetworkRouter, - metrics *telemetry.AccountManagerMetrics, -) *NetworkMap { - start := time.Now() - - peer := a.Peers[peerID] - if peer == nil { - return &NetworkMap{ - Network: a.Network.Copy(), - } - } - - if _, ok := validatedPeersMap[peerID]; !ok { - return &NetworkMap{ - Network: a.Network.Copy(), - } - } - - aclPeers, firewallRules := a.GetPeerConnectionResources(ctx, peer, validatedPeersMap) - // exclude expired peers - var peersToConnect []*nbpeer.Peer - var expiredPeers []*nbpeer.Peer - for _, p := range aclPeers { - expired, _ := p.LoginExpired(a.Settings.PeerLoginExpiration) - if a.Settings.PeerLoginExpirationEnabled && expired { - expiredPeers = append(expiredPeers, p) - continue - } - peersToConnect = append(peersToConnect, p) - } - - routesUpdate := a.GetRoutesToSync(ctx, peerID, peersToConnect) - routesFirewallRules := a.GetPeerRoutesFirewallRules(ctx, peerID, validatedPeersMap) - isRouter, networkResourcesRoutes, sourcePeers := a.GetNetworkResourcesRoutesToSync(ctx, peerID, resourcePolicies, routers) - var networkResourcesFirewallRules []*RouteFirewallRule - if isRouter { - networkResourcesFirewallRules = a.GetPeerNetworkResourceFirewallRules(ctx, peer, validatedPeersMap, networkResourcesRoutes, resourcePolicies) - } - peersToConnectIncludingRouters := a.addNetworksRoutingPeers(networkResourcesRoutes, peer, peersToConnect, expiredPeers, isRouter, sourcePeers) - - dnsManagementStatus := a.getPeerDNSManagementStatus(peerID) - dnsUpdate := nbdns.Config{ - ServiceEnable: dnsManagementStatus, - } - - if dnsManagementStatus { - var zones []nbdns.CustomZone - - if peersCustomZone.Domain != "" { - zones = append(zones, peersCustomZone) - } - dnsUpdate.CustomZones = zones - dnsUpdate.NameServerGroups = getPeerNSGroups(a, peerID) - } - - nm := &NetworkMap{ - Peers: peersToConnectIncludingRouters, - Network: a.Network.Copy(), - Routes: slices.Concat(networkResourcesRoutes, routesUpdate), - DNSConfig: dnsUpdate, - OfflinePeers: expiredPeers, - FirewallRules: firewallRules, - RoutesFirewallRules: slices.Concat(networkResourcesFirewallRules, routesFirewallRules), - } - - if metrics != nil { - objectCount := int64(len(peersToConnectIncludingRouters) + len(expiredPeers) + len(routesUpdate) + len(networkResourcesRoutes) + len(firewallRules) + +len(networkResourcesFirewallRules) + len(routesFirewallRules)) - metrics.CountNetworkMapObjects(objectCount) - metrics.CountGetPeerNetworkMapDuration(time.Since(start)) - - if objectCount > 5000 { - log.WithContext(ctx).Tracef("account: %s has a total resource count of %d objects, "+ - "peers to connect: %d, expired peers: %d, routes: %d, firewall rules: %d, network resources routes: %d, network resources firewall rules: %d, routes firewall rules: %d", - a.Id, objectCount, len(peersToConnectIncludingRouters), len(expiredPeers), len(routesUpdate), len(firewallRules), len(networkResourcesRoutes), len(networkResourcesFirewallRules), len(routesFirewallRules)) - } - } - - return nm -} - -func (a *Account) addNetworksRoutingPeers( - networkResourcesRoutes []*route.Route, - peer *nbpeer.Peer, - peersToConnect []*nbpeer.Peer, - expiredPeers []*nbpeer.Peer, - isRouter bool, - sourcePeers map[string]struct{}, -) []*nbpeer.Peer { - - networkRoutesPeers := make(map[string]struct{}, len(networkResourcesRoutes)) - for _, r := range networkResourcesRoutes { - networkRoutesPeers[r.PeerID] = struct{}{} - } - - delete(sourcePeers, peer.ID) - delete(networkRoutesPeers, peer.ID) - - for _, existingPeer := range peersToConnect { - delete(sourcePeers, existingPeer.ID) - delete(networkRoutesPeers, existingPeer.ID) - } - for _, expPeer := range expiredPeers { - delete(sourcePeers, expPeer.ID) - delete(networkRoutesPeers, expPeer.ID) - } - - missingPeers := make(map[string]struct{}, len(sourcePeers)+len(networkRoutesPeers)) - if isRouter { - for p := range sourcePeers { - missingPeers[p] = struct{}{} - } - } - for p := range networkRoutesPeers { - missingPeers[p] = struct{}{} - } - - for p := range missingPeers { - if missingPeer := a.Peers[p]; missingPeer != nil { - peersToConnect = append(peersToConnect, missingPeer) - } - } - - return peersToConnect -} - -func getPeerNSGroups(account *Account, peerID string) []*nbdns.NameServerGroup { - groupList := account.GetPeerGroups(peerID) - - var peerNSGroups []*nbdns.NameServerGroup - - for _, nsGroup := range account.NameServerGroups { - if !nsGroup.Enabled { - continue - } - for _, gID := range nsGroup.Groups { - _, found := groupList[gID] - if found { - if !peerIsNameserver(account.GetPeer(peerID), nsGroup) { - peerNSGroups = append(peerNSGroups, nsGroup.Copy()) - break - } - } - } - } - - return peerNSGroups -} - -// peerIsNameserver returns true if the peer is a nameserver for a nsGroup -func peerIsNameserver(peer *nbpeer.Peer, nsGroup *nbdns.NameServerGroup) bool { - for _, ns := range nsGroup.NameServers { - if peer.IP.Equal(ns.IP.AsSlice()) { - return true - } - } - return false -} - func AddPeerLabelsToAccount(ctx context.Context, account *Account, peerLabels LookupMap) { for _, peer := range account.Peers { label, err := GetPeerHostLabel(peer.Name, peerLabels) @@ -751,32 +482,6 @@ func (a *Account) GetPeerGroupsList(peerID string) []string { return grps } -func (a *Account) getPeerDNSManagementStatus(peerID string) bool { - peerGroups := a.GetPeerGroups(peerID) - enabled := true - for _, groupID := range a.DNSSettings.DisabledManagementGroups { - _, found := peerGroups[groupID] - if found { - enabled = false - break - } - } - return enabled -} - -func (a *Account) GetPeerGroups(peerID string) LookupMap { - groupList := make(LookupMap) - for groupID, group := range a.Groups { - for _, id := range group.Peers { - if id == peerID { - groupList[groupID] = struct{}{} - break - } - } - } - return groupList -} - func (a *Account) GetTakenIPs() []net.IP { var takenIps []net.IP for _, existingPeer := range a.Peers { @@ -976,171 +681,6 @@ func (a *Account) UserGroupsRemoveFromPeers(userID string, groups ...string) map return groupUpdates } -// GetPeerConnectionResources for a given peer -// -// This function returns the list of peers and firewall rules that are applicable to a given peer. -func (a *Account) GetPeerConnectionResources(ctx context.Context, peer *nbpeer.Peer, validatedPeersMap map[string]struct{}) ([]*nbpeer.Peer, []*FirewallRule) { - generateResources, getAccumulatedResources := a.connResourcesGenerator(ctx, peer) - - for _, policy := range a.Policies { - if !policy.Enabled { - continue - } - - for _, rule := range policy.Rules { - if !rule.Enabled { - continue - } - - sourcePeers, peerInSources := a.getAllPeersFromGroups(ctx, rule.Sources, peer.ID, policy.SourcePostureChecks, validatedPeersMap) - destinationPeers, peerInDestinations := a.getAllPeersFromGroups(ctx, rule.Destinations, peer.ID, nil, validatedPeersMap) - - if rule.Bidirectional { - if peerInSources { - generateResources(rule, destinationPeers, FirewallRuleDirectionIN) - } - if peerInDestinations { - generateResources(rule, sourcePeers, FirewallRuleDirectionOUT) - } - } - - if peerInSources { - generateResources(rule, destinationPeers, FirewallRuleDirectionOUT) - } - - if peerInDestinations { - generateResources(rule, sourcePeers, FirewallRuleDirectionIN) - } - } - } - - return getAccumulatedResources() -} - -// connResourcesGenerator returns generator and accumulator function which returns the result of generator calls -// -// The generator function is used to generate the list of peers and firewall rules that are applicable to a given peer. -// It safe to call the generator function multiple times for same peer and different rules no duplicates will be -// generated. The accumulator function returns the result of all the generator calls. -func (a *Account) connResourcesGenerator(ctx context.Context, targetPeer *nbpeer.Peer) (func(*PolicyRule, []*nbpeer.Peer, int), func() ([]*nbpeer.Peer, []*FirewallRule)) { - rulesExists := make(map[string]struct{}) - peersExists := make(map[string]struct{}) - rules := make([]*FirewallRule, 0) - peers := make([]*nbpeer.Peer, 0) - - all, err := a.GetGroupAll() - if err != nil { - log.WithContext(ctx).Errorf("failed to get group all: %v", err) - all = &Group{} - } - - return func(rule *PolicyRule, groupPeers []*nbpeer.Peer, direction int) { - isAll := (len(all.Peers) - 1) == len(groupPeers) - for _, peer := range groupPeers { - if peer == nil { - continue - } - - if _, ok := peersExists[peer.ID]; !ok { - peers = append(peers, peer) - peersExists[peer.ID] = struct{}{} - } - - fr := FirewallRule{ - PolicyID: rule.ID, - PeerIP: peer.IP.String(), - Direction: direction, - Action: string(rule.Action), - Protocol: string(rule.Protocol), - } - - if isAll { - fr.PeerIP = "0.0.0.0" - } - - ruleID := rule.ID + fr.PeerIP + strconv.Itoa(direction) + - fr.Protocol + fr.Action + strings.Join(rule.Ports, ",") - if _, ok := rulesExists[ruleID]; ok { - continue - } - rulesExists[ruleID] = struct{}{} - - if len(rule.Ports) == 0 && len(rule.PortRanges) == 0 { - rules = append(rules, &fr) - continue - } - - rules = append(rules, expandPortsAndRanges(fr, rule, targetPeer)...) - } - }, func() ([]*nbpeer.Peer, []*FirewallRule) { - return peers, rules - } -} - -// getAllPeersFromGroups for given peer ID and list of groups -// -// Returns a list of peers from specified groups that pass specified posture checks -// and a boolean indicating if the supplied peer ID exists within these groups. -// -// Important: Posture checks are applicable only to source group peers, -// for destination group peers, call this method with an empty list of sourcePostureChecksIDs -func (a *Account) getAllPeersFromGroups(ctx context.Context, groups []string, peerID string, sourcePostureChecksIDs []string, validatedPeersMap map[string]struct{}) ([]*nbpeer.Peer, bool) { - peerInGroups := false - uniquePeerIDs := a.getUniquePeerIDsFromGroupsIDs(ctx, groups) - filteredPeers := make([]*nbpeer.Peer, 0, len(uniquePeerIDs)) - for _, p := range uniquePeerIDs { - peer, ok := a.Peers[p] - if !ok || peer == nil { - continue - } - - // validate the peer based on policy posture checks applied - isValid := a.validatePostureChecksOnPeer(ctx, sourcePostureChecksIDs, peer.ID) - if !isValid { - continue - } - - if _, ok := validatedPeersMap[peer.ID]; !ok { - continue - } - - if peer.ID == peerID { - peerInGroups = true - continue - } - - filteredPeers = append(filteredPeers, peer) - } - - return filteredPeers, peerInGroups -} - -// validatePostureChecksOnPeer validates the posture checks on a peer -func (a *Account) validatePostureChecksOnPeer(ctx context.Context, sourcePostureChecksID []string, peerID string) bool { - peer, ok := a.Peers[peerID] - if !ok && peer == nil { - return false - } - - for _, postureChecksID := range sourcePostureChecksID { - postureChecks := a.GetPostureChecks(postureChecksID) - if postureChecks == nil { - continue - } - - for _, check := range postureChecks.GetChecks() { - isValid, err := check.Check(ctx, *peer) - if err != nil { - log.WithContext(ctx).Debugf("an error occurred check %s: on peer: %s :%s", check.Name(), peer.ID, err.Error()) - } - if !isValid { - return false - } - } - } - return true -} - func (a *Account) GetPostureChecks(postureChecksID string) *posture.Checks { for _, postureChecks := range a.PostureChecks { if postureChecks.ID == postureChecksID { @@ -1150,174 +690,6 @@ func (a *Account) GetPostureChecks(postureChecksID string) *posture.Checks { return nil } -// GetPeerRoutesFirewallRules gets the routes firewall rules associated with a routing peer ID for the account. -func (a *Account) GetPeerRoutesFirewallRules(ctx context.Context, peerID string, validatedPeersMap map[string]struct{}) []*RouteFirewallRule { - routesFirewallRules := make([]*RouteFirewallRule, 0, len(a.Routes)) - - enabledRoutes, _ := a.getRoutingPeerRoutes(ctx, peerID) - for _, route := range enabledRoutes { - // If no access control groups are specified, accept all traffic. - if len(route.AccessControlGroups) == 0 { - defaultPermit := getDefaultPermit(route) - routesFirewallRules = append(routesFirewallRules, defaultPermit...) - continue - } - - distributionPeers := a.getDistributionGroupsPeers(route) - - for _, accessGroup := range route.AccessControlGroups { - policies := GetAllRoutePoliciesFromGroups(a, []string{accessGroup}) - rules := a.getRouteFirewallRules(ctx, peerID, policies, route, validatedPeersMap, distributionPeers) - routesFirewallRules = append(routesFirewallRules, rules...) - } - } - - return routesFirewallRules -} - -func (a *Account) getRouteFirewallRules(ctx context.Context, peerID string, policies []*Policy, route *route.Route, validatedPeersMap map[string]struct{}, distributionPeers map[string]struct{}) []*RouteFirewallRule { - var fwRules []*RouteFirewallRule - for _, policy := range policies { - if !policy.Enabled { - continue - } - - for _, rule := range policy.Rules { - if !rule.Enabled { - continue - } - - rulePeers := a.getRulePeers(rule, policy.SourcePostureChecks, peerID, distributionPeers, validatedPeersMap) - rules := generateRouteFirewallRules(ctx, route, rule, rulePeers, FirewallRuleDirectionIN) - fwRules = append(fwRules, rules...) - } - } - return fwRules -} - -func (a *Account) getRulePeers(rule *PolicyRule, postureChecks []string, peerID string, distributionPeers map[string]struct{}, validatedPeersMap map[string]struct{}) []*nbpeer.Peer { - distPeersWithPolicy := make(map[string]struct{}) - for _, id := range rule.Sources { - group := a.Groups[id] - if group == nil { - continue - } - - for _, pID := range group.Peers { - if pID == peerID { - continue - } - _, distPeer := distributionPeers[pID] - _, valid := validatedPeersMap[pID] - if distPeer && valid && a.validatePostureChecksOnPeer(context.Background(), postureChecks, pID) { - distPeersWithPolicy[pID] = struct{}{} - } - } - } - - distributionGroupPeers := make([]*nbpeer.Peer, 0, len(distPeersWithPolicy)) - for pID := range distPeersWithPolicy { - peer := a.Peers[pID] - if peer == nil { - continue - } - distributionGroupPeers = append(distributionGroupPeers, peer) - } - return distributionGroupPeers -} - -func (a *Account) getDistributionGroupsPeers(route *route.Route) map[string]struct{} { - distPeers := make(map[string]struct{}) - for _, id := range route.Groups { - group := a.Groups[id] - if group == nil { - continue - } - - for _, pID := range group.Peers { - distPeers[pID] = struct{}{} - } - } - return distPeers -} - -func getDefaultPermit(route *route.Route) []*RouteFirewallRule { - var rules []*RouteFirewallRule - - sources := []string{"0.0.0.0/0"} - if route.Network.Addr().Is6() { - sources = []string{"::/0"} - } - rule := RouteFirewallRule{ - SourceRanges: sources, - Action: string(PolicyTrafficActionAccept), - Destination: route.Network.String(), - Protocol: string(PolicyRuleProtocolALL), - Domains: route.Domains, - IsDynamic: route.IsDynamic(), - RouteID: route.ID, - } - - rules = append(rules, &rule) - - // dynamic routes always contain an IPv4 placeholder as destination, hence we must add IPv6 rules additionally - if route.IsDynamic() { - ruleV6 := rule - ruleV6.SourceRanges = []string{"::/0"} - rules = append(rules, &ruleV6) - } - - return rules -} - -// GetAllRoutePoliciesFromGroups retrieves route policies associated with the specified access control groups -// and returns a list of policies that have rules with destinations matching the specified groups. -func GetAllRoutePoliciesFromGroups(account *Account, accessControlGroups []string) []*Policy { - routePolicies := make([]*Policy, 0) - for _, groupID := range accessControlGroups { - group, ok := account.Groups[groupID] - if !ok { - continue - } - - for _, policy := range account.Policies { - for _, rule := range policy.Rules { - exist := slices.ContainsFunc(rule.Destinations, func(groupID string) bool { - return groupID == group.ID - }) - if exist { - routePolicies = append(routePolicies, policy) - continue - } - } - } - } - - return routePolicies -} - -// GetPeerNetworkResourceFirewallRules gets the network resources firewall rules associated with a routing peer ID for the account. -func (a *Account) GetPeerNetworkResourceFirewallRules(ctx context.Context, peer *nbpeer.Peer, validatedPeersMap map[string]struct{}, routes []*route.Route, resourcePolicies map[string][]*Policy) []*RouteFirewallRule { - routesFirewallRules := make([]*RouteFirewallRule, 0) - - for _, route := range routes { - if route.Peer != peer.Key { - continue - } - resourceAppliedPolicies := resourcePolicies[string(route.GetResourceID())] - distributionPeers := getPoliciesSourcePeers(resourceAppliedPolicies, a.Groups) - - rules := a.getRouteFirewallRules(ctx, peer.ID, resourceAppliedPolicies, route, validatedPeersMap, distributionPeers) - for _, rule := range rules { - if len(rule.SourceRanges) > 0 { - routesFirewallRules = append(routesFirewallRules, rule) - } - } - } - - return routesFirewallRules -} - // getNetworkResourceGroups retrieves all groups associated with the given network resource. func (a *Account) getNetworkResourceGroups(resourceID string) []*Group { var networkResourceGroups []*Group @@ -1347,86 +719,6 @@ func (a *Account) GetResourcePoliciesMap() map[string][]*Policy { return resourcePolicies } -// GetNetworkResourcesRoutesToSync returns network routes for syncing with a specific peer and its ACL peers. -func (a *Account) GetNetworkResourcesRoutesToSync(ctx context.Context, peerID string, resourcePolicies map[string][]*Policy, routers map[string]map[string]*routerTypes.NetworkRouter) (bool, []*route.Route, map[string]struct{}) { - var isRoutingPeer bool - var routes []*route.Route - allSourcePeers := make(map[string]struct{}, len(a.Peers)) - - for _, resource := range a.NetworkResources { - if !resource.Enabled { - continue - } - - var addSourcePeers bool - - networkRoutingPeers, exists := routers[resource.NetworkID] - if exists { - if router, ok := networkRoutingPeers[peerID]; ok { - isRoutingPeer, addSourcePeers = true, true - routes = append(routes, a.getNetworkResourcesRoutes(resource, peerID, router, resourcePolicies)...) - } - } - - addedResourceRoute := false - for _, policy := range resourcePolicies[resource.ID] { - peers := a.getUniquePeerIDsFromGroupsIDs(ctx, policy.SourceGroups()) - if addSourcePeers { - for _, pID := range a.getPostureValidPeers(peers, policy.SourcePostureChecks) { - allSourcePeers[pID] = struct{}{} - } - } else if slices.Contains(peers, peerID) && a.validatePostureChecksOnPeer(ctx, policy.SourcePostureChecks, peerID) { - // add routes for the resource if the peer is in the distribution group - for peerId, router := range networkRoutingPeers { - routes = append(routes, a.getNetworkResourcesRoutes(resource, peerId, router, resourcePolicies)...) - } - addedResourceRoute = true - } - if addedResourceRoute { - break - } - } - } - - return isRoutingPeer, routes, allSourcePeers -} - -func (a *Account) getPostureValidPeers(inputPeers []string, postureChecksIDs []string) []string { - var dest []string - for _, peerID := range inputPeers { - if a.validatePostureChecksOnPeer(context.Background(), postureChecksIDs, peerID) { - dest = append(dest, peerID) - } - } - return dest -} - -func (a *Account) getUniquePeerIDsFromGroupsIDs(ctx context.Context, groups []string) []string { - peerIDs := make(map[string]struct{}, len(groups)) // we expect at least one peer per group as initial capacity - for _, groupID := range groups { - group := a.GetGroup(groupID) - if group == nil { - log.WithContext(ctx).Warnf("group %s doesn't exist under account %s, will continue map generation without it", groupID, a.Id) - continue - } - - if group.IsGroupAll() || len(groups) == 1 { - return group.Peers - } - - for _, peerID := range group.Peers { - peerIDs[peerID] = struct{}{} - } - } - - ids := make([]string, 0, len(peerIDs)) - for peerID := range peerIDs { - ids = append(ids, peerID) - } - - return ids -} - // getNetworkResources filters and returns a list of network resources associated with the given network ID. func (a *Account) getNetworkResources(networkID string) []*resourceTypes.NetworkResource { var resources []*resourceTypes.NetworkResource @@ -1492,22 +784,6 @@ func (a *Account) GetPoliciesAppliedInNetwork(networkID string) []string { return result } -// getNetworkResourcesRoutes convert the network resources list to routes list. -func (a *Account) getNetworkResourcesRoutes(resource *resourceTypes.NetworkResource, peerId string, router *routerTypes.NetworkRouter, resourcePolicies map[string][]*Policy) []*route.Route { - resourceAppliedPolicies := resourcePolicies[resource.ID] - - var routes []*route.Route - // distribute the resource routes only if there is policy applied to it - if len(resourceAppliedPolicies) > 0 { - peer := a.GetPeer(peerId) - if peer != nil { - routes = append(routes, resource.ToRoute(peer, router)) - } - } - - return routes -} - func (a *Account) GetResourceRoutersMap() map[string]map[string]*routerTypes.NetworkRouter { routers := make(map[string]map[string]*routerTypes.NetworkRouter) @@ -1538,28 +814,6 @@ func (a *Account) GetResourceRoutersMap() map[string]map[string]*routerTypes.Net return routers } -// getPoliciesSourcePeers collects all unique peers from the source groups defined in the given policies. -func getPoliciesSourcePeers(policies []*Policy, groups map[string]*Group) map[string]struct{} { - sourcePeers := make(map[string]struct{}) - - for _, policy := range policies { - for _, rule := range policy.Rules { - for _, sourceGroup := range rule.Sources { - group := groups[sourceGroup] - if group == nil { - continue - } - - for _, peer := range group.Peers { - sourcePeers[peer] = struct{}{} - } - } - } - } - - return sourcePeers -} - // AddAllGroup to account object if it doesn't exist func (a *Account) AddAllGroup(disableDefaultPolicy bool) error { if len(a.Groups) == 0 { @@ -1603,45 +857,3 @@ func (a *Account) AddAllGroup(disableDefaultPolicy bool) error { } return nil } - -// expandPortsAndRanges expands Ports and PortRanges of a rule into individual firewall rules -func expandPortsAndRanges(base FirewallRule, rule *PolicyRule, peer *nbpeer.Peer) []*FirewallRule { - var expanded []*FirewallRule - - if len(rule.Ports) > 0 { - for _, port := range rule.Ports { - fr := base - fr.Port = port - expanded = append(expanded, &fr) - } - return expanded - } - - supportPortRanges := peerSupportsPortRanges(peer.Meta.WtVersion) - for _, portRange := range rule.PortRanges { - fr := base - - if supportPortRanges { - fr.PortRange = portRange - } else { - // Peer doesn't support port ranges, only allow single-port ranges - if portRange.Start != portRange.End { - continue - } - fr.Port = strconv.FormatUint(uint64(portRange.Start), 10) - } - expanded = append(expanded, &fr) - } - - return expanded -} - -// peerSupportsPortRanges checks if the peer version supports port ranges. -func peerSupportsPortRanges(peerVer string) bool { - if strings.Contains(peerVer, "dev") { - return true - } - - meetMinVer, err := posture.MeetsMinVersion(firewallRuleMinPortRangesVer, peerVer) - return err == nil && meetMinVer -} diff --git a/management/server/types/network.go b/management/server/types/network.go index eb8415264..be9243d21 100644 --- a/management/server/types/network.go +++ b/management/server/types/network.go @@ -9,14 +9,9 @@ import ( "github.com/c-robinson/iplib" "github.com/rs/xid" - "golang.org/x/exp/maps" - nbdns "github.com/netbirdio/netbird/dns" "github.com/netbirdio/netbird/management/proto" - nbpeer "github.com/netbirdio/netbird/management/server/peer" "github.com/netbirdio/netbird/management/server/status" - "github.com/netbirdio/netbird/management/server/util" - "github.com/netbirdio/netbird/route" ) const ( @@ -29,40 +24,6 @@ const ( AllowedIPsFormat = "%s/32" ) -type NetworkMap struct { - Peers []*nbpeer.Peer - Network *Network - Routes []*route.Route - DNSConfig nbdns.Config - OfflinePeers []*nbpeer.Peer - FirewallRules []*FirewallRule - RoutesFirewallRules []*RouteFirewallRule - ForwardingRules []*ForwardingRule -} - -func (nm *NetworkMap) Merge(other *NetworkMap) { - nm.Peers = mergeUniquePeersByID(nm.Peers, other.Peers) - nm.Routes = util.MergeUnique(nm.Routes, other.Routes) - nm.OfflinePeers = mergeUniquePeersByID(nm.OfflinePeers, other.OfflinePeers) - nm.FirewallRules = util.MergeUnique(nm.FirewallRules, other.FirewallRules) - nm.RoutesFirewallRules = util.MergeUnique(nm.RoutesFirewallRules, other.RoutesFirewallRules) - nm.ForwardingRules = util.MergeUnique(nm.ForwardingRules, other.ForwardingRules) -} - -func mergeUniquePeersByID(peers1, peers2 []*nbpeer.Peer) []*nbpeer.Peer { - result := make(map[string]*nbpeer.Peer) - for _, peer := range peers1 { - result[peer.ID] = peer - } - for _, peer := range peers2 { - if _, ok := result[peer.ID]; !ok { - result[peer.ID] = peer - } - } - - return maps.Values(result) -} - type ForwardingRule struct { RuleProtocol string DestinationPorts RulePortRange diff --git a/management/server/types/networkmap.go b/management/server/types/networkmap.go index 40741c5ae..0627e6be8 100644 --- a/management/server/types/networkmap.go +++ b/management/server/types/networkmap.go @@ -703,7 +703,7 @@ func (a *Account) getRoutingPeerRoutes(ctx context.Context, peerID string) (enab peer := a.GetPeer(peerID) if peer == nil { - log.WithContext(ctx).Errorf("peer %s that doesn't exist under account %s", peerID, a.Id) + // log.WithContext(ctx).Errorf("peer %s that doesn't exist under account %s", peerID, a.Id) return enabledRoutes, disabledRoutes } diff --git a/management/server/types/testdata/networkmap_golden.json b/management/server/types/testdata/networkmap_golden.json new file mode 100644 index 000000000..82879083d --- /dev/null +++ b/management/server/types/testdata/networkmap_golden.json @@ -0,0 +1,9969 @@ +{ + "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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": null, + "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": 1 + }, + "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 + }, + { + "ID": "route-ha-1:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-ha-2:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-main:peer-60", + "AccountID": "", + "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" + ] + } + ], + "DNSConfig": { + "ServiceEnable": false, + "NameServerGroups": null, + "CustomZones": null + }, + "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 + }, + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 + } + } + ], + "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 +} \ No newline at end of file diff --git a/management/server/types/testdata/networkmap_golden_new.json b/management/server/types/testdata/networkmap_golden_new.json new file mode 100644 index 000000000..82879083d --- /dev/null +++ b/management/server/types/testdata/networkmap_golden_new.json @@ -0,0 +1,9969 @@ +{ + "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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": null, + "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": 1 + }, + "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 + }, + { + "ID": "route-ha-1:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-ha-2:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-main:peer-60", + "AccountID": "", + "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" + ] + } + ], + "DNSConfig": { + "ServiceEnable": false, + "NameServerGroups": null, + "CustomZones": null + }, + "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 + }, + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 + } + } + ], + "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 +} \ No newline at end of file diff --git a/management/server/types/testdata/networkmap_golden_new_with_deleted_router.json b/management/server/types/testdata/networkmap_golden_new_with_deleted_router.json new file mode 100644 index 000000000..7d46dc523 --- /dev/null +++ b/management/server/types/testdata/networkmap_golden_new_with_deleted_router.json @@ -0,0 +1,9858 @@ +{ + "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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": null, + "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 + }, + { + "ID": "route-ha-1:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-ha-2:peer-60", + "AccountID": "", + "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" + ] + } + ], + "DNSConfig": { + "ServiceEnable": false, + "NameServerGroups": null, + "CustomZones": null + }, + "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 + }, + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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.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-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-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 + } + } + ], + "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.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.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 +} \ No newline at end of file diff --git a/management/server/types/testdata/networkmap_golden_new_with_onpeeradded.json b/management/server/types/testdata/networkmap_golden_new_with_onpeeradded.json new file mode 100644 index 000000000..c5157d7bd --- /dev/null +++ b/management/server/types/testdata/networkmap_golden_new_with_onpeeradded.json @@ -0,0 +1,10081 @@ +{ + "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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": null, + "CreatedAt": "0001-01-01T00:00:00Z", + "Ephemeral": false, + "Location": { + "ConnectionIP": "", + "CountryCode": "", + "CityName": "", + "GeoNameID": 0 + }, + "ExtraDNSLabels": null, + "AllowExtraDNSLabels": false + }, + { + "ID": "peer-new-101", + "Key": "key-peer-new-101", + "IP": "100.64.1.1", + "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 + }, + "Name": "", + "DNSLabel": "peernew101", + "Status": { + "LastSeen": "0001-01-01T00:00:00Z", + "Connected": true, + "LoginExpired": false, + "RequiresApproval": false + }, + "UserID": "user-admin", + "SSHKey": "", + "SSHEnabled": false, + "LoginExpirationEnabled": false, + "InactivityExpirationEnabled": false, + "LastLogin": "2025-08-21T15:30:55.588569+02:00", + "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 + }, + { + "ID": "route-ha-1:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-ha-2:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-main:peer-60", + "AccountID": "", + "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" + ] + } + ], + "DNSConfig": { + "ServiceEnable": false, + "NameServerGroups": null, + "CustomZones": null + }, + "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 + }, + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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.1", + "Direction": 0, + "Action": "accept", + "Protocol": "all", + "Port": "", + "PortRange": { + "Start": 0, + "End": 0 + } + }, + { + "PolicyID": "policy-all", + "PeerIP": "100.64.1.1", + "Direction": 1, + "Action": "accept", + "Protocol": "all", + "Port": "", + "PortRange": { + "Start": 0, + "End": 0 + } + }, + { + "PolicyID": "policy-drop", + "PeerIP": "100.64.1.1", + "Direction": 0, + "Action": "drop", + "Protocol": "tcp", + "Port": "5432", + "PortRange": { + "Start": 0, + "End": 0 + } + }, + { + "PolicyID": "policy-drop", + "PeerIP": "100.64.1.1", + "Direction": 1, + "Action": "drop", + "Protocol": "tcp", + "Port": "5432", + "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.1/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.1/32" + ], + "Action": "accept", + "Destination": "10.10.0.0/16", + "Protocol": "all", + "Port": 0, + "PortRange": { + "Start": 0, + "End": 0 + }, + "Domains": null, + "IsDynamic": false + } + ], + "ForwardingRules": null +} \ No newline at end of file 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 new file mode 100644 index 000000000..13cbe3af5 --- /dev/null +++ b/management/server/types/testdata/networkmap_golden_new_with_onpeeradded_router.json @@ -0,0 +1,10080 @@ +{ + "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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": null, + "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 + }, + "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": "2025-08-21T15:32:06.912734+02:00", + "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 + }, + { + "ID": "route-ha-1:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-ha-2:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-main:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-new-router:peer-60", + "AccountID": "", + "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" + ] + } + ], + "DNSConfig": { + "ServiceEnable": false, + "NameServerGroups": null, + "CustomZones": null + }, + "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 + }, + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 +} \ No newline at end of file diff --git a/management/server/types/testdata/networkmap_golden_new_with_onpeerdeleted.json b/management/server/types/testdata/networkmap_golden_new_with_onpeerdeleted.json new file mode 100644 index 000000000..2cd015c4b --- /dev/null +++ b/management/server/types/testdata/networkmap_golden_new_with_onpeerdeleted.json @@ -0,0 +1,9857 @@ +{ + "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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": null, + "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 + }, + { + "ID": "route-ha-1:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-ha-2:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-main:peer-60", + "AccountID": "", + "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" + ] + } + ], + "DNSConfig": { + "ServiceEnable": false, + "NameServerGroups": null, + "CustomZones": null + }, + "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 + }, + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 + } + } + ], + "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.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.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 +} \ No newline at end of file diff --git a/management/server/types/testdata/networkmap_golden_with_deleted_peer.json b/management/server/types/testdata/networkmap_golden_with_deleted_peer.json new file mode 100644 index 000000000..2cd015c4b --- /dev/null +++ b/management/server/types/testdata/networkmap_golden_with_deleted_peer.json @@ -0,0 +1,9857 @@ +{ + "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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": null, + "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 + }, + { + "ID": "route-ha-1:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-ha-2:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-main:peer-60", + "AccountID": "", + "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" + ] + } + ], + "DNSConfig": { + "ServiceEnable": false, + "NameServerGroups": null, + "CustomZones": null + }, + "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 + }, + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 + } + } + ], + "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.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.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 +} \ No newline at end of file diff --git a/management/server/types/testdata/networkmap_golden_with_deleted_router_peer.json b/management/server/types/testdata/networkmap_golden_with_deleted_router_peer.json new file mode 100644 index 000000000..7d46dc523 --- /dev/null +++ b/management/server/types/testdata/networkmap_golden_with_deleted_router_peer.json @@ -0,0 +1,9858 @@ +{ + "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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": null, + "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 + }, + { + "ID": "route-ha-1:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-ha-2:peer-60", + "AccountID": "", + "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" + ] + } + ], + "DNSConfig": { + "ServiceEnable": false, + "NameServerGroups": null, + "CustomZones": null + }, + "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 + }, + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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.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-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-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 + } + } + ], + "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.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.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 +} \ No newline at end of file diff --git a/management/server/types/testdata/networkmap_golden_with_new_peer.json b/management/server/types/testdata/networkmap_golden_with_new_peer.json new file mode 100644 index 000000000..302ac50b3 --- /dev/null +++ b/management/server/types/testdata/networkmap_golden_with_new_peer.json @@ -0,0 +1,10081 @@ +{ + "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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": null, + "CreatedAt": "0001-01-01T00:00:00Z", + "Ephemeral": false, + "Location": { + "ConnectionIP": "", + "CountryCode": "", + "CityName": "", + "GeoNameID": 0 + }, + "ExtraDNSLabels": null, + "AllowExtraDNSLabels": false + }, + { + "ID": "peer-new-101", + "Key": "key-peer-new-101", + "IP": "100.64.1.1", + "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 + }, + "Name": "", + "DNSLabel": "peernew101", + "Status": { + "LastSeen": "0001-01-01T00:00:00Z", + "Connected": true, + "LoginExpired": false, + "RequiresApproval": false + }, + "UserID": "user-admin", + "SSHKey": "", + "SSHEnabled": false, + "LoginExpirationEnabled": false, + "InactivityExpirationEnabled": false, + "LastLogin": "2025-08-21T15:30:47.664393+02:00", + "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 + }, + { + "ID": "route-ha-1:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-ha-2:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-main:peer-60", + "AccountID": "", + "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" + ] + } + ], + "DNSConfig": { + "ServiceEnable": false, + "NameServerGroups": null, + "CustomZones": null + }, + "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 + }, + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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.1", + "Direction": 0, + "Action": "accept", + "Protocol": "all", + "Port": "", + "PortRange": { + "Start": 0, + "End": 0 + } + }, + { + "PolicyID": "policy-all", + "PeerIP": "100.64.1.1", + "Direction": 1, + "Action": "accept", + "Protocol": "all", + "Port": "", + "PortRange": { + "Start": 0, + "End": 0 + } + }, + { + "PolicyID": "policy-drop", + "PeerIP": "100.64.1.1", + "Direction": 0, + "Action": "drop", + "Protocol": "tcp", + "Port": "5432", + "PortRange": { + "Start": 0, + "End": 0 + } + }, + { + "PolicyID": "policy-drop", + "PeerIP": "100.64.1.1", + "Direction": 1, + "Action": "drop", + "Protocol": "tcp", + "Port": "5432", + "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.1/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.1/32" + ], + "Action": "accept", + "Destination": "10.10.0.0/16", + "Protocol": "all", + "Port": 0, + "PortRange": { + "Start": 0, + "End": 0 + }, + "Domains": null, + "IsDynamic": false + } + ], + "ForwardingRules": null +} \ No newline at end of file diff --git a/management/server/types/testdata/networkmap_golden_with_new_router.json b/management/server/types/testdata/networkmap_golden_with_new_router.json new file mode 100644 index 000000000..32f9b4e14 --- /dev/null +++ b/management/server/types/testdata/networkmap_golden_with_new_router.json @@ -0,0 +1,10080 @@ +{ + "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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": 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 + }, + "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": null, + "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 + }, + "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": "2025-08-21T15:32:03.26525+02:00", + "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 + }, + { + "ID": "route-ha-1:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-ha-2:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-main:peer-60", + "AccountID": "", + "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" + ] + }, + { + "ID": "route-new-router:peer-60", + "AccountID": "", + "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" + ] + } + ], + "DNSConfig": { + "ServiceEnable": false, + "NameServerGroups": null, + "CustomZones": null + }, + "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 + }, + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 +} \ No newline at end of file