IPv6 Router Advertisement Daemon
RADVD是可以發送 IPv6 Router Advertisement (RA)的 Daemon
網頁:http://www.litech.org/radvd/
手動安裝方式:
安裝版本: 1.9.3
系統環境:CentOS 6.4
環境需求:
gcc安裝方式:
libdaemon-devel
flex
byacc
# ./configure --prefix=/usr/local --sysconfdir=/etc --mandir=/usr/share/man執行檔位置:/usr/local/sbin/radvd
#make
#make install
設定檔位置:/etc/radvd.conf
yum 方式安裝:
安裝版本:1.6.1
系統環境:CentOS 6.4
安裝方式:
yum install radvd執行檔位置:/usr/sbin/radvd
設定檔位置:/etc/radvd.conf
設定檔範例: /usr/share/doc/radvd-*/radvd.conf.example
interface eth0
{
AdvSendAdvert on;
MinRtrAdvInterval 30;
MaxRtrAdvInterval 100;
prefix 2001:db8:1:0::/64
{
AdvOnLink on;
AdvAutonomous on;
AdvRouterAddr off;
};
};
######################
只針對特定的client發送RA 其餘沒有
interface eth0
{
AdvSendAdvert on;
prefix 2001:db8:0:1::/64
{
AdvOnLink on;
AdvAutonomous on;
};
clients
{
fe80::21f:16ff:fe06:3aab;
fe80::21d:72ff:fe96:aaff;
};
};
######################################
RDNSS ip [ip] [ip] {
list of rdnss specific options
};
沒有留言:
張貼留言