(A photo showing Mr. Coffee Smart Coffee Maker with Wemo and a history of data usage in Ubiquiti UniFi Controller.)
My coffee maker (for brewing tea) used 6GB of data during the 20-day period. Although I do not need remote access anyway (I turned it off recently), I took the step of only assigning default gateway and DNS server IP address to devices that need it, such as Google Home.
# /etc/dhcp/dhcpd.conf
subnet 172.20.1.0 netmask 255.255.255.0 {
range 172.20.1.224 172.20.1.254;
}
host graysonteamaker {
hardware ethernet 94:10:3e:5f:4d:11;
fixed-address 172.20.1.3;
}
host Google-Home {
hardware ethernet f4:f5:d8:a2:4e:d0;
fixed-address 172.20.1.4;
option routers 172.20.1.1;
option domain-name-servers 172.20.0.3;
}
I have multiple segregated networks (172.20.0.0/27 for management/DNS/UniFi, 172.20.0.32/27 for computers/mobile devices, .64/27 for wired home automation devices, 172.20.1.0/24 for wireless home automation devices, etc.)
Has anyone experienced the behavior that Wemo devices used so much data when connected to the Internet?