Kamal Prasad wrote:
>  I configured an ipv6 interface for the ethernet interface as given below:-
[...]
> e1000g0: flags=202000840<RUNNING,MULTICAST,IPv6,CoS> mtu 1500 index 2
>         inet6 fe80::221:28ff:fe23:f702/10
>         ether 0:21:28:23:f7:2

That interface isn't configured for IPv6.  It's just plumbed, and not
marked "up."  Do this:

        # ifconfig e1000g0 inet6 up

(How did you configure it?  The standard system scripts will mark an
interface "up" as part of the initialization process.)

> r...@bgapps170 # ifconfig e1000g0 inet6 addif 7001::25/64

You'll also want to tell that interface to go "up."  To do that after
the above command:

        # ifconfig e1000g0:1 inet6 up

To do it all as one command:

        # ifconfig e1000g0 inet6 addif 7001::25/64 up

-- 
James Carlson         42.703N 71.076W         <carls...@workingcode.com>
_______________________________________________
networking-discuss mailing list
networking-discuss@opensolaris.org

Reply via email to