Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
adn77
Engaged Sweeper

I am trying to retrieve the switch port an asset is plugged into.

Using the networks.connection.key already gives me network switch along with the SnmpInfos.

What I am missing is the lookup of switch port by MAC, which appearently exists on the Webpage:

query getNetworkInformation{
...
 snmpAssetMacsByMac {}
...
}

How would I do this in a proper GraphQL query against the Data API?

3 REPLIES 3
adn77
Engaged Sweeper

Looking at the Lansweeper asset detail web page I can see an XHR to https://app.lansweeper.com/api/gateway?operation=getNetworkInformation

The Request looks something like this:

 

query getNetworkInformation($assetKey: ID!, $siteId: ID!) {
  site(id: $siteId) {
    asset(key: $assetKey) {
      ipAddress
      mac
      assetMacAddresses {
        mac
        __typename
      }
      snmpAssetMacsByMac {
        ...SnmpAssetMac
        __typename
      }
      networks {
        ipEnabled
        macAddress
        ipAddress
        name: description
        subnet: ipSubnet
        gateway: defaultIpGateway
        __typename
      }
      macNetworks {
        gateway
        macAddress: mac
        ipAddress: ipv4
        __typename
      }
      linuxNetworkDetections {
        gateway
        name
        subnet: subnetMask
        macAddress: mac
        ipAddress: ipv4
        __typename
      }
      __typename
    }
    __typename
  }
}

fragment SnmpAssetMac on SnmpAssetMac {
  lastSeen
  snmpInfo {
    interfaceIndex
    interfaceDescription
    interfaceName
    assetKey
    interfaceAlias
    __typename
  }
  assetMacAddress
  assetKey
  asset {
    assetName
    __typename
  }
  __typename
}

 

When I run that Query I get:

 

{
    "errors": [
        {
            "message": "Cannot query field 'asset' on type 'Site'."
        },
        {
            "message": "Unknown type 'SnmpAssetMac'."
        }
    ]
}

 

Is there any other way to determine which switch port a device is plugged in to?

FrankSc
Lansweeper Tech Support
Lansweeper Tech Support

Hello adn77,
At this moment we are not offering the possibility to scan network devices through API calls. Our current SNMP scans are based on a direct scan of the device with credentials.

We are working on initiatives to scan with custom scripts, this will be for 2025!

adn77
Engaged Sweeper

I was actually trying to retrieve the same information that is displayed on the asset detail page. (The scan already took place) 

When I use the webinterface in a browser, I was comparing the XHRs with the documented API calls. Hence the question if the getNetworkInformation can be used in GraphQL.

Merry Christmas by the way 🙂

General Discussions

Find answers to technical questions about Lansweeper.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now