Tuesday, April 20, 2010

Blackberry cannot be activated

http://forum.gsmhosting.com/vbb/f489/pin-suspended-bis-cannot-activate-638751/index5.html
here is the step by step guide -
download BB Desktop Manager version 4.7 or higher and back ur fone..
you download the MFI Mul*t*iloader (search it on google)
Downoload and install on your hard drive. (follow the onscreen instruction)
Download radi*o*lab toold (again, search it on google)
DISCONNECT FROM INTERNET - PLEASE PLEASE
once you have done both connect phone to ur laptop and thn open MFI Multil*o*ad. Let it detect the fone and do whatever it wants to. after few seconds you shall see the results in same window, could be - ABORT (Yellow colour fonts), FAIL (Red), PASS (Green)
regardless of what it is, go to radio lab. Connect by clicking on top left clickable button.
Than Click on ID from left coulmn and than Read the PIN and/or IMEI. Change it to what you like. Than press, WRITE (next to Read)
All this while, leave your fone connected (dont worry if you dont see anything on ur screen)
than close everything and go to BB Desktop Manager and flash the fone... by clicking on Application Loader. follow the on screen prompts (you needed to be connected to internet)

MFI multiloader
http://forum.gsmhosting.com/vbb/f489/download-guide-mfi-multiloader-blackberry-unlock-653921/

Wednesday, March 10, 2010

JConnector and Facebook connect - Session key invalid or no longer valid

Fatal error: Uncaught exception 'FacebookRestClientException' with message 'Session key invalid or no longer valid' in .../modules/mod_jconnector/facebook/php/facebookapi_php5_restlib.php:3017 Stack trace: #0 .../modules/mod_jconnector/facebook/php/facebookapi_php5_restlib.php(1614): FacebookRestClient->call_method('facebook.users....', Array) #1 .../modules/mod_jconnector/jconnector_server.php(56): FacebookRestClient->users_getInfo('my facebook id', Array) #2 {main} thrown in .../modules/mod_jconnector/facebook/php/facebookapi_php5_restlib.php on line 3017

To fix this issue go to the file modules/mod_jconnector/jconnector_server.php there is a line at round about line 50:
$facebook = new Facebook($module_params['fb_key'], $module_params['fb_secret']);

Just after the above line add this line to fix the issue:
$facebook->api_client->session_key = null;


Now it should look something like this:
Code: [Select]
include_once(JPATH_BASE .DS.'modules'.DS.'mod_jconnector'.DS.'facebook'.DS.'php'.DS.'facebook.php');
$facebook = new Facebook($module_params['fb_key'], $module_params['fb_secret']);
$facebook->api_client->session_key = null;
$fb_uid = $facebook->require_login();

Reference
http://www.phpin24.co.za/php/jconnector-and-facebook-connect-session-key-invalid-or-no-longer-valid/

Tuesday, February 2, 2010

Equallogic setup

Got Equallogic, lots of manuals, yeah, but where to start?

So you bought an EqualLogic SAN, now what
http://michaelellerbeck.com/2009/11/23/so-you-bought-an-equallogic-san-now-what-part-one/

Wednesday, January 13, 2010

How to shutdown EqualLogic


1. Use telent, SSH connecting to the SAN IP (no group IP) or null modem cable connecting to the SAN serial port.
2. login using grpadmin account.
3. run shutdown command.

Here are example.

PS Series Storage Arrays
Unauthorized Access Prohibited

login: grpadmin
Password:

Welcome to Group Manager

Copyright 2001-2008 EqualLogic, Inc.

SANGP> shutdown
Do you really want to shutdown the system? (yes/no) [no]yes
Halt at Tue Jun 9 18:37:04 CDT 2009 -- please wait...
5823:0:logevent: 9-Jun-2009 18:37:04.280835:logevent.c:242:WARNING:25.3.0:User has initiated restart with '(halt)'.

The array has been halted.
You can safely power off the array or type any key to restart the array.

Reference:
http://www.chicagotech.net/netforums/viewtopic.php?f=1&t=6271

Thursday, December 10, 2009

Connect two Yamaha RTX via VPN with dynamic global IP

Connect two Yamaha RTX via VPN with dynamic global IP (of course, one side must have a fixed global IP)
http://www.rtpro.yamaha.co.jp/RT/docs/ipsec/dialup_vpn.html

PPTP VPN on Yamaha RTX

This is to set Yamaha RTX as PPTP server waiting for connection from clients.

# pp select anonymous
anonymous# pp bind tunnel2
anonymous# pp auth request mschap
anonymous# pp auth username
anonymous# ppp ipcp ipaddress on
anonymous# ppp ipcp msext on
anonymous# ppp ccp type mppe-any
anonymous# ip pp mtu 1280
anonymous# pptp service type server
anonymous# pp enable anonymous
anonymous# pptp service on
anonymous# tunnel select 2
tunnel2# tunnel encapsulation pptp
tunnel2# tunnel enable 2
tunnel2# save
セーブ中... CONFIG0 終了

Reference
http://www.rtpro.yamaha.co.jp/RT/docs/example/pptp/pptp_example1.html

Thursday, December 3, 2009

Filtering packet at tunnel on Yamaha RTX

Filter setting from Web UI is only possible for PP, but via command line filtering tunnel is also possible, for example:

ip filter 201010 pass * 172.31.31.0/24 icmp * *
ip filter 201011 pass * 172.31.31.0/24 established * *
ip filter 201012 pass * 172.31.31.0/24 tcp * ident
ip filter 201013 pass * 172.31.31.86/32 * * *
ip filter 201014 pass 10.0.10.254/32 172.31.31.0/24 * * *
ip filter 201015 pass 172.31.31.0/24 * * * *

tunnel select 2
tunnel encapsulation ipip
tunnel endpoint address 172.25.111.3
ip tunnel tcp mss limit auto
ip tunnel secure filter in 201010 201011 201012 201013 201014 201015
tunnel enable 2

This is, use "ip tunnel secure" instead of "ip pp secure" and put this line after "tunnel select".