radvd não está atribuindo prefixo

1

Atualmente, estou tentando configurar a configuração automática de endereços IPv6 com o daemon de anúncio do roteador (radvd) em uma máquina virtual executando o CentOS 6.5. Mas a interface eth0 não está obtendo esse prefixo.

Eu obtive o prefixo ULA de aqui .

Conteúdo de /etc/sysctl.conf

# Kernel sysctl configuration file for Red Hat Linux
#
# For binary values, 0 is disabled, 1 is enabled.  See sysctl(8) and
# sysctl.conf(5) for more details.

# Controls IP packet forwarding
net.ipv4.ip_forward = 0
net.ipv6.conf.all.forwarding = 1

# Controls source route verification
net.ipv4.conf.default.rp_filter = 1

# Do not accept source routing
net.ipv4.conf.default.accept_source_route = 0

# Controls the System Request debugging functionality of the kernel
kernel.sysrq = 0

# Controls whether core dumps will append the PID to the core filename.
# Useful for debugging multi-threaded applications.
kernel.core_uses_pid = 1

# Controls the use of TCP syncookies
net.ipv4.tcp_syncookies = 1

# Disable netfilter on bridges.
net.bridge.bridge-nf-call-ip6tables = 0
net.bridge.bridge-nf-call-iptables = 0
net.bridge.bridge-nf-call-arptables = 0

# Controls the default maxmimum size of a mesage queue
kernel.msgmnb = 65536

# Controls the maximum size of a message, in bytes
kernel.msgmax = 65536

# Controls the maximum shared segment size, in bytes
kernel.shmmax = 68719476736

# Controls the maximum number of shared memory segments, in pages
kernel.shmall = 4294967296

Conteúdo de /etc/radvd.conf

# NOTE: there is no such thing as a working "by-default" configuration file. 
#       At least the prefix needs to be specified.  Please consult the radvd.conf(5)
#       man page and/or /usr/share/doc/radvd-*/radvd.conf.example for help.
#
#
interface eth0
{
    AdvSendAdvert on;
    MinRtrAdvInterval 3;
    MaxRtrAdvInterval 10;
    AdvDefaultPreference low;
    AdvHomeAgentFlag off;
    prefix fd8a:8d9d:808f:1::/64
    {
        AdvOnLink on;
        AdvAutonomous on;
        AdvRouterAddr on;
    };

};

Conteúdo de /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0
HWADDR=52:54:00:74:d7:46
TYPE=Ethernet
UUID=af5db1cb-e809-4098-be1a-5a74dbb767b1
ONBOOT=yes
NM_CONTROLLED=no
BOOTPROTO=dhcp
IPV6INIT=yes
IPV6_AUTOCONF=yes

Eu também habilitei o radvd na inicialização através de chkconfig . Embora eu tenha notado que o radvd está iniciando depois que as interfaces são ativadas. Eu tentei reiniciar o network service depois, mas ainda recebo o seguinte endereço de link local

#ip -6 addr show
1: lo:  mtu 16436 
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0:  mtu 1500 qlen 1000
    inet6 fe80::5054:ff:fe74:d746/64 scope link 
       valid_lft forever preferred_lft forever

Editar: Com base na resposta dada por Sander Steffann

Ainda preciso de esclarecimentos sobre alguns pontos, mas estou postando aqui o que funcionou. Conteúdo de /etc/sysconfig/network

NETWORKING=yes
HOSTNAME=syslog-ng-server
NETWORKING_IPV6=yes
IPV6FORWARDING=yes

Conteúdo de /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0
HWADDR=52:54:00:74:d7:46
TYPE=Ethernet
UUID=af5db1cb-e809-4098-be1a-5a74dbb767b1
ONBOOT=yes
NM_CONTROLLED=no
BOOTPROTO=dhcp
IPV6INIT=yes
IPV6_AUTOCONF=yes
IPV6FORWARDING=no

Removido após a linha de /etc/sysctl.conf

net.ipv6.conf.all.forwarding = 1

O conteúdo de /etc/radvd.conf é como anterior.

    
por Samik 27.05.2014 / 11:19

1 resposta

1

A configuração automática de IPv6 não funciona quando combinada com o encaminhamento de IPv6. Em um roteador, você geralmente configura endereços estáticos, especialmente na interface em que está enviando RAs.

Embora esta questão seja sobre o Ubuntu, sua resposta pode ajudá-lo no caso em que você deseja usar o autoconf na interface upstream e enviar RAs na interface downstream: link

    
por 27.05.2014 / 11:46

Tags