Ethernet connection

RSH.R7064.2020-09-20T16 24 16.logs.tar (1.7 MB) RSH.R7064.2020-09-20T16 24 16.logs.tar (1.7 MB)

Hello,After running for almost a week on ethernet with no problems,I rebooted my shake and now it won’t connect via ethernet-It will on wifi-I don’t know what would have changed

Hello Dave,

It is strange, but stranger things have happened.

From the postboot.log file, these lines explain the issue as a DNS problem, as if only with the LAN cable the Shake cannot reach the online servers:

2020 264 16:11:50: Unable to resolve hostname 'raspberryshake.net', most likely no DNS server available
2020 264 16:11:50: No internet connection found
2020 264 16:12:00: Unable to resolve hostname 'raspberryshake.net', most likely no DNS server available

The first thing you can try is simply to shut down your modem/router, wait a couple of minutes, and then turn it on again, to see if it was a simple issue with the modem/router itself.

Hopefully, if you haven’t already tried, this should work.


If this does not happen, then you can also try to change the DNS on the Shake, as explained in this page on our manual, https://manual.raspberryshake.org/firewallIssues.html#how-to-manually-change-dns, to see if this solves the issue. I’ll add some more info below.

There are two possible ways: setting a manual IP and DNS in the http://rs.local web config, or adding a line to /etc/dhcpcd.conf in the Shake filesystem.

  1. The first doesn’t require logging into the Shake. Navigate to rs.local, make note of the Shake’s IP address, then click on the Settings gear icon (high on the left) to access the configuration menu.

    Click on NETWORK, then under ETHERNET SETTINGS, click on “Enable static IP”.

    Fill out the Static IP field with the address you copied from the front page.

    Fill out the DNS server field with a more reliable DNS service. OpenDNS, which is 208.67.222.222, is a good choice. You can also use Cloudflare DNS service by entering 1.1.1.1 or Google by entering 8.8.8.8.

The second way, a bit more complex, in which you can keep your Shake on a dynamic IP (assigned by your modem/router):

  1. SSH into the Shake (guide here: https://manual.raspberryshake.org/ssh.html)

    Once you’re in, copy and paste these commands (this example is for Cloudflare DNS):

    sudo echo 'static domain_name_servers=1.1.1.1 1.0.0.1' >> /etc/dhcpcd.conf
    sudo service dhcpcd restart
    

    Now make sure those changes took hold:

    nano /etc/resolv.conf
    

    The file should look like the following:

    # Generated by resolvconf
    nameserver 1.1.1.1
    nameserver 1.0.0.1
    

You should not need to restart, these changes will take effect immediately, but if you want, you can still do it.

Ethernet connection-I seem to have been able to restore my ethernet connection again-Thanks for the help!

1 Like

No problem at all, glad that the connection works again!