Replies: 1 comment 4 replies
-
|
It looks like your NAT64 translation is working correctly inside the OTBR, but the resulting IPv4 traffic isn't routable on your LAN because it isn't being masqueraded. The Issue: The Fix: In your cap_drop:
- NET_ADMIN # Should prevent iptables/ipset updatesTo fix this, you should remove Updated # ...
privileged: true
# Remove or comment out the cap_drop section
# cap_drop:
# - NET_ADMIN
# - NET_RAW
# ...Once |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am running openthread border router (using this docker container).
I am able to control my thread devices from Home Assistant, but I am unable to let thread devices connect directly to ipv4 services (mqtt, in my case).
I can see that NAT64 is translating the requests
10.1.101.5being the host the mqtt server is running on.My network is divided into multiple VLANs, all in the
10.1.range.My thread device can't reach my mqtt server and I'm thinking it's because NAT64 is translating the IPs intro a range that doesn't exist in my network?
192.168.255.xisn't available in my network.Can I masquerade that traffic? Can I somehow use a different ip address space?
Here is my docker-compose:
And here is the output of ip -a
I'm thankful for any help!! :)
Beta Was this translation helpful? Give feedback.
All reactions