Hi All,
Looks like all 3 of the issues are fixed. Ill leave the solutions below in case it will help anyone else.
I am now able to access the Reef-Pi using Mixedreef.local after installing Apples mDNS. I used the Bonjour print service to install it. https://support.apple.com/kb/DL999?locale=en_US . So both the IP and the Local name works great.
Turning off my 5Ghz network and just running the 2.4Ghz now lets me access the Reef-Pi from any device. The Wifi's were named different things but i guess it was still causing issues.
The Pi did not lose connection last night for the first time after installing the Watchdog. Hopefully this keeps up. Set up of watchdog below. You can also have the watchdog monitor for Pi lock ups and force reboot. I have not set that up yet.
#Install and configure watchdog.
sudo apt-get install watchdog
# access watchdog conf file.
sudo nano /etc/watchdog.conf
# The below settings will set up Watchdog to monitor the internet for connection and restart the wireless if it detects no connection. These should be all be in the conf file and should just need to be uncommented. But these can be added anywhere.
interface = wlan0 # use interface wlan0 if Wifi and eth0 if lan
ping-count = 3 # how many times you want it to ping. I picked 3
ping = 192.168.***.*** # Pick which IP you want to ping. I picked my router.
interval = 300 # how many second in-between checks. I set mine to 300 which is 5 minutes
Hope this can help if needed.
Looks like all 3 of the issues are fixed. Ill leave the solutions below in case it will help anyone else.
I am now able to access the Reef-Pi using Mixedreef.local after installing Apples mDNS. I used the Bonjour print service to install it. https://support.apple.com/kb/DL999?locale=en_US . So both the IP and the Local name works great.
Turning off my 5Ghz network and just running the 2.4Ghz now lets me access the Reef-Pi from any device. The Wifi's were named different things but i guess it was still causing issues.
The Pi did not lose connection last night for the first time after installing the Watchdog. Hopefully this keeps up. Set up of watchdog below. You can also have the watchdog monitor for Pi lock ups and force reboot. I have not set that up yet.
#Install and configure watchdog.
sudo apt-get install watchdog
# access watchdog conf file.
sudo nano /etc/watchdog.conf
# The below settings will set up Watchdog to monitor the internet for connection and restart the wireless if it detects no connection. These should be all be in the conf file and should just need to be uncommented. But these can be added anywhere.
interface = wlan0 # use interface wlan0 if Wifi and eth0 if lan
ping-count = 3 # how many times you want it to ping. I picked 3
ping = 192.168.***.*** # Pick which IP you want to ping. I picked my router.
interval = 300 # how many second in-between checks. I set mine to 300 which is 5 minutes
Hope this can help if needed.