开发者

Solaris 10 - How do I check for IPv4-in-IPv6 mapping?

开发者 https://www.devze.com 2023-03-31 12:38 出处:网络
I was wondering if there is the equivalent of the following in Solaris for checking if IPV6_V6ONLY is enabled by default:

I was wondering if there is the equivalent of the following in Solaris for checking if IPV6_V6ONLY is enabled by default:

On a Linux system I can check if IPv6 only is enabled by checking the following file:

/proc/sys/net/ipv6/bindv6only

If bindv6only contains 0 (IPv4-in-IPv6 & IPv6 are both enabled).

If bindv6only contains 1 (Only IPv6 is enabled).

How can I check that IPV6_V6ONLY by default is enabled on Solaris 10开发者_如何学Go ? Is there one configuration parameter that can provide this info or do I need to iterate through interfaces via ifconfig -a6 or /etc/hostname6.xxx

Thanks.


Solaris provides socket option defaults with the ndd command, e.g.

sudo /usr/sbin/ndd /dev/ip \?

In this instance Solaris does not provide an option to allow the administrator to enable IPV6_V6ONLY by default.

You might enjoy this:

http://blog.caurea.org/2010/01/31/the-abomination-known-as-ipv6-v6only.html

0

精彩评论

暂无评论...
验证码 换一张
取 消