For a basic IPV6 Config on a Cisco Device, following commands are requeird:
!
ip cef
!
! enable ipv6 routing
!
ipv6 unicast-routing
!
! CEF Enabling
!
ipv6 cef
!
! Disabling Source Routing
!
no ipv6 source-route
!
! protecing against source ip spoofing
! per interface
! RPF Reverse Path Forwarding
!
!
interface Fastethernet 0/0
ipv6 verify unicast reverse-path
!
interface Fastethernet 0/1
ipv6 verify unicast reverse-path
!
and define a Interface for only IPV6 (EUI-64)
interface FastEthernet0/1
no ip address
ipv6 address 2001:db8:1::/64 eui-64
or set fix
interface FastEthernet0/0
no ip address
ipv6 address 2001:db8:beef::2/64
and set an anycast IPv6 address
interface FastEthernet0/1
no ip address
ipv6 address 2001:db8:1::affe/64 anycast
and a local interface
interface Loopback0
no ip address
ipv6 address 2001:db8:dead::bbbb/128
ipv6 enable