The rc.inet2 file has nothing to do with wireless, and there is only a rc.inet1.conf.
For WPA/WPA2 configuration it is not needed to change anything in rc.inet1.conf or rc.wireless. All configuration takes place in /etc/wpa_supplicant.conf.
The one difference between WPA and WPA2 is in the "proto" parameter which determines which protocols the wpa_supplicant is allowed to use:
Code:
WPA = WPA/IEEE 802.11i/D3.0
RSN = WPA2/IEEE 802.11i
If not set, the "proto" parameter defaults to: "WPA RSN". Also "WPA2" can be used as an alias for "RSN".
The "pairwise" and "group" parameters mention the allowed cipher(s) to be used for your WPA/WPA2 connection. When you set pairwise and group ciphers to "CCMP TKIP" you'll be OK. This is also the default value if you don't set it.
Summarizing it: when you don't set any explicit values for the above (and for the "key_mgmt" parameter), the defaults will be OK for both WPA and WPA2.
Eric