Download presentation
Presentation is loading. Please wait.
Published byJulia Truslow Modified over 9 years ago
1
IPv6 Konsep Jaringan Komputer
2
Pengecekan Module ipv6 pada kernel # ls –l /proc/net/if_inet6 atau test -f /proc/net/if_inet6 && echo "Running kernel is IPv6 ready"
3
Jika dalam kernel tidak terdapat module ipv6 # modprobe ipv6 Jika sukses maka #lsmod |grep -w 'ipv6' && echo "IPv6 module successfully loaded"
4
Automatic loading module saat start Masukkan scrip pada /etc/modules.conf atau /etc/conf.modules alias net-pf-10 ipv6 # automatically load IPv6 module on demand Untuk disable alias net-pf-10 off # disable automatically load of IPv6 module on demand
5
IPv6-ready network configuration tools ifconfig # /sbin/ifconfig -? 2>& 1|grep -qw 'inet6' && echo "utility 'ifconfig' is IPv6-ready“ route # /sbin/route -? 2>& 1|grep -qw 'inet6' && echo "utility 'route' is IPv6-ready“ ip # /sbin/ip 2>&1 |grep -qw 'inet6' && echo "utility 'ip' is IPv6-ready"
6
IPv6-ready test/debug programs # ping6 -c 1 ::1
7
Add an IPv6 address # /sbin/ip -6 addr add 2001:0db8:0:f101::1/64 dev eth0 Atau # /sbin/ifconfig eth0 inet6 add 2001:0db8:0:f101::1/64
8
Removing an IPv6 address # /sbin/ip -6 addr del 2001:0db8:0:f101::1/64 dev eth0 Atau # /sbin/ifconfig eth0 inet6 del 2001:0db8:0:f101::1/64
9
Add an IPv6 route through a gateway # /sbin/ip -6 route add 2000::/3 via 2001:0db8:0:f101::1 Atau # /sbin/route -A inet6 add 2000::/3 gw 2001:0db8:0:f101::1
10
Removing an IPv6 route through a gateway # /sbin/ip -6 route del 2000::/3 via 2001:0db8:0:f101::1 Atau # /sbin/route -A inet6 del 2000::/3 gw 2001:0db8:0:f101::1
11
Add an IPv6 route through an interface # /sbin/ip -6 route add 2000::/3 dev eth0 metric 1 Atau # /sbin/route -A inet6 add 2000::/3 dev eth0
12
Removing an IPv6 route through an interface # /sbin/ip -6 route del 2000::/3 dev eth0 Atau # /sbin/route -A inet6 del 2000::/3 dev eth0
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.