summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/radvd/files
diff options
context:
space:
mode:
authorChangqing Li <changqing.li@windriver.com>2020-07-20 17:16:00 +0800
committerKhem Raj <raj.khem@gmail.com>2020-07-21 16:46:36 -0700
commit5af77740a46c334978adc7f37f53ea9a318d3a33 (patch)
treee74faab1bebff839cf4eba7ba9baf7bdae42f56a /meta-networking/recipes-daemons/radvd/files
parent1b803eb316e16bc951a0ae2a2cf197897c6154a4 (diff)
downloadmeta-openembedded-5af77740a46c334978adc7f37f53ea9a318d3a33.tar.gz
radvd: add /etc/radvd.conf
When starting radvd without any configuration the following errors would be triggered. """ root@intel-x86-64:~# systemctl status radvd ● radvd.service - Router advertisement daemon for IPv6 Loaded: loaded (/lib/systemd/system/radvd.service; enabled; vendor preset: enabled) Active: inactive (dead) Condition: start condition failed at Tue 2019-09-24 13:29:36 UTC; 3s ago └─ ConditionPathExists=/etc/radvd.conf was not met """ Normally the user should create and configrue the /etc/radvd.conf manually. However the radvd provide a example file for redhad located at "radvd/redhat/radvd.conf.empty". When installing, it would copy radvd/redhat/radvd.conf.empty to /etc/radvd.conf. Also add this empty conf here to used as an example of configuration Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-daemons/radvd/files')
-rw-r--r--meta-networking/recipes-daemons/radvd/files/radvd.conf18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/radvd/files/radvd.conf b/meta-networking/recipes-daemons/radvd/files/radvd.conf
new file mode 100644
index 0000000000..c006f86313
--- /dev/null
+++ b/meta-networking/recipes-daemons/radvd/files/radvd.conf
@@ -0,0 +1,18 @@
1# NOTE: there is no such thing as a working "by-default" configuration file.
2# At least the prefix needs to be specified. Please consult the radvd.conf(5)
3# man page and/or /usr/share/doc/radvd-*/radvd.conf.example for help.
4#
5#
6#interface eth0
7#{
8# AdvSendAdvert on;
9# MinRtrAdvInterval 30;
10# MaxRtrAdvInterval 100;
11# prefix 2001:db8:1:0::/64
12# {
13# AdvOnLink on;
14# AdvAutonomous on;
15# AdvRouterAddr off;
16# };
17#
18#};