Displaying 1 result from an estimated 1 matches for "s50radvd".
2010 Apr 14
1
ipv6 via tinc
...-fvh-network-graph.png
Mode=switch
KeyExpire=299
MACExpire=301
PingInterval=59
PingTimeout=6
My tinc-up is:
-------------
#! /bin/sh
/sbin/ifconfig $INTERFACE 172.16.0.1 netmask 255.240.0.0
/sbin/ifconfig $INTERFACE add 2001:888:13b3::1/64
/sbin/sysctl -w net.ipv6.conf.all.forwarding=1
/etc/rc2.d/S50radvd restart
And my /etc/radvd.conf is:
-------------------------
interface fvhglobalnet {
AdvSendAdvert on;
AdvHomeAgentFlag off;
prefix 2001:888:13b3::/64 {
AdvOnLink on;
AdvAutonomous on;
AdvRouterAddr off;
};
}...