Ronald Nutter's Blog, page 4
August 9, 2021
How to use a NAS (Unraid and others) as a backup solution
Want a backup solution for your existing NAS?
Want an option that is more robust than using a single drive?
Stay tuned and I will help you find a solution
1. NAS vs Single Drive
2. Same or different brand of NAS
3. How many NAS’s do you need for a backup solution?
a. 1 NAS = no backup
b. 2 NAS = 1 backup
c. 3 NAS = 2 backup
4. UPS vs power down for redundant NAS’s
a. UPS needed during file sync interval
b. Power down will help prolong life of NAS drives
5. Data Migration process
a. Assuming 3 NAS solution
i. Copy A to B
1) FreeFileSync
a) Open source
b) Multi platform support
ii. Resolve any errors during migration process
iii. Copy B to C, no errors should show up
================================================
*** Show Notes, Links and Resources ****
FreeFileSync
https://freefilesync.org/download.php
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #NAS #Backup #Unraid
The post How to use a NAS (Unraid and others) as a backup solution first appeared on TechBytes With Ron Nutter.August 7, 2021
Why you should have a UPS on your NAS (Unraid or other)
Want to protect your NAS from power outages?
Want to know how to connect a UPS to your NAS?
Stay tuned and I will show you how to do this
1. How to size a UPS for your situation
2. Connecting UPS to Single NAS
3. Connecting UPS to Multiple NAS’s
Talk about connecting multiple NAS’s to one UPS via ethernet but NAS still has to be plugged into UPS for power for this to work
How to Use APC UPS with Two or More Computers – apcupsd Master Slave Setup
Compare power requirements for NAS vs what KillAWatt reports
================================================
*** Show Notes, Links and Resources ****
APC Back-UPS Pro 700VA UPS
https://amzn.to/3zXHVbb
P3 P4400 Kill A Watt Electricity Usage Monitor
https://amzn.to/3zSKWJK
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #APC #UPS #Unraid
The post Why you should have a UPS on your NAS (Unraid or other) first appeared on TechBytes With Ron Nutter.August 5, 2021
How to setup a Home Raid Lab using RPi Compute Module 4 (Part 2)
Want to learn how to create a raid0 on rpi?
Want to learn how to create a raid 1 array on rpi?
Want to see how to do this with RPI CM4?
Stay tuned and I will show you how to do this
TIMESTAMPS
0:00 – Intro
0:46 – What we will be covering
2:20 – creating SD card
2:43 – enable ssh on boot
3:04 – enable usb ports on IO card
3:26 – initial boot of CM4
4:10 – install OS updates
5:20 – checking USB ports being active
5:53 – install mdadm for raid
6:04 – checking mdadm
6:17 – checking USB drives
6:57 – partitioning drives
7:57 – checking partitions
8:58 – setting up raid 0
9:40 – setting up raid 1
10:33 – checking array build status
sudo apt-get update
sudo apt-get upgrade -y
Create zero bytes file named ssh in root of boot sd
Check for devices plugged in on usb
lsusb -t
Sudo nano /boot/config.txt
Add this line – dtoverlay=dwc2,dr_mode=host
Save and exit
Reboot pi and usb should be active
!! Install mdadm
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install mdadm -y
! Verifies mdadm is installed
sudo mdadm -V
!verify raid setup
sudo mdadm –examine /dev/sda /dev/sdb
! Show status of array building
cat /proc/mdstat
! For more detail in array building process
sudo mdadm –detail /dev/md0
! To stop array
sudo mdadm –stop –scan
! List drives current attached
lsblk -o NAME,SIZE,FSTYPE,TYPE,MOUNTPOINT
1. Identify mount point
lsblk -o NAME,SIZE,FSTYPE,TYPE,MOUNTPOINT
2. Raid 0
sudo mdadm –create –verbose /dev/md0 –level=0 –raid-devices=2 /dev/sda /dev/sdb
3. Raid 1
sudo mdadm –create –verbose /dev/md0 –level=1 –raid-devices=2 /dev/sda /dev/sdb
4. Create mount point
sudomkdir-p /mnt/md0
5. Save array layout
sudo mdadm –detail –scan |sudotee-a /etc/mdadm/mdadm.conf
6. Automounting at boot
echo’/dev/md0 /mnt/md0 ext4 defaults,nofail,discard 0 0’|sudotee-a /etc/fstab
https://www.jeffgeerling.com/blog/202...
https://www.digitalocean.com/communit...
Show how to do this on Linux as well
## These directions appear to be the way to go
Good way to introduce compute module 4
Raid 0 – striping data across drives
• Lowest overhead in write speed
• Single Drive failure results in total data loss
Raid 1 – mirrored drives (50% overhead)
• Match set of drives
• Single drive failure tolerated
• Slow write performance
• Data is written to both drives
================================================
*** Show Notes, Links and Resources ****
USB hub 3.0,7-Port USB Hub
https://amzn.to/3qU1v4S
Raspberry Pi Compute Module 4 Lite w/ Wifi
https://amzn.to/3eXyMqZ
Raspberry Pi Compute Module 4 IO Board
https://amzn.to/3BFBfA9
12V 5A Power Supply, Waysse Power Supply Adapter
https://amzn.to/3BFRJsb
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #cm4 #rpi #RaidWant to learn how to create a raid0 on rpi?
Want to learn how to create a raid 1 array on rpi?
Want to see how to do this with RPI CM4?
Stay tuned and I will show you how to do this
TIMESTAMPS
0:00 – Intro
0:46 – What we will be covering
2:20 – creating SD card
2:43 – enable ssh on boot
3:04 – enable usb ports on IO card
3:26 – initial boot of CM4
4:10 – install OS updates
5:20 – checking USB ports being active
5:53 – install mdadm for raid
6:04 – checking mdadm
6:17 – checking USB drives
6:57 – partitioning drives
7:57 – checking partitions
8:58 – setting up raid 0
9:40 – setting up raid 1
10:33 – checking array build status
sudo apt-get update
sudo apt-get upgrade -y
Create zero bytes file named ssh in root of boot sd
Check for devices plugged in on usb
lsusb -t
Sudo nano /boot/config.txt
Add this line – dtoverlay=dwc2,dr_mode=host
Save and exit
Reboot pi and usb should be active
!! Install mdadm
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install mdadm -y
! Verifies mdadm is installed
sudo mdadm -V
!verify raid setup
sudo mdadm –examine /dev/sda /dev/sdb
! Show status of array building
cat /proc/mdstat
! For more detail in array building process
sudo mdadm –detail /dev/md0
! To stop array
sudo mdadm –stop –scan
! List drives current attached
lsblk -o NAME,SIZE,FSTYPE,TYPE,MOUNTPOINT
1. Identify mount point
lsblk -o NAME,SIZE,FSTYPE,TYPE,MOUNTPOINT
2. Raid 0
sudo mdadm –create –verbose /dev/md0 –level=0 –raid-devices=2 /dev/sda /dev/sdb
3. Raid 1
sudo mdadm –create –verbose /dev/md0 –level=1 –raid-devices=2 /dev/sda /dev/sdb
4. Create mount point
sudomkdir-p /mnt/md0
5. Save array layout
sudo mdadm –detail –scan |sudotee-a /etc/mdadm/mdadm.conf
6. Automounting at boot
echo’/dev/md0 /mnt/md0 ext4 defaults,nofail,discard 0 0’|sudotee-a /etc/fstab
https://www.jeffgeerling.com/blog/202...
https://www.digitalocean.com/communit...
Show how to do this on Linux as well
## These directions appear to be the way to go
Good way to introduce compute module 4
Raid 0 – striping data across drives
• Lowest overhead in write speed
• Single Drive failure results in total data loss
Raid 1 – mirrored drives (50% overhead)
• Match set of drives
• Single drive failure tolerated
• Slow write performance
• Data is written to both drives
================================================
*** Show Notes, Links and Resources ****
USB hub 3.0,7-Port USB Hub
https://amzn.to/3qU1v4S
Raspberry Pi Compute Module 4 Lite w/ Wifi
https://amzn.to/3eXyMqZ
Raspberry Pi Compute Module 4 IO Board
https://amzn.to/3BFBfA9
12V 5A Power Supply, Waysse Power Supply Adapter
https://amzn.to/3BFRJsb
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #cm4 #rpi #Raid
The post How to setup a Home Raid Lab using RPi Compute Module 4 (Part 2) first appeared on TechBytes With Ron Nutter.July 31, 2021
3 Reasons to have Unraid in your Smarthome
Looking for a NAS system that has room to grow?
Looking for a budget friendly option?
Want a NAS that is more than a NAS?
Stay tuned and I will show you just such an option
TIMESTAMPS
0:00 – Intro
0:41 – What we will be covering
1:08 – Introduction to Unraid
5:08 – Unraid license key and USB media creation
8:34 – Initial Unraid configuration
9:13 – Formatting new drives
11:47 – Setting up a share
Reasons
Unraid is not just a storage system
Easy to setup
You can start with as little as 2 drives and 8 gigs of ram
You are only limited to the number of drives your chassis can hold
You dont need a VGA monitor to set it up
Plugins that add more features/functionality to Unraid
Plugs that can turn unraid into a video security recorder
Create your own VM’s for learning/testing
Unraid community plugin – https://raw.githubusercontent.com/Squ...
================================================
*** Show Notes, Links and Resources ****
WD 2 TB WD AV-GP SATA III Intellipower 64 MB Cache
https://amzn.to/3l6q7GN
SanDisk 64GB Cruzer Fit USB 2.0 Flash Drive
https://amzn.to/3lohR5h
Crucial 8GB Single DDR3 1600 MT/s (PC3-12800) CL11 Unbuffered ECC
https://amzn.to/3zMZACq
100 Count of Rubber Grommets 1/8″ Inside Diameter- Fits 1/4″ Diameter Holes
https://amzn.to/3BQqKdD
#6-32 x 3/8″ Truss Head Phillips Machine Screws, Full Thread
https://amzn.to/3BXHcbK
VGA to HDMI, Onten 1080P VGA to HDMI Adapter (Male to Female)
https://amzn.to/3fagRxy
Chenbro NR12000 1U 1x QUAD CORE E3-1230v2 3.3GHz
https://www.ebay.com/itm/284139944425
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #unraid
The post 3 Reasons to have Unraid in your Smarthome first appeared on TechBytes With Ron Nutter.July 27, 2021
Why RPi Compute Module 4 should be in your Smarthome
Want to look at the most flexible Raspberry Pi?
Would you like to use a Raspberry Pi intended for industrial purposes in your smarthome?
Stay tuned and I will show you just some of the possibilities
TIMESTAMPS
0:00 – Intro
0:54 – What we will be covering
1:08 – What is the CM4 ?
3:38 – Rpi CM4 I/O Board
5:24 – holder base for CM4 and I/O Board
6:15 – PCI-E Sata board
7:09 – PCI-E USB 3 board
================================================
*** Show Notes, Links and Resources ****
Raspberry Pi Compute Module 4 Lite w/ Wifi
https://amzn.to/3eXyMqZ
Raspberry Pi Compute Module 4 IO Board
https://amzn.to/3BFBfA9
12V 5A Power Supply, Waysse Power Supply Adapter
https://amzn.to/3BFRJsb
I/O Crest 4 Port SATA III PCI-e 2.0 x1 Controller Card Marvell 9215 Non-Raid
https://amzn.to/3zQjXyP
Syba SD-PEX20199 USB 3.1 & 3.0 5Gbps Multiport PCI-Express Host Card Green
https://amzn.to/2UJxNEe
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #RPi #CM4
The post Why RPi Compute Module 4 should be in your Smarthome first appeared on TechBytes With Ron Nutter.July 25, 2021
How to learn about Raid (Part 1) on a budget using a home lab in your Smarthome
Do you want to learn about RAID?
Don’t want to invest a lot in hardware?
Stay tuned and I will show you how to get started
Raid 0 – striping data across drives
• Lowest overhead in write speed
• Single Drive failure results in total data loss
Raid 1 – mirrored drives (50% overhead)
• Match set of drives
• Single drive failure tolerated
• Slow write performance
• Data is written to both drives
Raid 5 – Total storage capacity minus one drive for parity
• All drives the same size
• Single drive loss can tolerated
================================================
*** Show Notes, Links and Resources ****
Toshiba MK3276GSX 320GB SATA/300 5400RPM 8MB 2.5″ Hard Drive
https://amzn.to/3iEyFSc
Sabrent USB 3.0 to SSD / 2.5-Inch SATA I/II/III Hard Drive Adapter (EC-SSHD)
https://amzn.to/2WaA2R6
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #raid
The post How to learn about Raid (Part 1) on a budget using a home lab in your Smarthome first appeared on TechBytes With Ron Nutter.July 20, 2021
How to test the RJ11 phone jacks in your smarthome
Having phone problems and not sure what to look for?
Not sure if your Voip phone/device is working right?
Stay tuned and I will show you some ways to see what is going on.
Phone line not in use – constant DC signal (about 50-60 volts)
Phone ringing – 20 hertz AC signal (about 90 volts)
Phone line is use (talking) modulated DC signal (between 6 and 12 volts)
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
Southwire TESTER, P700 PHONE OUTLET TESTER
https://amzn.to/3jKvlHD
C019 Telephone Phone Line Network Cable Tester
https://amzn.to/2V8RcOx
Klein Tools Digital Multimeter
https://amzn.to/3dQCX7H
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #rj11
The post How to test the RJ11 phone jacks in your smarthome first appeared on TechBytes With Ron Nutter.July 10, 2021
How to connect Google Voice to your SmartHome Using Poly OBI200
Do you have a Google Voice account?
Would you like to connect it to your smarthome?
Want an option of using something other than your smartphone or table?
Stay tuned and I will show you how to do that.
Default credentials – admin/admin
Create account on obitalk.com
Add device to your account
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
Obihai OBi200 1-Port VoIP Adapter with Google Voice
https://amzn.to/3e79eHM
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #OBI200 #Poly #GoogleVoice
The post How to connect Google Voice to your SmartHome Using Poly OBI200 first appeared on TechBytes With Ron Nutter.July 6, 2021
How to extend your smarthome network using MoCA 2.5 and goCoax
Want to extend your smarthome network?
Want to use the cable tv coax in your home?
Stay tuned and I will show you how to do this with goCoax
TIMESTAMPS
0:00 – Intro
0:42 – What we will be covering
1:05 – Required items
5:17 – Sorting out the coax connections
6:06 – Setting up GoCoax
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
MoCA POE Filter for Cable TV
(Put on coax from Cable company to prevent MoCA traffic from leaving your house)
https://amzn.to/3jBhjrR
TLS.eagle F Type F81 Female to Female Coaxial Barrel
https://amzn.to/2TdKlTi
BAMF 2-Way Coax Cable Splitter Bi-Directional MoCA 5-2300MHz
https://amzn.to/3A8dgZS
goCoax MoCA 2.5 Adapter for Ethernet Over Coax(Single Pack). MoCA 2.5
https://amzn.to/3qu9tl6
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #gocoax
The post How to extend your smarthome network using MoCA 2.5 and goCoax first appeared on TechBytes With Ron Nutter.June 26, 2021
How to connect 3CX to an analog phone for your SmartHome using Grandstream HT801
Want to use a analog phone with your 3CX?
Want to make it easier for a family member to use 3CX?
Stay tuned and I will show you how to do this.
TIMESTAMPS
0:00 – Intro
0:41 – What we will be covering
0:56 – Required items
3:09 – Checking HT801 prior to config
5:00 – Configuring HT801 in 3CX
7:15 – Testing HT801 after configuration upload
7:36 – Accessing HT801 after 3CX configuration
User Manual
https://www.grandstream.com/hubfs/Pro...
Administration Guide
http://www.grandstream.com/sites/defa...
HT801 Firmware
http://www.grandstream.com/support/fi...
v1.0.27.2 as of 6/23/21
HT801 commands via phone connected to HT801
*** – access IVR menu in HT801
02 – current ip address of HT801
16 – announces firmware version installed
Alternate option
****, then * will give ip address of HT801
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
Grandstream HT801 Single-Port Analog Telephone Adapter
https://amzn.to/36wB1OS
———————————–
Get Your SmartHome Device Checklist here –
http://eepurl.com/goDE49
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #3CX #Grandstream #HT801
The post How to connect 3CX to an analog phone for your SmartHome using Grandstream HT801 first appeared on TechBytes With Ron Nutter.

