Sponsored Content
Special Forums IP Networking radvd + ipv6 problems in Linux Post 22535 by kuba on Wednesday 5th of June 2002 10:15:36 AM
Old 06-05-2002
radvd + ipv6 problems in Linux

Hi everyone,
I have a weird problem in Linux. Well, for the past month i've been very interested in IPv6, and, a couple of days ago i decided to try to get it to work. I run Slackware 8.0 on my gateway/router-box, and, the freenet6.com-program and scripts started and worked just fine. There's one problem though, I want to give the rest of my lan access to the "IPv6-world" also Smilie And, I've read some linux-ipv6-howto's and asked some people, but, I can't seem to get the radvd (router advartisement daemon) to work. Do i have to do anything manually? Do I have to run any kind of additional software on any other boxes but the router?

When I run radvdump on any client computer in the network, it displays the packets being sent out just fine, but linux doesn't assign any new ipv6-ip to eth0.

//Jakob Stasilowicz
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Linux problems

Hi I'm using linux slackware 8.0 with the 2.2.19 kernel I have some problems.. First problem: I cannot get kernel 2.4.* to work.. it hangs when I boot and displays someting like: configuring 100mbps tbase 100x full duplex what can cause this? and what can I do about it? Second... (4 Replies)
Discussion started by: Maestin
4 Replies

2. Linux

ipv6 on a linux box

how to enable an ipv6 address on a linux pc? thanks in advance (3 Replies)
Discussion started by: sunittaneja
3 Replies

3. SuSE

Linux and IPv6

Hi gurus, In a few month, we must enable IPv6 on our Linux Server! Should we reinstall the Linux machine to enable IPv6 or could we just make some change in configuration's files? Could Linux run simultaneous IPv4 and IPv6? Thanks in advance for our help our ideas? Best regards, nm (3 Replies)
Discussion started by: hiddenshadow
3 Replies

4. IP Networking

Radvd wlan problems

Hi all, I am trying to get radvd to broadcast router advertisements on a wireless interface (wlan0). The wireless interface is running an ad-hoc wireless network. However, for some reason, radvd will say that wlan0 not running and refuse to start. The only way I can get radvd to broadcast... (0 Replies)
Discussion started by: abxccd
0 Replies

5. IP Networking

radvd isatap clients can not connect with each other?

My radvd works well.The isatap clients could connected IPV6 network,but,they can not connect with each other?why? my radvd conf like this: interface is0 { AdvSendAdvert on; UnicastOnly on; AdvHomeAgentFlag off; prefix 2001:250:5405:1::/64 { AdvOnLink on; AdvAutonomous on; ... (0 Replies)
Discussion started by: LiuKai
0 Replies

6. Linux

Help Me: How to set ARP stale time interval on linux platform for Ipv6 interface

Hi, Can any one please help me increase the arp stale time of an ipv6 interface on linux platform ? I have tried increasing the variable gc_stale_time but that doesnt work. Thanks (2 Replies)
Discussion started by: dkothapa
2 Replies

7. IP Networking

Linux Bridging, Wireless AP, IPv6 multicast and autoconfiguration.

Well I cannot be too certain of the setup, since it's a stock firmware, but I have a cheap Belkin wireless-n router and wanted to get some ideas of what may be going on while I've a few moments to ramble on about my problems... I requested the GPL source so I've just been pondering while waiting to... (0 Replies)
Discussion started by: neutronscott
0 Replies

8. UNIX for Dummies Questions & Answers

Assigning ipv6 to bonding interface - getting old as well as changed ipv6 in ifconfig output

Hi, I have created a bonding bond1 interface with 6 Eth , mode=4. Recently i have changed my old ipv6 to new one and tried to restart as well as reload network service. Post which i can see old as well as changed ipv6 in ifconfig command output. Below are few files and command output for your... (1 Reply)
Discussion started by: omkar.jadhav
1 Replies

9. IP Networking

IPv6 Problems

I am trying to setup an IPv6 network. I modified the interfaces file: /etc/network/interfaces # The loopback network interface auto lo iface lo inet loopback iface etho0 inet static address 2620:7:a000::1 netmask 64 gateway ::ffff:c0a8:101 ... (0 Replies)
Discussion started by: Meow613
0 Replies
RADVD(8)																  RADVD(8)

NAME
radvd - router advertisement daemon for IPv6 SYNOPSIS
radvd [ -hsv ] [ -d debuglevel ] [ -C configfile ] [ -p pidfile ] [ -m logmethod ] [ -l logfile ] [ -f facility ] [ -t chrootdir ] [ -u username ] DESCRIPTION
radvd is the router advertisement daemon for IPv6. It listens to router solicitations and sends router advertisements as described in "Neighbor Discovery for IP Version 6 (IPv6)" (RFC 4861). With these advertisements hosts can automatically configure their addresses and some other parameters. They also can choose a default router based on these advertisements. Note that if debugging is not enabled, radvd will not start if IPv6 forwarding is disabled. IPv6 forwarding can be controlled via sysctl(8), net.ipv6.conf.all.forwarding on Linux or net.inet6.ip6.forwarding on BSD. Similarly, the configuration file must not be writable by others, and if non-root operation is requested, not even by self/own group. OPTIONS
For every one character option there is also a long option, which is listed right next to the "short" option name: -v, --version Displays the version of radvd and then aborts. -h, --help Displays a short usage description and then aborts. -s, --singleprocess On Linux if username is specified, privilege separation is enabled and there will be two processes. This option disables privilege separation, and as a result, the non-privileged radvd process does not have permissions to change interface configuration. -d debuglevel, --debug debuglevel With this option you turn on debugging information. The debugging level is an integer in the range from 1 to 5, from quiet to very verbose. A debugging level of 0 completely turns off debugging. If a debugging level greater than 0 is used, radvd doesn't back- ground itself on start. The default debugging level is 0. -C configfile, --config configfile Specifies an alternate config file. Normally the compiled in default /etc/radvd.conf is used. -p pidfile, --pidfile pidfile Specifies an alternate pidfile. Normally the compiled in default /var/run/radvd/radvd.pid is used. -m method, --logmethod method Specifies the logging method to use. Possibly values are: none Completely disables any logging. logfile Logs to the logfile which is specified by the -l option. If no logfile is specified on the command line, then a compiled in default is used (see next option). stderr Logs to standard error. stderr_syslog Logs only the high messages (of at least LOG_ERR priority) to standard error, and everything to syslog (default method). syslog Logs to syslog. -l logfile, --logfile logfile Specifies the logfile to use when using the logging method logfile. The default logfile is /var/log/radvd.log. -f facility, --facility facility Specifies the facility (as an integer) when using syslog logging. Default is LOG_DAEMON. -t chrootdir, --chrootdir chrootdir If specified, switches to chrootdir before doing anything else. This directory and its subdirectories must have been populated first. For security reasons, -u must always be used when using chrootdir. Note that on Linux radvd requires access to the /proc filesystem, so it is more challenging to set up the chroot environment. -u username, --username username If specified, drops root privileges and changes user ID to username and group ID to the primary group of username. This is recom- mended for security reasons. You might also need to use -p to point to a file in a username -writable directory (e.g. /var/run/radvd/radvd.pid). FILES
/usr/sbin/radvd /etc/radvd.conf /var/run/radvd/radvd.pid /var/log/radvd.log BUGS
There certainly are some bugs. If you find them or have other suggestions please contact Pekka Savola <pekkas@netcore.fi>. SEE ALSO
radvd.conf(5), radvdump(8) AUTHORS
Pedro Roque <roque@di.fc.ul.pt> - wrote first version for Linux Lars Fenneberg <lf@elemental.net> - previous maintainer Nathan Lutchansky <lutchann@litech.org> - previous maintainer Pekka Savola <pekkas@netcore.fi> - current maintainer Craig Metz <cmetz@inner.net> - port to NRL's IPv6 code for BSD4.4 Marko Myllynen <myllynen@lut.fi> - RFC 2461 update, Mobile IPv6 support Jim Paris <jim@jtan.com> - Privilege separation support radvd 1.3 24 Jan 2008 RADVD(8)
All times are GMT -4. The time now is 11:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy