Skip to content
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Logo
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.0k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.8k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.0k

[gelöst]CC2531 an proxmox an LXC durchreichen scheitert...

[gelöst]CC2531 an proxmox an LXC durchreichen scheitert...

Scheduled Pinned Locked Moved ioBroker Allgemein
proxmox lxc cc2531
62 Posts 15 Posters 15.1k Views 20 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • XxJooOX XxJooO

    Ergänzung:

    im letzten Post ist das

    chmod o+rw /dev/ttyACM0
    

    der entscheidende Schritt, aber nicht alleine, da das zum Einen einen Reboot des proxmox-Host nicht übersteht und zum Anderen noch etwas fehlt.

    Ich habe mich deshalb schlau gemacht, wie man unter Debian 10 rc.local wieder reaktiviert und dann eine rc.local mit folgendem Inhalt erstellt:

    #!/bin/sh -e
    #
    # rc.local
    #
    # This script is executed at the end of each multiuser runlevel.
    # Make sure that the script will "exit 0" on success or any other
    # value on error.
    #
    # In order to enable or disable this script just change the execution
    # bits.
    #
    # By default this script does nothing.
    
    chmod o+rw /dev/ttyACM0
    chmod o+rw /dev/bus/usb/001/003
    exit 0
    

    jetzt wird der ganze Eingriff persistent und übersteht problemlos einen Host-Reboot!

    XxJooOX Offline
    XxJooOX Offline
    XxJooO
    wrote on last edited by
    #9

    @hoktar
    wenn Du dem rc.local-Link folgst, dann werden da die Verzeichnisse gezeigt, in denen die Files erstellt werden. In dem Link wird allerdings der Inhalt über den Befehl

    cat
    

    erzeugt. Das hat bei mir auch nicht funktioniert. Ich habe die Dateien dann mit

    nano
    

    erstellt und dann ging es. Auf Deine letzte Frage kann ich Dir leider keine Antwort geben. Allerdings verstehe ich gar nicht, warum dazu die Notwendigkeit besteht. Seitdem ich meinen Stick eingesteckt habe, hat er den NUC nicht mehr verlassen...
    Grüße

    ioBroker auf Intel NUC - Homematic CCU3/pivCCU auf Raspi 3B+

    Kalle BlomquistK 1 Reply Last reply
    0
    • XxJooOX XxJooO

      @hoktar
      wenn Du dem rc.local-Link folgst, dann werden da die Verzeichnisse gezeigt, in denen die Files erstellt werden. In dem Link wird allerdings der Inhalt über den Befehl

      cat
      

      erzeugt. Das hat bei mir auch nicht funktioniert. Ich habe die Dateien dann mit

      nano
      

      erstellt und dann ging es. Auf Deine letzte Frage kann ich Dir leider keine Antwort geben. Allerdings verstehe ich gar nicht, warum dazu die Notwendigkeit besteht. Seitdem ich meinen Stick eingesteckt habe, hat er den NUC nicht mehr verlassen...
      Grüße

      Kalle BlomquistK Offline
      Kalle BlomquistK Offline
      Kalle Blomquist
      wrote on last edited by
      #10

      @XxJooO Dank Dir!! Hat sehr gut funktioniert. Es läuft iobroker bei mir auch im Container mit dem CC2531.
      👍 👏

      1 Reply Last reply
      0
      • XxJooOX XxJooO

        Hallo Leute,

        ich habe die Lösung gefunden!

        Folgendes muss gemacht werden:

        root@pve:~# lsusb
        Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
        Bus 001 Device 004: ID 8087:0aaa Intel Corp. 
        Bus 001 Device 003: ID 0451:16a8 Texas Instruments, Inc. 
        Bus 001 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
        Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
        root@pve:~# ls -l /dev/ttyACM0
        crw-rw-rw- 1 root dialout 166, 0 Feb  5 09:35 /dev/ttyACM0
        root@pve:~# ls -l /dev/bus/usb/001/003
        crw-rw-r-- 1 root root 189, 2 Feb  5 08:05 /dev/bus/usb/001/003
        

        Man sieht also den Stick an Bus 001 Device 003.
        Dies ergibt die ID 189:2.
        Der Stick wird als ttyACM0 angelegt und der hat die ID 166:0
        Man muss einfach beides in die .conf-Datei des LXC eintragen, das sieht dann so aus:

        arch: amd64
        cores: 4
        features: keyctl=1,nesting=1
        hostname: ioBrokerDebian10
        memory: 8192
        net0: name=eth0,bridge=vmbr0,firewall=1,gw=192.168.178.1,hwaddr=2E:81:9B:26:E3:3A,ip=192.168.178.6/24,type=veth
        onboot: 1
        ostype: debian
        rootfs: local-lvm:vm-202-disk-1,size=20G
        swap: 0
        unprivileged: 1
        lxc.cgroup.devices.allow: c 189:* rwm
        lxc.mount.entry: /dev/bus/usb/001/003 dev/bus/usb/001/003 none bind,optional,create=file
        lxc.cgroup.devices.allow: c 166:* rwm
        lxc.mount.entry: /dev/ttyACM0 dev/ttyACM0 none bind,optional,create=file
        

        Danach noch ein

        chmod o+rw /dev/ttyACM0
        

        Danach wird der Container neu gestartet und die Instanz wird grün...

        metaxaM Online
        metaxaM Online
        metaxa
        wrote on last edited by
        #11

        @XxJooO sagte in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

        ich habe die Lösung gefunden!
        Folgendes muss gemacht werden:

        Servus!
        Irgendetwas mache ich falsch, du empfiehlst:

        root@pve:~# lsusb
        Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
        Bus 001 Device 004: ID 8087:0aaa Intel Corp. 
        Bus 001 Device 003: ID 0451:16a8 Texas Instruments, Inc. 
        Bus 001 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
        Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
        

        Ich mache das auch dirket am NUC in Proxmox:

        root@proxmox:~# lsusb
        Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
        Bus 001 Device 003: ID 8087:0aa7 Intel Corp.
        Bus 001 Device 005: ID 051d:0002 American Power Conversion Uninterruptible Power Supply
        Bus 001 Device 002: ID 0451:16c8 Texas Instruments, Inc.
        Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
        

        In meinem Fall geht es um das Durchreichen des USV USB Anschlusses Bus 001 Device 005. Gebe ich jetzt deinen nächsten Befehl ein:

        root@proxmox:~# ls -l /dev/ttyACM0
        ls: cannot access '/dev/ttyACM0': No such file or directory
        

        Kanst du mir bitte weiterhelfen?
        LG aus Wien, mxa

        wendy2702W 1 Reply Last reply
        0
        • XxJooOX Offline
          XxJooOX Offline
          XxJooO
          wrote on last edited by
          #12

          @metaxa sagte in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

          American Power Conversion Uninterruptible Power Supply

          Hallo @metaxa,

          bei dem Gerät handelt es sich um ein USV. Ich bin absolut kein Linux-Kenner... es wird aber am ehesten damit zu tun haben, dass das Gerät unter Linux eben keines aus /dev/ttyACM0 sein wird. Leider kannst Du da nur weiter googeln.

          z.B. Link Text

          Grüße
          Jo

          ioBroker auf Intel NUC - Homematic CCU3/pivCCU auf Raspi 3B+

          1 Reply Last reply
          0
          • metaxaM metaxa

            @XxJooO sagte in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

            ich habe die Lösung gefunden!
            Folgendes muss gemacht werden:

            Servus!
            Irgendetwas mache ich falsch, du empfiehlst:

            root@pve:~# lsusb
            Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
            Bus 001 Device 004: ID 8087:0aaa Intel Corp. 
            Bus 001 Device 003: ID 0451:16a8 Texas Instruments, Inc. 
            Bus 001 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
            Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
            

            Ich mache das auch dirket am NUC in Proxmox:

            root@proxmox:~# lsusb
            Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
            Bus 001 Device 003: ID 8087:0aa7 Intel Corp.
            Bus 001 Device 005: ID 051d:0002 American Power Conversion Uninterruptible Power Supply
            Bus 001 Device 002: ID 0451:16c8 Texas Instruments, Inc.
            Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
            

            In meinem Fall geht es um das Durchreichen des USV USB Anschlusses Bus 001 Device 005. Gebe ich jetzt deinen nächsten Befehl ein:

            root@proxmox:~# ls -l /dev/ttyACM0
            ls: cannot access '/dev/ttyACM0': No such file or directory
            

            Kanst du mir bitte weiterhelfen?
            LG aus Wien, mxa

            wendy2702W Online
            wendy2702W Online
            wendy2702
            wrote on last edited by wendy2702
            #13

            @metaxa Warum macht Ihr das nicht über den Proxmox WEBGUI?

            Ich habe das gestern noch für meine USV gemacht.

            Dauerte keine 5 Minuten.

            P.S. Bin Proxmox Anfänger.

            Bitte keine Fragen per PN, die gehören ins Forum!

            Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

            metaxaM 1 Reply Last reply
            0
            • wendy2702W wendy2702

              @metaxa Warum macht Ihr das nicht über den Proxmox WEBGUI?

              Ich habe das gestern noch für meine USV gemacht.

              Dauerte keine 5 Minuten.

              P.S. Bin Proxmox Anfänger.

              metaxaM Online
              metaxaM Online
              metaxa
              wrote on last edited by
              #14

              @wendy2702 sagte in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

              Warum macht Ihr das nicht über den Proxmox WEBGUI?

              Bin mir nicht sicher dich richtig zu verstehen, den USB zu einer VM durchzureichen = machbar über die Proxmox Oberfläche. Bei einem Container geht das meiner Meinung nach nicht.

              wendy2702W 1 Reply Last reply
              0
              • XxJooOX Offline
                XxJooOX Offline
                XxJooO
                wrote on last edited by
                #15

                @metaxa,

                ich habe kein USV. Allerdings ist es doch so, dass nicht der Container, in dem der ioBroker läuft, mit dem USV kommunizieren muss, sondern Proxmox selbst, da Proxmox die VMs und LXC herunterfahren muss, wenn der Strom weg geht. Siehe die Diskussion in dem von mir verlinkten Beitrag im Proxmox-Forum.

                ioBroker auf Intel NUC - Homematic CCU3/pivCCU auf Raspi 3B+

                oberfraggerO 1 Reply Last reply
                0
                • metaxaM metaxa

                  @wendy2702 sagte in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                  Warum macht Ihr das nicht über den Proxmox WEBGUI?

                  Bin mir nicht sicher dich richtig zu verstehen, den USB zu einer VM durchzureichen = machbar über die Proxmox Oberfläche. Bei einem Container geht das meiner Meinung nach nicht.

                  wendy2702W Online
                  wendy2702W Online
                  wendy2702
                  wrote on last edited by
                  #16

                  @metaxa Sorry, hast recht.

                  Sag ja, ich bin Anfänger. Habe das LXC nicht auf dem Schirm gehabt und das gestern für eine VM gemacht.

                  Bitte keine Fragen per PN, die gehören ins Forum!

                  Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                  1 Reply Last reply
                  0
                  • metaxaM Online
                    metaxaM Online
                    metaxa
                    wrote on last edited by
                    #17

                    @XxJooO Du hast vollkommen recht mit "dirket unter Proxmox", da traue ich mich aber nicht drüber.
                    @wendy2702 Dennoch lieben Dank für deine Rückmeldung.
                    Ich habs fürs Erste aufgegeben und den NUT Dienst lt. dieser Anleitung in der VM des ioBroker gemacht. USB durchgereicht und läuft auch schon im ioBroker Adapter. Jetzt muss ich mich mal mit den gelieferten Daten beschäftigen, aufs Erste habe ich noch keinen DP "wie lange tät die Batterie bei Netzausfall aushalten" gefunden.
                    LG, mxa

                    wendy2702W 1 Reply Last reply
                    0
                    • metaxaM metaxa

                      @XxJooO Du hast vollkommen recht mit "dirket unter Proxmox", da traue ich mich aber nicht drüber.
                      @wendy2702 Dennoch lieben Dank für deine Rückmeldung.
                      Ich habs fürs Erste aufgegeben und den NUT Dienst lt. dieser Anleitung in der VM des ioBroker gemacht. USB durchgereicht und läuft auch schon im ioBroker Adapter. Jetzt muss ich mich mal mit den gelieferten Daten beschäftigen, aufs Erste habe ich noch keinen DP "wie lange tät die Batterie bei Netzausfall aushalten" gefunden.
                      LG, mxa

                      wendy2702W Online
                      wendy2702W Online
                      wendy2702
                      wrote on last edited by
                      #18

                      @metaxa Habe im Forum noch das gefunden.

                      https://forum.iobroker.net/topic/26933/frage-zu-usv/22?page=2

                      So macht es aus meiner Sicht am meisten Sinn die USV mit dem Server zu verbinden.

                      Ich werde mein Setup auch dahingehend ändern.

                      Bitte keine Fragen per PN, die gehören ins Forum!

                      Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                      1 Reply Last reply
                      0
                      • M Offline
                        M Offline
                        Malz1902
                        wrote on last edited by
                        #19

                        kann man auch die dev/serial/by-id durchreichen?
                        Hatte den Host neugestartet und lsusb sagt nun das die Geräte nicht mehr an Bus 001 Device 004 und 005 sind sonder plötzlich Device 002 und 006

                        1 Reply Last reply
                        0
                        • XxJooOX XxJooO

                          @metaxa,

                          ich habe kein USV. Allerdings ist es doch so, dass nicht der Container, in dem der ioBroker läuft, mit dem USV kommunizieren muss, sondern Proxmox selbst, da Proxmox die VMs und LXC herunterfahren muss, wenn der Strom weg geht. Siehe die Diskussion in dem von mir verlinkten Beitrag im Proxmox-Forum.

                          oberfraggerO Offline
                          oberfraggerO Offline
                          oberfragger
                          wrote on last edited by oberfragger
                          #20

                          @XxJooO Danke für deine Anleitungen. Ich bekomme es nicht gebacken! Ich will nur einen Lesekopf für Smartmeter durchreichen...!

                          root@pve:~# lsusb
                          Bus 001 Device 002: ID 8087:8000 Intel Corp. 
                          Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                          Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
                          Bus 002 Device 005: ID 0403:6015 Future Technology Devices International, Ltd Bridge(I2C/SPI/UART/FIFO)
                          Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                          
                          root@pve:~# ls -l /dev/tty*
                          crw-rw-rw- 1 root tty       5,  0 Oct  5 00:19 /dev/tty
                          crw--w---- 1 root tty       4,  0 Oct  4 00:59 /dev/tty0
                          crw--w---- 1 root tty       4,  1 Oct  4 00:59 /dev/tty1
                          crw--w---- 1 root tty       4, 10 Oct  4 00:59 /dev/tty10
                          crw--w---- 1 root tty       4, 11 Oct  4 00:59 /dev/tty11
                          crw--w---- 1 root tty       4, 12 Oct  4 00:59 /dev/tty12
                          crw--w---- 1 root tty       4, 13 Oct  4 00:59 /dev/tty13
                          crw--w---- 1 root tty       4, 14 Oct  4 00:59 /dev/tty14
                          crw--w---- 1 root tty       4, 15 Oct  4 00:59 /dev/tty15
                          crw--w---- 1 root tty       4, 16 Oct  4 00:59 /dev/tty16
                          crw--w---- 1 root tty       4, 17 Oct  4 00:59 /dev/tty17
                          crw--w---- 1 root tty       4, 18 Oct  4 00:59 /dev/tty18
                          crw--w---- 1 root tty       4, 19 Oct  4 00:59 /dev/tty19
                          crw--w---- 1 root tty       4,  2 Oct  4 00:59 /dev/tty2
                          crw--w---- 1 root tty       4, 20 Oct  4 00:59 /dev/tty20
                          crw--w---- 1 root tty       4, 21 Oct  4 00:59 /dev/tty21
                          crw--w---- 1 root tty       4, 22 Oct  4 00:59 /dev/tty22
                          crw--w---- 1 root tty       4, 23 Oct  4 00:59 /dev/tty23
                          crw--w---- 1 root tty       4, 24 Oct  4 00:59 /dev/tty24
                          crw--w---- 1 root tty       4, 25 Oct  4 00:59 /dev/tty25
                          crw--w---- 1 root tty       4, 26 Oct  4 00:59 /dev/tty26
                          crw--w---- 1 root tty       4, 27 Oct  4 00:59 /dev/tty27
                          crw--w---- 1 root tty       4, 28 Oct  4 00:59 /dev/tty28
                          crw--w---- 1 root tty       4, 29 Oct  4 00:59 /dev/tty29
                          crw--w---- 1 root tty       4,  3 Oct  4 00:59 /dev/tty3
                          crw--w---- 1 root tty       4, 30 Oct  4 00:59 /dev/tty30
                          crw--w---- 1 root tty       4, 31 Oct  4 00:59 /dev/tty31
                          crw--w---- 1 root tty       4, 32 Oct  4 00:59 /dev/tty32
                          crw--w---- 1 root tty       4, 33 Oct  4 00:59 /dev/tty33
                          crw--w---- 1 root tty       4, 34 Oct  4 00:59 /dev/tty34
                          crw--w---- 1 root tty       4, 35 Oct  4 00:59 /dev/tty35
                          crw--w---- 1 root tty       4, 36 Oct  4 00:59 /dev/tty36
                          crw--w---- 1 root tty       4, 37 Oct  4 00:59 /dev/tty37
                          crw--w---- 1 root tty       4, 38 Oct  4 00:59 /dev/tty38
                          crw--w---- 1 root tty       4, 39 Oct  4 00:59 /dev/tty39
                          crw--w---- 1 root tty       4,  4 Oct  4 00:59 /dev/tty4
                          crw--w---- 1 root tty       4, 40 Oct  4 00:59 /dev/tty40
                          crw--w---- 1 root tty       4, 41 Oct  4 00:59 /dev/tty41
                          crw--w---- 1 root tty       4, 42 Oct  4 00:59 /dev/tty42
                          crw--w---- 1 root tty       4, 43 Oct  4 00:59 /dev/tty43
                          crw--w---- 1 root tty       4, 44 Oct  4 00:59 /dev/tty44
                          crw--w---- 1 root tty       4, 45 Oct  4 00:59 /dev/tty45
                          crw--w---- 1 root tty       4, 46 Oct  4 00:59 /dev/tty46
                          crw--w---- 1 root tty       4, 47 Oct  4 00:59 /dev/tty47
                          crw--w---- 1 root tty       4, 48 Oct  4 00:59 /dev/tty48
                          crw--w---- 1 root tty       4, 49 Oct  4 00:59 /dev/tty49
                          crw--w---- 1 root tty       4,  5 Oct  4 00:59 /dev/tty5
                          crw--w---- 1 root tty       4, 50 Oct  4 00:59 /dev/tty50
                          crw--w---- 1 root tty       4, 51 Oct  4 00:59 /dev/tty51
                          crw--w---- 1 root tty       4, 52 Oct  4 00:59 /dev/tty52
                          crw--w---- 1 root tty       4, 53 Oct  4 00:59 /dev/tty53
                          crw--w---- 1 root tty       4, 54 Oct  4 00:59 /dev/tty54
                          crw--w---- 1 root tty       4, 55 Oct  4 00:59 /dev/tty55
                          crw--w---- 1 root tty       4, 56 Oct  4 00:59 /dev/tty56
                          crw--w---- 1 root tty       4, 57 Oct  4 00:59 /dev/tty57
                          crw--w---- 1 root tty       4, 58 Oct  4 00:59 /dev/tty58
                          crw--w---- 1 root tty       4, 59 Oct  4 00:59 /dev/tty59
                          crw--w---- 1 root tty       4,  6 Oct  4 00:59 /dev/tty6
                          crw--w---- 1 root tty       4, 60 Oct  4 00:59 /dev/tty60
                          crw--w---- 1 root tty       4, 61 Oct  4 00:59 /dev/tty61
                          crw--w---- 1 root tty       4, 62 Oct  4 00:59 /dev/tty62
                          crw--w---- 1 root tty       4, 63 Oct  4 00:59 /dev/tty63
                          crw--w---- 1 root tty       4,  7 Oct  4 00:59 /dev/tty7
                          crw--w---- 1 root tty       4,  8 Oct  4 00:59 /dev/tty8
                          crw--w---- 1 root tty       4,  9 Oct  4 00:59 /dev/tty9
                          crw------- 1 root root      5,  3 Oct  4 00:59 /dev/ttyprintk
                          crw-rw---- 1 root dialout   4, 64 Oct  4 00:59 /dev/ttyS0
                          crw-rw---- 1 root dialout   4, 65 Oct  4 00:59 /dev/ttyS1
                          crw-rw---- 1 root dialout   4, 74 Oct  4 00:59 /dev/ttyS10
                          crw-rw---- 1 root dialout   4, 75 Oct  4 00:59 /dev/ttyS11
                          crw-rw---- 1 root dialout   4, 76 Oct  4 00:59 /dev/ttyS12
                          crw-rw---- 1 root dialout   4, 77 Oct  4 00:59 /dev/ttyS13
                          crw-rw---- 1 root dialout   4, 78 Oct  4 00:59 /dev/ttyS14
                          crw-rw---- 1 root dialout   4, 79 Oct  4 00:59 /dev/ttyS15
                          crw-rw---- 1 root dialout   4, 80 Oct  4 00:59 /dev/ttyS16
                          crw-rw---- 1 root dialout   4, 81 Oct  4 00:59 /dev/ttyS17
                          crw-rw---- 1 root dialout   4, 82 Oct  4 00:59 /dev/ttyS18
                          crw-rw---- 1 root dialout   4, 83 Oct  4 00:59 /dev/ttyS19
                          crw-rw---- 1 root dialout   4, 66 Oct  4 00:59 /dev/ttyS2
                          crw-rw---- 1 root dialout   4, 84 Oct  4 00:59 /dev/ttyS20
                          crw-rw---- 1 root dialout   4, 85 Oct  4 00:59 /dev/ttyS21
                          crw-rw---- 1 root dialout   4, 86 Oct  4 00:59 /dev/ttyS22
                          crw-rw---- 1 root dialout   4, 87 Oct  4 00:59 /dev/ttyS23
                          crw-rw---- 1 root dialout   4, 88 Oct  4 00:59 /dev/ttyS24
                          crw-rw---- 1 root dialout   4, 89 Oct  4 00:59 /dev/ttyS25
                          crw-rw---- 1 root dialout   4, 90 Oct  4 00:59 /dev/ttyS26
                          crw-rw---- 1 root dialout   4, 91 Oct  4 00:59 /dev/ttyS27
                          crw-rw---- 1 root dialout   4, 92 Oct  4 00:59 /dev/ttyS28
                          crw-rw---- 1 root dialout   4, 93 Oct  4 00:59 /dev/ttyS29
                          crw-rw---- 1 root dialout   4, 67 Oct  4 00:59 /dev/ttyS3
                          crw-rw---- 1 root dialout   4, 94 Oct  4 00:59 /dev/ttyS30
                          crw-rw---- 1 root dialout   4, 95 Oct  4 00:59 /dev/ttyS31
                          crw-rw---- 1 root dialout   4, 68 Oct  4 00:59 /dev/ttyS4
                          crw-rw---- 1 root dialout   4, 69 Oct  4 00:59 /dev/ttyS5
                          crw-rw---- 1 root dialout   4, 70 Oct  4 00:59 /dev/ttyS6
                          crw-rw---- 1 root dialout   4, 71 Oct  4 00:59 /dev/ttyS7
                          crw-rw---- 1 root dialout   4, 72 Oct  4 00:59 /dev/ttyS8
                          crw-rw---- 1 root dialout   4, 73 Oct  4 00:59 /dev/ttyS9
                          crw-rw-rw- 1 root dialout 188,  0 Oct  5 23:13 /dev/ttyUSB0
                          
                          root@pve:~# ls -l /dev/bus/usb/002/005
                          crw-rw-r-- 1 root root 189, 132 Oct  5 23:13 /dev/bus/usb/002/005
                          
                          arch: amd64
                          cores: 2
                          hostname: iobroker
                          memory: 3072
                          net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=7A:8D:76:2A:03:3B,ip=dhcp,ip6=auto,type=veth
                          onboot: 1
                          ostype: debian
                          rootfs: local-lvm:vm-101-disk-0,size=15G
                          swap: 512
                          lxc.cgroup.devices.allow: c 189:* rwm
                          lxc.mount.entry: /dev/bus/usb/002/005 dev/bus/usb/002/005 none bind,optional,create=file
                          lxc.cgroup.devices.allow: c 189:* rwm
                          lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                          
                          root@pve:~# chmod o+rw /dev/ttyUSB0
                          
                          oberfraggerO 1 Reply Last reply
                          0
                          • oberfraggerO oberfragger

                            @XxJooO Danke für deine Anleitungen. Ich bekomme es nicht gebacken! Ich will nur einen Lesekopf für Smartmeter durchreichen...!

                            root@pve:~# lsusb
                            Bus 001 Device 002: ID 8087:8000 Intel Corp. 
                            Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                            Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
                            Bus 002 Device 005: ID 0403:6015 Future Technology Devices International, Ltd Bridge(I2C/SPI/UART/FIFO)
                            Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                            
                            root@pve:~# ls -l /dev/tty*
                            crw-rw-rw- 1 root tty       5,  0 Oct  5 00:19 /dev/tty
                            crw--w---- 1 root tty       4,  0 Oct  4 00:59 /dev/tty0
                            crw--w---- 1 root tty       4,  1 Oct  4 00:59 /dev/tty1
                            crw--w---- 1 root tty       4, 10 Oct  4 00:59 /dev/tty10
                            crw--w---- 1 root tty       4, 11 Oct  4 00:59 /dev/tty11
                            crw--w---- 1 root tty       4, 12 Oct  4 00:59 /dev/tty12
                            crw--w---- 1 root tty       4, 13 Oct  4 00:59 /dev/tty13
                            crw--w---- 1 root tty       4, 14 Oct  4 00:59 /dev/tty14
                            crw--w---- 1 root tty       4, 15 Oct  4 00:59 /dev/tty15
                            crw--w---- 1 root tty       4, 16 Oct  4 00:59 /dev/tty16
                            crw--w---- 1 root tty       4, 17 Oct  4 00:59 /dev/tty17
                            crw--w---- 1 root tty       4, 18 Oct  4 00:59 /dev/tty18
                            crw--w---- 1 root tty       4, 19 Oct  4 00:59 /dev/tty19
                            crw--w---- 1 root tty       4,  2 Oct  4 00:59 /dev/tty2
                            crw--w---- 1 root tty       4, 20 Oct  4 00:59 /dev/tty20
                            crw--w---- 1 root tty       4, 21 Oct  4 00:59 /dev/tty21
                            crw--w---- 1 root tty       4, 22 Oct  4 00:59 /dev/tty22
                            crw--w---- 1 root tty       4, 23 Oct  4 00:59 /dev/tty23
                            crw--w---- 1 root tty       4, 24 Oct  4 00:59 /dev/tty24
                            crw--w---- 1 root tty       4, 25 Oct  4 00:59 /dev/tty25
                            crw--w---- 1 root tty       4, 26 Oct  4 00:59 /dev/tty26
                            crw--w---- 1 root tty       4, 27 Oct  4 00:59 /dev/tty27
                            crw--w---- 1 root tty       4, 28 Oct  4 00:59 /dev/tty28
                            crw--w---- 1 root tty       4, 29 Oct  4 00:59 /dev/tty29
                            crw--w---- 1 root tty       4,  3 Oct  4 00:59 /dev/tty3
                            crw--w---- 1 root tty       4, 30 Oct  4 00:59 /dev/tty30
                            crw--w---- 1 root tty       4, 31 Oct  4 00:59 /dev/tty31
                            crw--w---- 1 root tty       4, 32 Oct  4 00:59 /dev/tty32
                            crw--w---- 1 root tty       4, 33 Oct  4 00:59 /dev/tty33
                            crw--w---- 1 root tty       4, 34 Oct  4 00:59 /dev/tty34
                            crw--w---- 1 root tty       4, 35 Oct  4 00:59 /dev/tty35
                            crw--w---- 1 root tty       4, 36 Oct  4 00:59 /dev/tty36
                            crw--w---- 1 root tty       4, 37 Oct  4 00:59 /dev/tty37
                            crw--w---- 1 root tty       4, 38 Oct  4 00:59 /dev/tty38
                            crw--w---- 1 root tty       4, 39 Oct  4 00:59 /dev/tty39
                            crw--w---- 1 root tty       4,  4 Oct  4 00:59 /dev/tty4
                            crw--w---- 1 root tty       4, 40 Oct  4 00:59 /dev/tty40
                            crw--w---- 1 root tty       4, 41 Oct  4 00:59 /dev/tty41
                            crw--w---- 1 root tty       4, 42 Oct  4 00:59 /dev/tty42
                            crw--w---- 1 root tty       4, 43 Oct  4 00:59 /dev/tty43
                            crw--w---- 1 root tty       4, 44 Oct  4 00:59 /dev/tty44
                            crw--w---- 1 root tty       4, 45 Oct  4 00:59 /dev/tty45
                            crw--w---- 1 root tty       4, 46 Oct  4 00:59 /dev/tty46
                            crw--w---- 1 root tty       4, 47 Oct  4 00:59 /dev/tty47
                            crw--w---- 1 root tty       4, 48 Oct  4 00:59 /dev/tty48
                            crw--w---- 1 root tty       4, 49 Oct  4 00:59 /dev/tty49
                            crw--w---- 1 root tty       4,  5 Oct  4 00:59 /dev/tty5
                            crw--w---- 1 root tty       4, 50 Oct  4 00:59 /dev/tty50
                            crw--w---- 1 root tty       4, 51 Oct  4 00:59 /dev/tty51
                            crw--w---- 1 root tty       4, 52 Oct  4 00:59 /dev/tty52
                            crw--w---- 1 root tty       4, 53 Oct  4 00:59 /dev/tty53
                            crw--w---- 1 root tty       4, 54 Oct  4 00:59 /dev/tty54
                            crw--w---- 1 root tty       4, 55 Oct  4 00:59 /dev/tty55
                            crw--w---- 1 root tty       4, 56 Oct  4 00:59 /dev/tty56
                            crw--w---- 1 root tty       4, 57 Oct  4 00:59 /dev/tty57
                            crw--w---- 1 root tty       4, 58 Oct  4 00:59 /dev/tty58
                            crw--w---- 1 root tty       4, 59 Oct  4 00:59 /dev/tty59
                            crw--w---- 1 root tty       4,  6 Oct  4 00:59 /dev/tty6
                            crw--w---- 1 root tty       4, 60 Oct  4 00:59 /dev/tty60
                            crw--w---- 1 root tty       4, 61 Oct  4 00:59 /dev/tty61
                            crw--w---- 1 root tty       4, 62 Oct  4 00:59 /dev/tty62
                            crw--w---- 1 root tty       4, 63 Oct  4 00:59 /dev/tty63
                            crw--w---- 1 root tty       4,  7 Oct  4 00:59 /dev/tty7
                            crw--w---- 1 root tty       4,  8 Oct  4 00:59 /dev/tty8
                            crw--w---- 1 root tty       4,  9 Oct  4 00:59 /dev/tty9
                            crw------- 1 root root      5,  3 Oct  4 00:59 /dev/ttyprintk
                            crw-rw---- 1 root dialout   4, 64 Oct  4 00:59 /dev/ttyS0
                            crw-rw---- 1 root dialout   4, 65 Oct  4 00:59 /dev/ttyS1
                            crw-rw---- 1 root dialout   4, 74 Oct  4 00:59 /dev/ttyS10
                            crw-rw---- 1 root dialout   4, 75 Oct  4 00:59 /dev/ttyS11
                            crw-rw---- 1 root dialout   4, 76 Oct  4 00:59 /dev/ttyS12
                            crw-rw---- 1 root dialout   4, 77 Oct  4 00:59 /dev/ttyS13
                            crw-rw---- 1 root dialout   4, 78 Oct  4 00:59 /dev/ttyS14
                            crw-rw---- 1 root dialout   4, 79 Oct  4 00:59 /dev/ttyS15
                            crw-rw---- 1 root dialout   4, 80 Oct  4 00:59 /dev/ttyS16
                            crw-rw---- 1 root dialout   4, 81 Oct  4 00:59 /dev/ttyS17
                            crw-rw---- 1 root dialout   4, 82 Oct  4 00:59 /dev/ttyS18
                            crw-rw---- 1 root dialout   4, 83 Oct  4 00:59 /dev/ttyS19
                            crw-rw---- 1 root dialout   4, 66 Oct  4 00:59 /dev/ttyS2
                            crw-rw---- 1 root dialout   4, 84 Oct  4 00:59 /dev/ttyS20
                            crw-rw---- 1 root dialout   4, 85 Oct  4 00:59 /dev/ttyS21
                            crw-rw---- 1 root dialout   4, 86 Oct  4 00:59 /dev/ttyS22
                            crw-rw---- 1 root dialout   4, 87 Oct  4 00:59 /dev/ttyS23
                            crw-rw---- 1 root dialout   4, 88 Oct  4 00:59 /dev/ttyS24
                            crw-rw---- 1 root dialout   4, 89 Oct  4 00:59 /dev/ttyS25
                            crw-rw---- 1 root dialout   4, 90 Oct  4 00:59 /dev/ttyS26
                            crw-rw---- 1 root dialout   4, 91 Oct  4 00:59 /dev/ttyS27
                            crw-rw---- 1 root dialout   4, 92 Oct  4 00:59 /dev/ttyS28
                            crw-rw---- 1 root dialout   4, 93 Oct  4 00:59 /dev/ttyS29
                            crw-rw---- 1 root dialout   4, 67 Oct  4 00:59 /dev/ttyS3
                            crw-rw---- 1 root dialout   4, 94 Oct  4 00:59 /dev/ttyS30
                            crw-rw---- 1 root dialout   4, 95 Oct  4 00:59 /dev/ttyS31
                            crw-rw---- 1 root dialout   4, 68 Oct  4 00:59 /dev/ttyS4
                            crw-rw---- 1 root dialout   4, 69 Oct  4 00:59 /dev/ttyS5
                            crw-rw---- 1 root dialout   4, 70 Oct  4 00:59 /dev/ttyS6
                            crw-rw---- 1 root dialout   4, 71 Oct  4 00:59 /dev/ttyS7
                            crw-rw---- 1 root dialout   4, 72 Oct  4 00:59 /dev/ttyS8
                            crw-rw---- 1 root dialout   4, 73 Oct  4 00:59 /dev/ttyS9
                            crw-rw-rw- 1 root dialout 188,  0 Oct  5 23:13 /dev/ttyUSB0
                            
                            root@pve:~# ls -l /dev/bus/usb/002/005
                            crw-rw-r-- 1 root root 189, 132 Oct  5 23:13 /dev/bus/usb/002/005
                            
                            arch: amd64
                            cores: 2
                            hostname: iobroker
                            memory: 3072
                            net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=7A:8D:76:2A:03:3B,ip=dhcp,ip6=auto,type=veth
                            onboot: 1
                            ostype: debian
                            rootfs: local-lvm:vm-101-disk-0,size=15G
                            swap: 512
                            lxc.cgroup.devices.allow: c 189:* rwm
                            lxc.mount.entry: /dev/bus/usb/002/005 dev/bus/usb/002/005 none bind,optional,create=file
                            lxc.cgroup.devices.allow: c 189:* rwm
                            lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                            
                            root@pve:~# chmod o+rw /dev/ttyUSB0
                            
                            oberfraggerO Offline
                            oberfraggerO Offline
                            oberfragger
                            wrote on last edited by
                            #21

                            Ich antworte mir mal selber...das hier gefunden und es funzt:
                            https://forum.proxmox.com/threads/werde-wahnsinnig-lxc-passthough.56632/

                            Meine Config sieht nun so aus...Muss das nochmal anpassen. Entweder versehetlich die 188 mit der 189 verwechselt oder die Zeile 15 hats gebracht.

                            arch: amd64
                            cores: 2
                            hostname: iobroker
                            memory: 3072
                            net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=7A:8D:76:2A:03:3B,ip=dhcp,ip6=auto,type=veth
                            onboot: 1
                            ostype: debian
                            rootfs: local-lvm:vm-101-disk-0,size=15G
                            swap: 512
                            lxc.cgroup.devices.allow: c 189:* rwm
                            lxc.mount.entry: /dev/bus/usb/002/005 dev/bus/usb/002/005 none bind,optional,create=file
                            lxc.cgroup.devices.allow: c 189:* rwm
                            lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                            lxc.cgroup.devices.allow: c 188:* rwm
                            lxc.cgroup.devices.allow: c 10:200 rwm
                            lxc.mount.entry: /dev/ttyUSB0 dev/ttyUSB0 none bind,optional,create=file
                            
                            M 1 Reply Last reply
                            1
                            • oberfraggerO oberfragger

                              Ich antworte mir mal selber...das hier gefunden und es funzt:
                              https://forum.proxmox.com/threads/werde-wahnsinnig-lxc-passthough.56632/

                              Meine Config sieht nun so aus...Muss das nochmal anpassen. Entweder versehetlich die 188 mit der 189 verwechselt oder die Zeile 15 hats gebracht.

                              arch: amd64
                              cores: 2
                              hostname: iobroker
                              memory: 3072
                              net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=7A:8D:76:2A:03:3B,ip=dhcp,ip6=auto,type=veth
                              onboot: 1
                              ostype: debian
                              rootfs: local-lvm:vm-101-disk-0,size=15G
                              swap: 512
                              lxc.cgroup.devices.allow: c 189:* rwm
                              lxc.mount.entry: /dev/bus/usb/002/005 dev/bus/usb/002/005 none bind,optional,create=file
                              lxc.cgroup.devices.allow: c 189:* rwm
                              lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                              lxc.cgroup.devices.allow: c 188:* rwm
                              lxc.cgroup.devices.allow: c 10:200 rwm
                              lxc.mount.entry: /dev/ttyUSB0 dev/ttyUSB0 none bind,optional,create=file
                              
                              M Offline
                              M Offline
                              Malz1902
                              wrote on last edited by
                              #22

                              @oberfragger würde lieber dev/serial/by-id durchreichen, im Falles eines reboots sicherer.

                              lxc.mount.entry: /dev/serial/by-id/xxx dev/serial/by-id/xxx none bind,optional,create=file
                              
                              chmod o+rw /dev/serial/by-id/xxx
                              
                              oberfraggerO 2 Replies Last reply
                              0
                              • M Malz1902

                                @oberfragger würde lieber dev/serial/by-id durchreichen, im Falles eines reboots sicherer.

                                lxc.mount.entry: /dev/serial/by-id/xxx dev/serial/by-id/xxx none bind,optional,create=file
                                
                                chmod o+rw /dev/serial/by-id/xxx
                                
                                oberfraggerO Offline
                                oberfraggerO Offline
                                oberfragger
                                wrote on last edited by oberfragger
                                #23

                                @Malz1902 Danke für den Hinweis. Meinst den den reboot des gesamten Hosts oder der VM? Ansonsten- kannst du mir das am meinem Beispiel bitte konkretisieren?
                                Serial lasse ich warscheinlich so drin stehen, by-id auch... was mus aber bei xxx stehen bzw. wie ermittel ich das?

                                und welche zeile ist "richtiger"?

                                lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                                lxc.mount.entry: /dev/ttyUSB0 dev/ttyUSB0 none bind,optional,create=file
                                

                                Zeile 1, oder?

                                M 1 Reply Last reply
                                0
                                • oberfraggerO oberfragger

                                  @Malz1902 Danke für den Hinweis. Meinst den den reboot des gesamten Hosts oder der VM? Ansonsten- kannst du mir das am meinem Beispiel bitte konkretisieren?
                                  Serial lasse ich warscheinlich so drin stehen, by-id auch... was mus aber bei xxx stehen bzw. wie ermittel ich das?

                                  und welche zeile ist "richtiger"?

                                  lxc.mount.entry: /dev/ttyUSB0 /dev/ttyUSB0 none bind,optional,create=file
                                  lxc.mount.entry: /dev/ttyUSB0 dev/ttyUSB0 none bind,optional,create=file
                                  

                                  Zeile 1, oder?

                                  M Offline
                                  M Offline
                                  Malz1902
                                  wrote on last edited by
                                  #24

                                  @oberfragger Zeile 1 ist richtig.

                                  Mach mal auf edm Host

                                   ls -la /dev/serial/by-id
                                  

                                  dann bekommst du ne Liste Deinen USB Geräte
                                  XXX ersetzt Du dann mit Deinem USB Gerät

                                  oberfraggerO 1 Reply Last reply
                                  1
                                  • M Malz1902

                                    @oberfragger Zeile 1 ist richtig.

                                    Mach mal auf edm Host

                                     ls -la /dev/serial/by-id
                                    

                                    dann bekommst du ne Liste Deinen USB Geräte
                                    XXX ersetzt Du dann mit Deinem USB Gerät

                                    oberfraggerO Offline
                                    oberfraggerO Offline
                                    oberfragger
                                    wrote on last edited by oberfragger
                                    #25

                                    @Malz1902 said in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                                    mit Deinem US

                                    Sorry dass ich fragen muss. Aber was ist jetzt die ID/xxx?

                                    root@pve:~# ls -la /dev/serial/by-id
                                    total 0
                                    drwxr-xr-x 2 root root 60 Oct  5 23:13 .
                                    drwxr-xr-x 4 root root 80 Oct  5 23:13 ..
                                    lrwxrwxrwx 1 root root 13 Oct  5 23:13 usb-FTDI_FT230X_Basic_UART_D306QJU0-if00-port0 -> ../../ttyUSB0
                                    

                                    usb-FTDI_FT230X_Basic_UART_D306QJU0-if00-port0 ?

                                    M 1 Reply Last reply
                                    0
                                    • M Malz1902

                                      @oberfragger würde lieber dev/serial/by-id durchreichen, im Falles eines reboots sicherer.

                                      lxc.mount.entry: /dev/serial/by-id/xxx dev/serial/by-id/xxx none bind,optional,create=file
                                      
                                      chmod o+rw /dev/serial/by-id/xxx
                                      
                                      oberfraggerO Offline
                                      oberfraggerO Offline
                                      oberfragger
                                      wrote on last edited by oberfragger
                                      #26

                                      @Malz1902 said in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                                      lxc.mount.entry: /dev/serial/by-id/xxx dev/serial/by-id/xxx none bind,optional,create=file

                                      Hi, bei dir fehlt auch der slash vor dem 2. dev/serial

                                      lxc.mount.entry: /dev/serial/by-id/xxx dev/serial/by-id/xxx none bind,optional,create=file
                                      
                                      

                                      und du hast geschrieben.... das Beispiel von mir mit 2. Slash ist richtig...!?! Haben wir uns ggf. missverstanden?

                                      M 1 Reply Last reply
                                      0
                                      • oberfraggerO oberfragger

                                        @Malz1902 said in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                                        lxc.mount.entry: /dev/serial/by-id/xxx dev/serial/by-id/xxx none bind,optional,create=file

                                        Hi, bei dir fehlt auch der slash vor dem 2. dev/serial

                                        lxc.mount.entry: /dev/serial/by-id/xxx dev/serial/by-id/xxx none bind,optional,create=file
                                        
                                        

                                        und du hast geschrieben.... das Beispiel von mir mit 2. Slash ist richtig...!?! Haben wir uns ggf. missverstanden?

                                        M Offline
                                        M Offline
                                        Malz1902
                                        wrote on last edited by
                                        #27

                                        @oberfragger meinte Zeile 2 ist richtig, so hab ich das zumindest be mir und es klappt

                                        1 Reply Last reply
                                        1
                                        • oberfraggerO oberfragger

                                          @Malz1902 said in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                                          mit Deinem US

                                          Sorry dass ich fragen muss. Aber was ist jetzt die ID/xxx?

                                          root@pve:~# ls -la /dev/serial/by-id
                                          total 0
                                          drwxr-xr-x 2 root root 60 Oct  5 23:13 .
                                          drwxr-xr-x 4 root root 80 Oct  5 23:13 ..
                                          lrwxrwxrwx 1 root root 13 Oct  5 23:13 usb-FTDI_FT230X_Basic_UART_D306QJU0-if00-port0 -> ../../ttyUSB0
                                          

                                          usb-FTDI_FT230X_Basic_UART_D306QJU0-if00-port0 ?

                                          M Offline
                                          M Offline
                                          Malz1902
                                          wrote on last edited by
                                          #28

                                          @oberfragger said in [gelöst]CC2531 an proxmox an LXC durchreichen scheitert...:

                                          usb-FTDI_FT230X_Basic_UART_D306QJU0-if00-port0

                                          usb-FTDI_FT230X_Basic_UART_D306QJU0-if00-port0 ist die ID

                                          also

                                          lxc.mount.entry: /dev/serial/by-id/usb-FTDI_FT230X_Basic_UART_D306QJU0-if00-port0 dev/serial/by-id/usb-FTDI_FT230X_Basic_UART_D306QJU0-if00-port0 none bind,optional,create=file
                                          
                                          oberfraggerO 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate
                                          FAQ Cloud / IOT
                                          HowTo: Node.js-Update
                                          HowTo: Backup/Restore
                                          Downloads
                                          BLOG

                                          574

                                          Online

                                          32.4k

                                          Users

                                          81.3k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe