Solved Netzwerkproblem
-
@seic was ich meinte ist, dass du nicht brauchst, die IP-Adresse beim Foto zu löschen.
-
Hallo,
ich habe das gleiche Problem bei mein RPI3 festgestellt.
IP Adresse wird zugewiesen allerdings bleibt der Status in den Netzwerkeinstellung auf "nicht verbunden". Sowohl ein Zugriff auf den Pi über den PC ist möglich als auch das scrapen. Hab die Stable 4.0 Version am laufen. -
Bei meinem RPI3 wars ähnlich. Konnte drauf zugreifen. Allerdings hat er, als ich eine ISO rüberschieben wollte, einen Fehler angezeigt. Nach einem Neustart des routers hat alles wieder funktioniert
-
Habe auch das selbe Problem. Habe noch die 4.0beta5 drauf und wollte jetzt auf Final updaten, aber das funktioniert nicht.
Lustigerweise kann ich wie die anderen auch, von meinem PC ohne Probleme drauf zugreifen, also funktioniert die Netzwerkverbindung ja offensichtlich. Wenn ich aber in der Recalbox in die Netzwerkeinstellungen gehe, dann steht da nicht verbunden, aber die IP-Adresse wird mir angezeigt.
Auch beim Starten wird mir gesagt, daß ein neues Update verfügbar ist, nur wenn ich dann das Update einleite, kommt die Fehlermeldung "Keine Netzwerkverbindung". -
Scheint irgendwie ein bekanntes Problem zu sein mittlerweile..
@Substring @Nachtgarm there are a lot of people who are facing the issue that recalbox does not recognize the internet connection but they can access recalbox through the explorer in windows for example. Any news about this? -
@lackyluuk yeah, same with https://forum.recalbox.com/topic/5039/can-t-connect/11
One should check IP /Gateway / DNS and make sure the problem is not with recalbox.com (just ping google) -
Ich habe genau das gleiche Problem. Wollte gestern von der Beta auf die Final updaten. Mir wird nach dem Start auch angezeigt, das ein Update zur Verfügung steht, allerdings kann ich es nicht herunterladen, da angeblich keine Netzwerkverbindung besteht. Racalbox kann aber angepingt werden und über den Browser auch darauf zugegriffen werden. Ein Neustart des Routers (Fritz!Box) hat den Fehler nicht behoben.
-
@Spectral_PS4 please provide your discoveries to @Substring in english
It looks that recalbox.com can be pinged.
-
@Substring I have exactly the same problem. Wanted yesterday from the beta to the final update. I am also displayed after the start, which is an update is available, but I can not download it, because supposedly no network connection exists. Racalbox can be ping and can be accessed via the browser. A restart of the router (Fritz! Box) has not fixed the error.
-
@Spectral_PS4 you can't download the update ? What's the error message ?
-
@Substring The error message is "No network connection". I can ping Recalbox and the system is accessible via Samba. The update I then executed manually, the error persists. See also Forum Post by seic
-
@Substring
It gives you the message that there is no connection if you want to update via Recalbox OS.
But the strange thing is I can scrape roms even if the OS shows me no connection. -
@seic That's either a DNS problemeither a scripting error to detect the internet connection. We're digging into the problem
-
So, recalbox pings recalbox.com to check if you're "connected". That DNS is irrevelant as not everyone can ping it, may correct that
-
I have the same problem and I also live in Germany.
I can't ping recalbox.com from any device in my network. The ip adress ist found but the server doesn't respond.
I'm still using Beta 6 of recalbox and updating is not possible at the moment.
-
Same problem, also from Germany.
Settings show "no connection". Connection via SSH is fine.Strange thing is that scraping of ROMs works and tracking with retroachievements server also work as it should. But no updates possible.
Yes, w-lan settings are correct, also looked in the config.
-
@Substring said in Netzwerkproblem:
So, recalbox pings recalbox.com to check if you're "connected". That DNS is irrevelant as not everyone can ping it, may correct that
I can ping WWW.recalbox.com but not recalbox.com
The "www" has to be in the address
-
@Nachtgarm @paradadf @lackyluuk @Substring
Das Problem, dass recalbox.com nur mit 'www' vorne dran erreichbar ist, besteht weiterhin.
Wie ist denn die recalbox Domain in ISPConfig angelegt (mit www oder ohne)?
Diese muss ohne www, also nur 'RECALBOX.DE' angelegt sein und dann 'www' als Auto-Subdomain ausgewählt sein.Macht mal eine nslookup für RECALBOX.DE
und für WWW.RECALBOX.DE
und kontrolliert welche IPs zurück gegeben werden. Die IPs müssen identisch sein.
If your host (gandi.net ?) supports .htaccess there might be an easy solution.
EDIT:
IP for www.recalbox.com is 163.172.153.70
IP for recalbox.com is 217.70.184.38That is why the update is not working and the recalbox shows "not connected"
-
@DannyOcean still, some people can ping recalbox.com, some others can't. We're working on it
-
@Substring
sure, but to fix the problem the IP for recalbox.com and www.recalbox.com just have to be the same.
Check the DNS settings and see the A record for yourself.
The hoster (gandi.net ?) should be able to fix it.In ISPconfig the domain has to be "RECALBOX.COM" (without www) and auto-subdomain has to be "www"
The A records in the DNS setting:
IP for www.recalbox.com is 163.172.153.70
IP for recalbox.com is 217.70.184.38That is why the update is not working and the recalbox shows "not connected"
To fix the problem the IP for recalbox.com and www.recalbox.com just have to be the same.
Check the DNS settings and see the A record for yourself.
The hoster (gandi.net ?) should be able to fix it.You also have to add the following code to your root .htaccess file:
This redirects all non-www requests to your site to the www version
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
The second line means: if the HTTP_HOST does not (!) start with (^) "www.", then put it in memory for the next line. The next line says: from what was captured in the previous line, match everything (.*) from beginning (^) to end ($) and save everything (inside the parenthesis) as $1. Then replace $1 with ""; plus the HTTP_HOST variable.
And this would redirect all www requests to your site to the non-www version
RewriteEngine On
RewriteCond %{HTTP_HOST} !^my-domain.com$ [NC]
RewriteRule ^(.*)$ http://my-domain.com/$1 [R=301,L]
I really hope this helps, and everyone will be able to update
Cheers