Hallo zusammen,
ich habe seit kurzem seitdem ich meinem Pi B2 aktuellste Version Jessie eine statische IP über die /etc/dhcpcd.conf vergeben habe, immer mal wieder Netzwerkausfälle meines Pis, sprich ich kann ihn nicht mehr anpingen, weder per ping oder arping und komm dementsprechend nicht mehr auf meinem Pi drauf. Wenn ich am Pi dann ein HDMI-Kabel anschließe um nachzuschauen worans liegt, nimmt mein Bildschirm kein Signal entgegen. Allgemein nimmt mein Pi nur ein HDMI Signal entgegen, wenn das HDMI Kabel vor dem Start des Pis im Pi steckt.
Zuvor, hatte ich in der /etc/network/interfaces statische IP + in der /etc/dhcpcd.conf statische IP eingestellt gehabt. Diese statische IP war zudem die IP, die mein DHCP mir aus dem DHCP Pool vergeben hat. Dies war ziemlich unsinnig aber damit hatte ich allerdings nie Probleme.
Ich habe mittlerweile die /etc/network/interfaces Datei auf den Ausgangszustand zurückgestellt.
Die /etc/network/interfaces Datei sieht so aus:
# interfaces(5) file used by ifup(8) and ifdown(8)
# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
auto lo
iface lo inet loopback
iface eth0 inet manual
#allow-hotplug wlan0
#iface wlan0 inet manual
#wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
#allow-hotplug wlan1
#iface wlan1 inet manual
#wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Display More
Meine /etc/dhcpcd.conf sieht momentan so aus:
# A sample configuration for dhcpcd.
# See dhcpcd.conf(5) for details.
# Allow users of this group to interact with dhcpcd via the control socket.
#controlgroup wheel
# Inform the DHCP server of our hostname for DDNS.
hostname
# Use the hardware address of the interface for the Client ID.
clientid
# or
# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
#duid
# Persist interface configuration when dhcpcd exits.
persistent
# Rapid commit support.
# Safe to enable by default because it requires the equivalent option set
# on the server to actually work.
option rapid_commit
# A list of options to request from the DHCP server.
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
# Most distributions have NTP support.
option ntp_servers
# Respect the network MTU.
# Some interface drivers reset when changing the MTU so disabled by default.
#option interface_mtu
# A ServerID is required by RFC2131.
require dhcp_server_identifier
# Generate Stable Private IPv6 Addresses instead of hardware based ones
slaac private
# A hook script is provided to lookup the hostname if not set by the DHCP
# server, but it should not be run by default.
nohook lookup-hostname
interface eth0
static ip_address=192.168.2.164/24
static routers=192.168.2.1
static domain_name_servers=8.8.8.8, 8.8.4.4
Display More
Die IP .164 befindet sich außerhalb des DHCP Pools meines Routers.
Auf meinem Pi habe ich openvpn laufen.
Diesbezüglich hatte ich auch Probleme, dass openvpn immer wieder den Host nicht auflösen konnte. Dazu bin ich mit einem Skript auf eine Lösung gekommen.
Zu meinem Setup Zuhause:
Telekom-Router w704 TypC.
8 Port Switch DLink.
Power Lan Adapter RJ45 geht zum Switch.
Eine Möglichkeit, meinen Pi direkt am Router zu testen, habe ich leider nicht da.
Wenns nach mir ginge, würde ich mir ein Modem und WLAN-Router oder DSL-Router kaufen der DD-WRT flashbar ist.
Dies ist leider in meiner Lage nicht möglich.
Vielen Dank im Vorraus!
Gruß
rockweapon