A #SmartHome should be completely independent of any internet connection.
-
@oldguycrusty
No new car for you. Sorry.
New EU cars all have mandatory cell phone connection.Same with PV battery storage. Only very few require no Internet connection.
-
Jan Wildeboer 😷:krulorange:replied to goetz 🚲 last edited by
@goetz Yep. One of the unexpected side effects of IPv6. Even less control over your home network. This was surely just a little oopsie
-
Jan Wildeboer 😷:krulorange:replied to goetz 🚲 last edited by [email protected]
@goetz I don’t use a car and even if I did, I wouldn’t park it in my livingroom, so I don’t consider it as part of my smarthome. @oldguycrusty
-
@goetz @jwildeboer Probably not MUCH of an issue as ESPs and Tuya devices (which from what I've seen account for a big chunk of smarthome devices) only support IPv4 anyway.
-
acmreplied to Jan Wildeboer 😷:krulorange: last edited by
@jwildeboer even easier: no smart home devices at all!
-
Jan Wildeboer 😷:krulorange:replied to acm last edited by
@acm_redfox So no internet at home? Sure. Possible. But not very common.
-
LovesTha🥧replied to Jan Wildeboer 😷:krulorange: last edited by
@jwildeboer @acm_redfox that isn't the same thing. We don't call a PC smart because it has a WiFi card.
-
Jan Wildeboer 😷:krulorange:replied to LovesTha🥧 last edited by
@LovesTha The premise of my toot was a #Smarthome with devices that use the internet. The reply was to have no connected devices at all. Which is not the same, obviously. So your reply makes even less sense, IMHO, and moves the discussion far away from the point I tried to make. @acm_redfox
-
goetz 🚲replied to Benjamin last edited by [email protected]
@blindcoder
Esps with #esphome work fine with #IPv6 unfortunately they still need Dual stack.
What Jan says for no need for the Internet, I have the requirement that smart home devices need to work with #ipv6only to be considered worthy to be integrated. -
@jwildeboer That's also the reason why #AVM made to ULA addresses default in the LAN in the latest software update of #FritzBox
-
@goetz @jwildeboer interesting. I mostly have tasmota flashed and from what I saw they claimed that the WiFi blob for the esp devises doesn't do v6.
Esphome seemed too complex for me yet so I haven't looked into that yet. -
@blindcoder
You need to compile #IPv6 into the 8266 manually. The online tasmota compiler does not allow for this.
@jwildeboer -
goetz 🚲replied to goetz 🚲 last edited by [email protected]
For ESP8266 you need to add:
# user_config_override.h:
```
#ifndef USE_IPV6
#define USE_IPV6
#endif
```# platformio.ini:
```
; -DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH_LOW_FLASH
-DPIO_FRAMEWORK_ARDUINO_LWIP2_IPV6_HIGHER_BANDWIDTH -DUSE_IPV6
```This gives a GUA and LL #IPv6 addresses.
Unfortunately things like DHCPv6 or #PrivacyExtensionsforIPv6 is not available, due to #lwIP not supporting it yet.