-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mesh-announce: update to kiels latest master
they implemented a long awaited PR, where they'd change the config from arguments to one configfile. Look here for further reference: ffnord/mesh-announce#60
- Loading branch information
1 parent
3acb1bc
commit 39abb99
Showing
4 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
|
||
mesh_announce_cfg_path: "/etc/mesh-announce" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Default settings | ||
[Defaults] | ||
# Listen port | ||
# optional, default: 1001 | ||
Port: 1001 | ||
# Default link local listen addresses | ||
# optional, default: ff02::2:1001 | ||
MulticastLinkAddress: ff02::2:1001 | ||
# Default site local listen addresses | ||
# optional, default: ff05::2:1001 | ||
MulticastSiteAddress: ff05::2:1001 | ||
# Default domain to use | ||
# optional, if specified incoming requests that can not be mapped to a domain | ||
# are mapped to this domain | ||
DefaultDomain: ffh | ||
# Default domain type | ||
# optional, default: simple | ||
# supported domain types are: simple, batadv | ||
DomainType: batadv | ||
# Default ddhcpd IPv4 gateway address | ||
# optional | ||
# IPv4Gateway: 10.116.128.8 | ||
|
||
{% for domain in domains_with_dom0 | default( [] ) %} | ||
[dom{{ domain.id }}] | ||
BatmanInterface: bat{{ domain.id }} | ||
Interfaces: mesh_fastd_{{ domain.id }} | ||
|
||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters