I was curious with the new Blackberry 9300, what was the difference between it and the 8520, other than 3G and GPS. Found out the cpu's are different. and the 9300 supports Wifi N.
8520: 512MHz
9300: 624 MHz, Even better I have the exact chip. Marvell PXA930
I have a spare 8520 that I am supposed to send back this week. But I just got a copy of the 9300 BB os 6.0, So I am going to load it, and see.
Primarily where I write my fixes to things, that I can foresee needing again. InfoSec / Linux stuff.
Tuesday, September 14, 2010
Wednesday, September 08, 2010
Say you are running 64 bit Windows, and you install OpenVPN, and someone gives you a script that keeps failing. You can't figure it out. I will post an example, and show you the issue I was having.
##############################################
# Sample client-side OpenVPN 2.0 config file #
# for connecting to multi-client server. #
# #
# This configuration can be used by multiple #
# clients, however each client should have #
# its own cert and key files. #
# #
# On Windows, you might want to rename this #
# file so it has a .ovpn extension #
##############################################
client
dev tap
proto udp
remote vpn.example.com 1194
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
pkcs12 "C:\\Program Files\\OpenVPN\\config\\foo.pfx"
reneg-sec 0
comp-lzo
verb 3
mute 20
#####
Ok, Heres where the problem lies.
pkcs12 "C:\\Program Files\\OpenVPN\\config\\foo.pfx"
Needs to be changed to
pkcs12 "C:\\Program Files (x86)\\OpenVPN\\config\\foo.pfx"
The (x86) makes all the difference in the world.
##############################################
# Sample client-side OpenVPN 2.0 config file #
# for connecting to multi-client server. #
# #
# This configuration can be used by multiple #
# clients, however each client should have #
# its own cert and key files. #
# #
# On Windows, you might want to rename this #
# file so it has a .ovpn extension #
##############################################
client
dev tap
proto udp
remote vpn.example.com 1194
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
pkcs12 "C:\\Program Files\\OpenVPN\\config\\foo.pfx"
reneg-sec 0
comp-lzo
verb 3
mute 20
#####
Ok, Heres where the problem lies.
pkcs12 "C:\\Program Files\\OpenVPN\\config\\foo.pfx"
Needs to be changed to
pkcs12 "C:\\Program Files (x86)\\OpenVPN\\config\\foo.pfx"
The (x86) makes all the difference in the world.
Subscribe to:
Posts (Atom)