Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Hardware
    4. Raspberry Pi4 kein eth0 mehr

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    Raspberry Pi4 kein eth0 mehr

    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      stoffel67 @UncleSam last edited by Homoran

      @UncleSam

      pi@raspip:/etc/network $ ifconfig
      enxb827eb304c11: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
              inet 10.10.13.60  netmask 255.255.255.0  broadcast 10.10.13.1
              inet6 2001:16b8:247b:7500:6968:4123:1c29:6c99  prefixlen 64  scopeid 0x0<global>
              inet6 fe80::ca0f:8848:a709:54f6  prefixlen 64  scopeid 0x20<link>
              ether b8:27:eb:30:4c:11  txqueuelen 1000  (Ethernet)
              RX packets 5108385  bytes 850939601 (811.5 MiB)
              RX errors 2  dropped 9  overruns 0  frame 0
              TX packets 5436343  bytes 1027127069 (979.5 MiB)
              TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
      
      lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
              inet 127.0.0.1  netmask 255.0.0.0
              inet6 ::1  prefixlen 128  scopeid 0x10<host>
              loop  txqueuelen 1000  (Lokale Schleife)
              RX packets 101465518  bytes 27563803340 (25.6 GiB)
              RX errors 0  dropped 0  overruns 0  frame 0
              TX packets 101465518  bytes 27563803340 (25.6 GiB)
              TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
      
      wlan0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
              ether b8:27:eb:65:19:44  txqueuelen 1000  (Ethernet)
              RX packets 2656  bytes 671049 (655.3 KiB)
              RX errors 0  dropped 0  overruns 0  frame 0
              TX packets 1408  bytes 296331 (289.3 KiB)
              TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
      

      MOD-Edit: Code in code-tags gesetzt!

      UncleSam 2 Replies Last reply Reply Quote 0
      • UncleSam
        UncleSam Developer @stoffel67 last edited by

        @stoffel67 Bitte Code Tags verwenden (</> oben in der Liste beim schreiben des Posts).

        1 Reply Last reply Reply Quote 0
        • UncleSam
          UncleSam Developer @stoffel67 last edited by UncleSam

          @stoffel67 sagte in Raspberry Pi4 kein eth0 mehr:

          enxb827eb304c11

          Dein Ethernet Interface heisst neu scheinbar "enxb827eb304c11".

          Damit musst du den wahrscheinlich noch auf DHCP konfigurieren. (gemäss @Thomas-Braun ) :

          ifup enxb827eb304c11
          ifconfig enxb827eb304c11 dhcp start
          
          1 Reply Last reply Reply Quote 0
          • UncleSam
            UncleSam Developer @stoffel67 last edited by

            @stoffel67 sagte in Raspberry Pi4 kein eth0 mehr:

            da wird bei einem PING nur eine IPV6 adresse angezeigt

            Hast du etwas an deinem Router geändert? IPv6 eingeschaltet oder so?

            S 1 Reply Last reply Reply Quote 0
            • S
              stoffel67 @UncleSam last edited by

              @UncleSam Nein, hab nix geändert,

              pi@raspip:/etc/network $ ifup enxb827eb304c11
              ifup: unknown interface enxb827eb304c11
              pi@raspip:/etc/network $ ifconfig enxb827eb304c11 dhcp start
              dhcp: Unbekannter Rechner
              ifconfig: `--help' gives usage information.
              pi@raspip:/etc/network $
              
              
              UncleSam 1 Reply Last reply Reply Quote 0
              • UncleSam
                UncleSam Developer @stoffel67 last edited by

                @stoffel67 und mit sudo?

                S 1 Reply Last reply Reply Quote 0
                • S
                  stoffel67 @UncleSam last edited by

                  @UncleSam
                  geliches... da scheint am ifocnfig was nicht zu stimmen...

                  pi@raspip:/etc/network $ sudo ifup enxb827eb304c11
                  ifup: unknown interface enxb827eb304c11
                  pi@raspip:/etc/network $ sudo ifconfig enxb827eb304c11 dhcp start
                  dhcp: Unbekannter Rechner
                  ifconfig: `--help' gives usage information.
                  
                  
                  Thomas Braun 2 Replies Last reply Reply Quote 0
                  • Thomas Braun
                    Thomas Braun Most Active @stoffel67 last edited by Thomas Braun

                    @stoffel67

                    sudo service dhcpcd status
                    route -n
                    

                    liefert?

                    S 1 Reply Last reply Reply Quote 0
                    • Thomas Braun
                      Thomas Braun Most Active @stoffel67 last edited by

                      @stoffel67
                      Und was steht in

                      cat /etc/network/interface
                      

                      drin?

                      S 1 Reply Last reply Reply Quote 0
                      • S
                        stoffel67 @Thomas Braun last edited by

                        @Thomas-Braun

                        pi@raspip:/etc/network $ route -n
                        Kernel-IP-Routentabelle
                        Ziel            Router          Genmask         Flags Metric Ref    Use Iface
                        0.0.0.0         0.0.0.0         0.0.0.0         U     202    0        0 enxb827eb304c11
                        169.254.0.0     0.0.0.0         255.255.0.0     U     202    0        0 enxb827eb304c11
                        pi@raspip:/etc/network $
                        
                        
                        1 Reply Last reply Reply Quote 0
                        • S
                          stoffel67 @Thomas Braun last edited by

                          @Thomas-Braun

                          pi@raspip:/etc/network $ cat /etc/network/interface
                          cat: /etc/network/interface: Datei oder Verzeichnis nicht gefunden
                          
                          
                          Thomas Braun 1 Reply Last reply Reply Quote 0
                          • Thomas Braun
                            Thomas Braun Most Active @stoffel67 last edited by Thomas Braun

                            @stoffel67
                            Am besten liest du dich hier ein:

                            http://www.netzmafia.de/skripten/hardware/RasPi/RasPi_Network.html

                            Insbesondere der Absatz
                            Oh Schreck! eth0 ist weg!
                            dürfte interessant sein.

                            S 1 Reply Last reply Reply Quote 1
                            • S
                              stoffel67 @Thomas Braun last edited by

                              @Thomas-Braun
                              OK, hab's gelesen... und "net.ifnames=0" in cmdlines.txt eingetragen,
                              danach reboot... und siehe da eth0 ist wieder da... und ioBroker schient auch wieder fehlerfrei zu laufen( puhover geht)
                              werde es jetzt mal beobachten...

                              1 Reply Last reply Reply Quote 1
                              • First post
                                Last post

                              Support us

                              ioBroker
                              Community Adapters
                              Donate

                              612
                              Online

                              31.8k
                              Users

                              79.9k
                              Topics

                              1.3m
                              Posts

                              eth0 lan pi4
                              3
                              17
                              2265
                              Loading More Posts
                              • Oldest to Newest
                              • Newest to Oldest
                              • Most Votes
                              Reply
                              • Reply as topic
                              Log in to reply
                              Community
                              Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                              The ioBroker Community 2014-2023
                              logo