All Apps and Add-ons

Philips Hue Alert Action: How to manually specify Hue Bridge IP?

alexlomas
Path Finder

At the moment, I guess the Philips Hue Alert Action app is trying to do a local subnet discovery via UPnP. Is there any way to force the IP of a bridge in circumstances where the client browser, Splunk server, and Hue Bridge are on different subnets?

0 Karma
1 Solution

alexlomas
Path Finder

OK, so, after a bit of tinkering, this is what you need to do:

In hue_alerts\bin\hue.py:

Comment out the existing discover_bridges_nupnp() function and add a new one in as below:

#def discover_bridges_nupnp():
    #req = urllib2.Request('https://www.meethue.com/api/nupnp')
    #res = urllib2.urlopen(req)
    #data = json.loads(res.read())
    #return [dict(id=b['id'], ip=b['internalipaddress']) for b in data]

def discover_bridges_nupnp():
    bridgeip = 'the IP of your bridge'
    bridgeid = 'the bridge ID'
    return [dict(id=bridgeid, ip=bridgeip)]

You can find the bridge ID through the API, or if you have the Hue App up and running, if you go to sign in to the hue online account you'll find it in the URL it posts. It will contain the MAC address of the bridge which is also printed on it on a label.

View solution in original post

0 Karma

alexlomas
Path Finder

OK, so, after a bit of tinkering, this is what you need to do:

In hue_alerts\bin\hue.py:

Comment out the existing discover_bridges_nupnp() function and add a new one in as below:

#def discover_bridges_nupnp():
    #req = urllib2.Request('https://www.meethue.com/api/nupnp')
    #res = urllib2.urlopen(req)
    #data = json.loads(res.read())
    #return [dict(id=b['id'], ip=b['internalipaddress']) for b in data]

def discover_bridges_nupnp():
    bridgeip = 'the IP of your bridge'
    bridgeid = 'the bridge ID'
    return [dict(id=bridgeid, ip=bridgeip)]

You can find the bridge ID through the API, or if you have the Hue App up and running, if you go to sign in to the hue online account you'll find it in the URL it posts. It will contain the MAC address of the bridge which is also printed on it on a label.

0 Karma
Get Updates on the Splunk Community!

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Your Voice Matters! Help Us Shape the New Splunk Lantern Experience

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Building Momentum: Splunk Developer Program at .conf25

At Splunk, developers are at the heart of innovation. That’s why this year at .conf25, we officially launched ...