Code Monkey home page Code Monkey logo

Comments (5)

nicoCalvo avatar nicoCalvo commented on June 25, 2024 2

Hi @Lenka42 you're right! That was the problem, actually I made it work this way:

import asyncio
import socket
import ssl
from gmqtt import Client


async def main():
    cli = Client(client_id='test',
                 will_message=None,
                 clean_session=True)
    ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)

    ssl_context.load_cert_chain('/etc/mosquitto/certs/mosquitto_client.crt', 
    keyfile='/etc/mosquitto/certs/mosquitto_client.key')
    await cli.connect(host='localhost', # socket.gethostname()
                      port=8883,
                      keepalive=True,
                      ssl=ssl_context)
    cli.publish('test','lala')

if __name__ == '__main__':
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main())

Thanks for your help.
Best,
Nick

from gmqtt.

Lenka42 avatar Lenka42 commented on June 25, 2024

Hi @nicoCalvo
You should pass ssl.SSLContext object as ssl argument (if you pass ssl=True ssl.create_default_context() is used)
So I guess in your case you should create context yourself and pass it to client.connect method:

ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) 
ssl_ctx.load_cert_chain(`ca_file`)
await cli.connect(host='37c16a79d00a',
                      port=8883,
                      keepalive=True,
                      ssl=ssl_ctx)

from gmqtt.

nitinkothari17 avatar nitinkothari17 commented on June 25, 2024

Hi

I would also like to know how to implement TLS over gmqtt. Could you please provide a example?
The one which is in the thread is ssl not tls.

DOes gmqtt supports tls? I know that paho-mqtt does

from gmqtt.

Mixser avatar Mixser commented on June 25, 2024

Hi @nitinkothari17

Yes, gmqtt support SSL/TLS

Does the code about is not working for you (because it's using TLS ver1.2 proto)? If you will look through the paho.mqtt code you will see, that they make a SSL/TLS connection by building SSLContext object, like as example above as;

If you faced with some problem - please create a new issue and write more information about it (os version, python version, which broker do you use, which version of TLS and example of your code);

from gmqtt.

nitinkothari17 avatar nitinkothari17 commented on June 25, 2024

Hi @Mixser

I'm new to this and exploring tls/ssl on gmqtt. I just want to know how can we generate this mosquitto_client.crt and mosquitto_client.key which is being used in the above code.

from gmqtt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.