blob: fc0b7f852c718babe113d00646b045b59c28dc25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
post_install() {
cat << EOF
To use radvd you must create the configuration file
/etc/radvd.conf
An example configuration file has been installed at
/usr/share/doc/radvd/radvd.conf.example
radvd requires IPv6 forwarding be enabled.
To enable IPv6 forwarding at boot time,
add the following line to /etc/sysctl.conf:
# Enable IPv6 packet forwarding
net.ipv6.conf.all.forwarding = 1
or manually enable forwarding using:
echo 1 > /proc/sys/net/ipv6/conf/all/forwarding
EOF
}
op=$1
shift
$op $*
|