Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add proxy settings in Paho-MQTT?

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Client paho-mqtt MqttServer
# main.py
import paho.mqtt.publish as publish
from json import dumps
from ssl import PROTOCOL_TLSv1
import urllib2

class MqttClient():
    host = 'mqtt.xyz.com'
    port = '1883'
    auth = {}
    topic = '%s/streams'
    tls = None

    def __init__(self, auth, tls=None):
        self.auth = auth
        self.topic = '%s/streams' % auth['username']
        if tls:
            self.tls = tls
            self.port = '8883'

    def publish(self, msg):
        try:
            publish.single  (topic=self.topic,payload=msg,hostname=self.host,  
                         tls=self.tls,port=self.port)             
        except Exception, ex:
            print ex


if __name__ == '__main__':
    auth = {'username': 'your username', 'password': ''}

    #tls_dict = {'ca_certs': 'ca_certs.crt', 'tls_version': PROTOCOL_TLSv1} # sslvers. 


    msg_dict={'protocol':'v2','device':'Development Device','at':'now','data':{'temp':21,'hum':58}}

    client_mqtt =MqttClient(auth=auth)                       # non ssl version
    #client_mqtt =MqttClient(auth=auth, tls=tls_dict)        # ssl version
    client_mqtt.publish(dumps(msg_dict))

I guess my organization's proxy settings are blocking the request, so please guide me in including the proxy settings in the above code.
For instance if address is 'proxy.xyz.com' and port number is '0000' and my network username is 'xyz' and password is 'abc'

like image 897
saurabh sakharkar Avatar asked Jan 09 '23 03:01

saurabh sakharkar


2 Answers

You haven't mentioned what sort of proxy you are talking about, but assuming you want to use a HTTP proxy.

You can not use a HTTP proxy to forward raw MQTT traffic as the two protocols are not compatible.

If the broker you want to connect to supports MQTT over Websockets then you should be able connect vai a modern HTTP proxy, but this will not work with the code you have posted.

As noted in the comments, The Python Paho client added SOCKS and HTTP proxy support under pull request 315.

like image 151
hardillb Avatar answered Jan 26 '23 18:01

hardillb


Paho community added this feature on 2018. https://github.com/eclipse/paho.mqtt.python/pull/315

I am adding the code snippet since no one still added it. Just set proxy options for the client object.

client = mqtt.Client()    
client.proxy_set(proxy_type=socks.HTTP, proxy_addr=proxy_host, proxy_port=proxy_port)
like image 31
Ferhat Avatar answered Jan 26 '23 19:01

Ferhat