Advertisement
Guest User

Untitled

a guest
Jan 31st, 2011
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Router:
  2.  
  3. # cat /etc/radvd.conf
  4. interface eth1
  5. {
  6.   AdvSendAdvert on;
  7.   MaxRtrAdvInterval 30;
  8.  
  9.   prefix prefix fe80::/64
  10.   {
  11.     AdvOnLink on;
  12.     AdvAutonomous on;
  13.     AdvRouterAddr off;
  14.     AdvValidLifetime 300;
  15.     AdvPreferredLifetime 120;
  16.   };
  17. };
  18.  
  19.  
  20. teredo    Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  
  21.           inet6 addr: fe80::ffff:ffff:ffff/64 Scope:Link
  22.           inet6 addr: 2001:0:53aa:64c:304d:1ffb:a4ad:81c5/32 Scope:Global
  23.           UP POINTOPOINT RUNNING NOARP  MTU:1280  Metric:1
  24.           RX packets:198 errors:0 dropped:0 overruns:0 frame:0
  25.           TX packets:317 errors:0 dropped:0 overruns:0 carrier:0
  26.           collisions:0 txqueuelen:500
  27.           RX bytes:45791 (44.7 KiB)  TX bytes:29885 (29.1 KiB)
  28.  
  29. eth1      Link encap:Ethernet  HWaddr 00:19:db:cb:18:1a  
  30.           inet addr:172.16.0.1  Bcast:172.16.0.255  Mask:255.255.255.0
  31.           inet6 addr: fe80::219:dbff:fecb:181a/64 Scope:Link
  32.           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  33.           RX packets:24784139 errors:0 dropped:0 overruns:0 frame:0
  34.           TX packets:35899505 errors:0 dropped:0 overruns:0 carrier:0
  35.           collisions:0 txqueuelen:1000
  36.           RX bytes:4355148372 (4.0 GiB)  TX bytes:20348607745 (18.9 GiB)
  37.           Interrupt:250 Base address:0xc000
  38.  
  39. Kliens:
  40.  
  41. # ip -6 route
  42. fe80::/64 dev eth0  metric 256  mtu 1500 advmss 1440 hoplimit 4294967295
  43. default via fe80::219:dbff:fecb:181a dev eth0  proto kernel  metric 1024  expires 0sec mtu 1500 advmss 1440 hoplimit 64
  44.  
  45. eth0      Link encap:Ethernet  HWaddr aa:00:04:00:0a:04  
  46.           inet addr:172.16.0.21  Bcast:172.16.0.255  Mask:255.255.255.0
  47.           inet6 addr: fe80::a800:4ff:fe00:a04/64 Scope:Link
  48.           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  49.           RX packets:101170 errors:0 dropped:0 overruns:0 frame:0
  50.           TX packets:86519 errors:0 dropped:0 overruns:0 carrier:0
  51.           collisions:0 txqueuelen:1000
  52.           RX bytes:89094790 (84.9 MiB)  TX bytes:14129335 (13.4 MiB)
  53.           Interrupt:219 Base address:0xe000
  54.  
  55. # ping6 -c 5 ipv6.google.com
  56. PING ipv6.google.com(2a00:1450:8007::67) 56 data bytes
  57. From fe80::219:dbff:fecb:181a icmp_seq=1 Destination unreachable: Beyond scope of source address
  58. From fe80::219:dbff:fecb:181a icmp_seq=2 Destination unreachable: Beyond scope of source address
  59. From fe80::219:dbff:fecb:181a icmp_seq=3 Destination unreachable: Beyond scope of source address
  60. From fe80::219:dbff:fecb:181a icmp_seq=4 Destination unreachable: Beyond scope of source address
  61. From fe80::219:dbff:fecb:181a icmp_seq=5 Destination unreachable: Beyond scope of source address
  62.  
  63. --- ipv6.google.com ping statistics ---
  64. 5 packets transmitted, 0 received, +5 errors, 100% packet loss, time 4014ms
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement