-
-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for making connections over unix domain sockets #1620
base: main
Are you sure you want to change the base?
Conversation
Hi 👋! I'd have a couple of questions regarding this.
|
f2822b4
to
5dba908
Compare
5dba908
to
a5fed95
Compare
The routing protocol does not hand out individual addresses, and also I'm not sure how to transport that over a unix domain socket.
No, not that I'm aware of.
In my case I want to use knxd to connect to a KNX USB interface. Connecting from xknx to knxd over TCP or UDP is possible, but means that everyone on the current host can access the KNX bus, which I'd like to avoid. With unix domain sockets, I can ask systemd to set the permissions in a way that only certain users can access the
Providing a socket e.g. in the |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1620 +/- ##
==========================================
- Coverage 96.92% 96.83% -0.09%
==========================================
Files 160 160
Lines 10688 10717 +29
==========================================
+ Hits 10359 10378 +19
- Misses 329 339 +10
🚀 New features to boost your workflow:
|
There hasn't been any activity on this pull request recently. This pull request has been automatically marked as stale because of that and will be closed if no further activity occurs within 7 days. Thank you for your contributions. |
Description
Add support for making connections over unix domain sockets.
The protocol used for the unix domain sockets is the same as the TCP protocol. The primary advantage of using unix domain sockets is that permissions can be applied if the server is running on the same host as the xknx application. This can be used to run knxd (e. g. to connect to a USB interface) and expose the socket only for certain users/groups. knxd supports TCP and unix domain sockets starting with version 0.14.68 (or PR knxd/knxd#573).
This also adds support for connecting to arbitrary streams, which can be used to connect to a knxd on another host using ssh, see
examples/example_telegram_monitor_unix.py
for an example.Type of change
Checklist