debian icin ipv6 konfigurasyonu hizli

$ /etc/network/interfaces

# The primary network interface

auto eth0
iface eth0 inet static
    address 193.234.224.244
    gateway 193.234.224.1
    netmask 255.255.254.0

# The loopback network interface
auto lo
iface lo inet loopback

#IPV6 static configuration
iface eth0 inet6 static
    up echo 0 > /proc/sys/net/ipv6/conf/all/autoconf
    up echo 0 > /proc/sys/net/ipv6/conf/default/autoconf

# IPv6 configuration using the new /56 alocation

        address 2a00:dcc0:dead:b9f4::1
        netmask 56
        gateway 2a00:dcc0:dead:b9ff::1

# Eger /56 olarak eklemek istersek ip adresimizi su sekilde
# veya asagidaki sekilde yapabiliriz

#     up ip -6 addr add 2a00:dcc0:dead:b9f4::2/56 dev eth0

# yok /56 eklemek istemiyorsak yukaridaki tanimlari zaten yaptigimiz icin,
# /56 icinden bazi ipv6 adresleri eklemek istiyorsak

        up ifconfig eth0 add 2a00:dcc0:dead:b9f4:bad:babe:a9ed:18/128
        up ifconfig eth0 add 2a00:dcc0:dead:b9f4:1:be:a:7001/128
        up ifconfig eth0 add 2a00:dcc0:dead:b9f4:da75:a:900d:90a7/128
        up ifconfig eth0 add 2a00:dcc0:dead:b9f4:0:1ce:1ce:babe/128


# END IPV6 configuration

# up ip -6 ile 
# up ifconfig eth0 add ipv6:ad:re:si
# ayni sey olsa gerek ?