Thanks for your reply. I actually read those two posts searching for the same string.

I'm glad you posted it though, because I solved the problem after rereading them. For those of you who are reading this and experiencing the same situation, I've included a fix.
Problem: IPv6 not enabled in kernel
Troubleshooting:
Dispite Yast having a setting in Global Options for Enable IPv6, it appearantly does not work correctly. I checked the modproble files and I don't see all the changes I was expecting to see. I also did not see this feature in the command line version of YAST. So, this told me that this GUI feature might not work.
reference:
http://forums.opensuse.org/network-i...6-default.html
So, I tested currently running kernel for IPv6 compatibility with:
test -f /proc/net/if_inet6 && echo "Running kernel is IPv6 ready"
This did nothing and told me that this kernel module was not being loaded at boot, even with "Enable IPv6" checked in YAST.
Resulution/Test:
So, I tried to load the module manually with:
modprobe ipv6
To test if it worked:
lsmod | grep -w 'ipv6' && echo "IPv6 module successfully loaded"
It loaded fine. Sweet! I run the first line again just as a sanity check and it told me my running kernel was IPv6 ready. Still sane, awesome!
I ran amcheck and have moved on to other errors (that were common and covered on the wiki above).
Followup:
So, the only thing I had to do is make sure that IPv6 module gets loaded at boot. That is covered in the refereces below and also where I got the testing info above.
reference:
http://tldp.org/HOWTO/Linux+IPv6-HOW...ck-kernel.html
see also:
http://forums.opensuse.org/archives/...el-module.html
Good luck,
WT