Difference between revisions of "IPv6 KOnfigurasi: Debian Linux"

From OnnoWiki
Jump to navigation Jump to search
(New page: 15.3. Debian Linux Following information was contributed by Stephane Bortzmeyer <bortzmeyer at nic dot fr> Be sure that IPv6 is loaded, either because it is compiled into the kernel ...)
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
15.3. Debian Linux
+
Informasi berikut merupakan kontribusi dari Stephane Bortzmeyer <bortzmeyer at nic dot fr>
  
Following information was contributed by Stephane Bortzmeyer <bortzmeyer at nic dot fr>
+
Pastikan IPv6 di load, bisa karena di compile di kernel atau module di load.
 +
Untuk versi yang terbaru, ada tiga solusi, menambahkan ke /etc/modules, menggunakan trik pre-up yang akan di jelaskan berikutini atau menggunakan kmod.
  
    Be sure that IPv6 is loaded, either because it is compiled into the kernel or because the module is loaded. For the latest, three solutions, adding it to /etc/modules, using the pre-up trick shown later or using kmod (not detailed here).
+
Konfigurasi interface anda. Disini kita berasumsi eth0 dan address (2001:0db8:1234:5::1:1). Edit /etc/network/interfaces:
  
    Configure your interface. Here we assume eth0 and address (2001:0db8:1234:5::1:1). Edit /etc/network/interfaces:
+
iface eth0 inet6 static
 +
        pre-up modprobe ipv6
 +
        address 2001:0db8:1234:5::1:1
 +
        # To suppress completely autoconfiguration:
 +
        # up echo 0 > /proc/sys/net/ipv6/conf/all/autoconf
 +
        netmask 64
 +
        # The router is autoconfigured and has no fixed address.
 +
        # It is magically
 +
        # found. (/proc/sys/net/ipv6/conf/all/accept_ra). Otherwise:
 +
        #gateway 2001:0db8:1234:5::1
  
iface eth0 inet6 static
+
Kita bisa reboot atau kita ketik
        pre-up modprobe ipv6
 
        address 2001:0db8:1234:5::1:1
 
        # To suppress completely autoconfiguration:
 
        # up echo 0 > /proc/sys/net/ipv6/conf/all/autoconf
 
        netmask 64
 
        # The router is autoconfigured and has no fixed address.
 
        # It is magically
 
        # found. (/proc/sys/net/ipv6/conf/all/accept_ra). Otherwise:
 
        #gateway 2001:0db8:1234:5::1
 
  
And you reboot or you just
+
# ifup --force eth0
  
# ifup --force eth0
+
selanjutnya kita mempunyai statik address.
  
and you have your static address.
 
15.3.1. Further information
 
  
    IPv6 with Debian Linux
+
==Informasi Lebih Lanjut==
  
    Jean-Marc V. Liotier's HOWTO for Freenet6 & Debian Users (announced 24.12.2002 on mailinglist users@ipv6.org )
+
IPv6 with Debian Linux, Jean-Marc V. Liotier HOWTO for Freenet6 & Debian Users (diumumkan tanggal 24.12.2002 di mailinglist users@ipv6.org )

Latest revision as of 09:08, 4 July 2013

Informasi berikut merupakan kontribusi dari Stephane Bortzmeyer <bortzmeyer at nic dot fr>

Pastikan IPv6 di load, bisa karena di compile di kernel atau module di load. Untuk versi yang terbaru, ada tiga solusi, menambahkan ke /etc/modules, menggunakan trik pre-up yang akan di jelaskan berikutini atau menggunakan kmod.

Konfigurasi interface anda. Disini kita berasumsi eth0 dan address (2001:0db8:1234:5::1:1). Edit /etc/network/interfaces:

iface eth0 inet6 static
        pre-up modprobe ipv6
        address 2001:0db8:1234:5::1:1
        # To suppress completely autoconfiguration:
        # up echo 0 > /proc/sys/net/ipv6/conf/all/autoconf
        netmask 64
        # The router is autoconfigured and has no fixed address.
        # It is magically
        # found. (/proc/sys/net/ipv6/conf/all/accept_ra). Otherwise:
        #gateway 2001:0db8:1234:5::1

Kita bisa reboot atau kita ketik

# ifup --force eth0

selanjutnya kita mempunyai statik address.


Informasi Lebih Lanjut

IPv6 with Debian Linux, Jean-Marc V. Liotier HOWTO for Freenet6 & Debian Users (diumumkan tanggal 24.12.2002 di mailinglist users@ipv6.org )