mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-12-29 11:30:28 +05:30
Pranav Jerry
2e4c3a70a4
This was previously done by the systemd service. But since we allowed changing the name of bat0 and bridge0, we can't expect systemd to still do that job. Commented out some lines in the systemd service and made it send SIGINT instead of the default SIGTERM to kill naxalnet. I accidentally used to increment a2, a3, a4, ... in the __version__ instead of dev1, dev2, &c. a few commits back. Removed some print() lines lurking somewhere in the code. The cleanup is still not completed. We still have to delete the interfaces bridge0 and bat0, or whatever name the user gives it. Just out of boredom, I added some description to some network configuration, though so I doubt if anyone will understand it more because of that.
20 lines
474 B
SYSTEMD
20 lines
474 B
SYSTEMD
# Ah! This is where the magic happens!
|
|
# This is the interface userspace applications will be using to
|
|
# communicate with others devices
|
|
|
|
[Match]
|
|
Name={bridgedev}
|
|
|
|
[Network]
|
|
Description=bridge to link non-batman machines
|
|
# Use DHCP to assign an IP
|
|
DHCP=yes
|
|
|
|
# If DHCP fails, assign a random address. This is probably the default,
|
|
# but we are specifying it anyway.
|
|
LinkLocalAddressing=yes
|
|
|
|
# LLMNR and MulticastDNS are used for hostname discovery
|
|
LLMNR=yes
|
|
MulticastDNS=yes
|