Featured Post Today
print this page
Latest Post

How to Create a VPN server (home or Office)

How to create the VPN server interface, step-by-step
1. Click Start | Control Panel.
2. In the Control Panel, open the Network Connections applet.
3. In the Network Connections window (see Figure A), open the New Connection Wizard.
Figure A

The Network Connections window
4. On the Welcome To The New Connection Wizard page, click Next.
5. On the Network Connection Type page (see Figure B), select the Set Up An Advanced Connection option.
Figure B
On the Advanced Connection Options page (see Figure C), select the Accept Incoming Connections option and click Next.
Figure C

Configuring XP to accept incoming connections
7. On the Devices For Incoming Connections page (see Figure D), you can select optional devices on which you want to accept incoming connections.
Figure D

Note that you are not presented with any of the network interfaces on the computer.
8. On the Incoming Virtual Private Network (VPN) Connection page (see Figure E), select the Allow Virtual Private Connections option and click Next.
Figure E
9. On the User Permissions page (see Figure F), select the users that are allowed to make incoming VPN connections. Click Next.
Figure F

Any user that isn't selected won't be able to initiate an incoming connection.
10. On the Networking Software page (see Figure G), click on the Internet Protocol (TCP/IP) entry and click the Properties button.
Figure G

Configuring TCP/IP properties
11. In the Incoming TCP/IP Properties dialog box (see Figure H), place a check mark in the Allow Callers To Access My Local Area Network check box. This will allow VPN callers to connect to other computers on the LAN. If this check box isn't selected, VPN callers will only be able to connect to resources on the Windows XP VPN server itself. Click OK to return to the Networking Software page and then click Next.
Figure H

Granting LAN access to callers
12. On the Completing The New Connection Wizard page, click Finish to create the connection.
After the Incoming Connection is complete, right-click on the connection in the Network Connections window and select the Properties command (see Figure I).
Figure I

Accessing the properties of the VPN server link
Note that on the General tab of the Incoming Connections Properties page (see Figure J) that no devices are listed. The comment No Hardware Capable Of Accepting Calls Is Installed isn't true, since you can now create VPN connections to both network interface cards. In practice, there is no point in creating a VPN connection to the internal interface card.
Figure J

VPN clients will only call the external IP address of the Windows XP Professional VPN server.
VPN server optimization tips
The New Connection Wizard made it easy to create the VPN server interface, but you can still do more to optimize your VPN connections. First, note that you can create PPTP or L2TP/IPSec VPN connections. Figure K shows the connection status dialog box of a Windows XP VPN client connected to a Windows XP VPN server. Note that MPPE 128-bit encryption is automatically enabled and that Microsoft CHAP v2 is used for authentication.

Figure K

If both machines had machine certificates from the same Certification Authority installed, an L2TP/IPSec VPN link could have been negotiated.
If you want the VPN client to access resources on the internal network, the IP address assigned to the VPN client should be on the same network ID as the internal interface of the Windows XP VPN server computer. In addition, all the machines on the internal network should have a default gateway set using the IP address of the internal interface of the Windows XP VPN server.
In the unlikely event that the SOHO has multiple network segments, the routing table on the Windows XP VPN server needs to be configured with paths to the various internal network IDs. You can use the ROUTE ADD command to create these routing table entries.
Small networks that use a Windows XP Professional machine for a VPN server probably won't have network services such as WINS or DNS. If name resolution on the private network is an issue for the VPN client, then you should create a LMHOSTS file, a simple text file that contains name and IP address mappings. For example, the following line could represent an entry in an LMHOSTS file:
10.0.0.2 DEFIANT
The VPN client must be configured with an IP address or host name for the Windows XP Professional VPN server. If the Windows XP Professional client has a dedicated link to the Internet and a static IP address, you can use that IP address in the VPN client configuration interface. However, if the Windows XP Professional VPN server is assigned an IP address via DHCP, you'll have to use an Internet host name and a method of registering the host name dynamically. A couple of services you might want to look into are TZO and DYNDNS. Both of these services will let you dynamically register a computer's IP address into the public DNS database.
Conclusion
Windows XP Professional provides simple VPN server capabilities that let you connect single VPN clients to your internal network, one at a time. If the Windows XP Professional computer has a dedicated connection to the Internet, you can connect to that computer from virtually anywhere in the world using a VPN link. The VPN server setup is simple and can accept calls from any Windows PPTP or L2TP/IPSec client.
2 comments
Posted by: Jaime
blognizend, Updated at: 8:23 PM

Connect All VPN using other modems.(gl@be) (B-series, mf600, mf627, e153 Icon 255 etc)




1. Go to Control Panel

2. Select View Network Status and Taks

3. Click Network Connection

4. Select Properties

5. Select Internet protocol Version 4 (TCP/IPv4)

6. Click Properties

7. Click Advanced

8. Go to WINS

9. Select Enable NetBios over TCP/IP or Disable

10. Click Ok

DONE! Tested it on icon 255 with new config



thanks to drwang12!





0 comments
Posted by: Jaime
blognizend, Updated at: 3:04 AM

Make Your CMD Pinger More Attractive!!! [PINGER FOR BUBU, HSS, EXPAT, & OTHER VPNs]

My CMD Pinger with reply background color indicator!

We are using ping command to monitor the networks, sometimes we have to monitor multiple IP address with continuous ping in different windows. Normal command line is with a black colour background and white text. But it will be better to show a red window if the Request timed out. And the default success pings with a green background. Here is the script to do the ping with color output results.


Color Legend:
Green - with reply
Red - request timed out

What is happening in this Batch file?

Prompting an IP address and set to a variable named %IP%, and its pinging once with 32 bytes of data. If it is failed the background color will change to red. And display “Request timed out” then wait for some title . We used a self ping for sleep function. The code put it in loop so it will ping continuously.
Original Batch Script

:: Batch Script
:: color Ping
:: Code By Binbert.com
echo off & cls
set /p IP=Enter your IP Address :
:top
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET OUT=4F & echo Request timed out.) ELSE (SET OUT=2F)
color %OUT%
ping -n 2 -l 10 127.0.0.1 >nul
GoTo top
My Modified Batch Script

:: Batch Script
:: Color Ping
:: Code By Binbert.com
:: Edited By FreeSoftAppZ.webs.com
echo off & cls
:top
PING -n 1 www.google.com | FIND "TTL="
IF ERRORLEVEL 1 (SET OUT=4F & echo Request timed out.) ELSE (SET OUT=2F)
color %OUT%
ping -n 2 -l 10 127.0.0.1 >nul
GoTo top

Additional command by sir edzrhomski07
siguro lagyan mo nito ts. para di masyado malaki.

:: Batch Script
:: Color Ping
:: Code By Binbert.com
:: Edited By FreeSoftAppZ.webs.com
mode 53, 20
echo off & cls
:top
PING -n 1 www.google.com | FIND "TTL="
IF ERRORLEVEL 1 (SET OUT=4F & echo Request timed out.) ELSE (SET OUT=2F)
color %OUT%
ping -n 2 -l 10 127.0.0.1 >nul
GoTo top
Adjust the size of its window from this line: mode 53, 20
where "53" is the width size, and "20" is the height size.

Recommended window size command is: mode 54, 15

with FLUSHDNS & REGISTERDNS:

:: Batch Script
:: color Ping
:: Code By Binbert.com
:: Edited By FreeSoftAppZ.webs.com
mode 54, 15
@echo off
cd \
ipconfig/flushdns
ipconfig/registerdns

echo off & cls
:top
PING -n 1 202.126.40.5 | FIND "TTL="
IF ERRORLEVEL 1 (SET OUT=4F & echo Request timed out.) ELSE (SET OUT=2F)
color %OUT%
ping -n 2 -l 10 127.0.0.1 >nul
GoTo top
OR

:: Batch Script
:: color Ping
:: Code By Binbert.com
:: Edited By FreeSoftAppZ.webs.com
mode 54, 15
echo off & cls
cd \
ipconfig/flushdns
ipconfig/registerdns

:top
PING -n 1 202.126.40.5 | FIND "TTL="
IF ERRORLEVEL 1 (SET OUT=4F & echo Request timed out.) ELSE (SET OUT=2F)
color %OUT%
ping -n 2 -l 10 127.0.0.1 >nul
GoTo top
Additional command by sir edzrhomski07

siguro lagyan mo nito ts. para di masyado malaki.

:: Batch Script
:: Color Ping
:: Code By Binbert.com
:: Edited By FreeSoftAppZ.webs.com
mode 53, 20
echo off & cls
:top
PING -n 1 www.google.com | FIND "TTL="
IF ERRORLEVEL 1 (SET OUT=4F & echo Request timed out.) ELSE (SET OUT=2F)
color %OUT%
ping -n 2 -l 10 127.0.0.1 >nul
GoTo top
Adjust the size of its window from this line: mode 53, 20
where "53" is the width size, and "20" is the height size.

Recommended window size command is: mode 54, 15

with FLUSHDNS & REGISTERDNS:

:: Batch Script
:: color Ping
:: Code By Binbert.com
:: Edited By FreeSoftAppZ.webs.com
mode 54, 15
@echo off
cd \
ipconfig/flushdns
ipconfig/registerdns

echo off & cls
:top
PING -n 1 202.126.40.5 | FIND "TTL="
IF ERRORLEVEL 1 (SET OUT=4F & echo Request timed out.) ELSE (SET OUT=2F)
color %OUT%
ping -n 2 -l 10 127.0.0.1 >nul
GoTo top
OR

:: Batch Script
:: color Ping
:: Code By Binbert.com
:: Edited By FreeSoftAppZ.webs.com
mode 54, 15
echo off & cls
cd \
ipconfig/flushdns
ipconfig/registerdns

:top
PING -n 1 202.126.40.5 | FIND "TTL="
IF ERRORLEVEL 1 (SET OUT=4F & echo Request timed out.) ELSE (SET OUT=2F)
color %OUT%
ping -n 2 -l 10 127.0.0.1 >nul
GoTo top


7 comments
Posted by: Jaime
blognizend, Updated at: 1:50 AM

Unblock Smart Buddy Sim Cards


1 lumang smart buddy sim
2 bagong smart buddy sim

yan ang mga sim ko.

issues:


1.di makakonek sa dashboard (lumang sim at yung isang bagong sim ko)
2.di makapagsend ng SMS(isang bagong sim ko)


yan yung mga naexperience ko.

SOLUTIONS:

1.di makakonek sa dashboard (lumang sim at yung isang bagong sim):
a.kung may load ka pa tapos di ka na makakonek sa dashboard mo, ubusin mo muna yung load mo dapat 0 na. tapos papasa ka ng load kahit 2 o paload ka ng 15.
b. type mo OFF to 211 pag ka receive ng reply galing sa smart,restart mo CP mo.
c. after pag ka-restart type mo GRPS ON to 333
0 comments
Posted by: Jaime
blognizend, Updated at: 1:41 AM

How to Upside Down (Flip) Facebook Status ǝʇɐpdn:-)

1.Go to the website www.fliptext.org.

2.In the upper field type your status that you want to update and then click on Flip Text button.

3.Now in the lower field you will see flipped text of your status.


0 comments
Posted by: Jaime
blognizend, Updated at: 11:34 PM

Manila's Globe Telecom sets $790 mln network, IT upgrade


MANILA, Nov 9 (Reuters) - Globe Telecom Inc , the Philippines' second-biggest telecommunications firm, said on Wednesday it will spend $790 million in a network upgrade and IT re-engineering programme as it seeks to bolster its position in a highly competitive market.
The company, owned by local conglomerate Ayala Corp and Singapore Telecommunications Ltd , said in a statement the project -- its biggest investment in the last two decades -- would be undertaken in the next two to three years.
Globe's announcement comes after rival Philippine Long Distance Telephone Co's (PLDT) $1.6-billion takeover of third-ranked Digital Telecommunications Philippines Inc (Digitel) , a move that solidified PLDT's leading position in the local telecommunications market.
"Given the growing demand for bandwidth-heavy services, the modernisation programme will bring significant improvements to network capacity leading to improved reliability, ease of access and pervasive coverage," Globe said in a statement.
Telecoms firms are looking at data and broadband services to spur future profit growth, with the traditional mobile phone business reaching saturated levels.
The modernisation programme would also generate savings in operating expenses and capital expenditures totaling $180 million and $210 million, respectively, over the next five years, the company said.
Globe said it expects to decommission assets with estimated net book value of $388 million after the upgrade, with rising depreciation charges over the remaining life of the assets likely to impact its profitability.
The company would contract the world's No.2 network equipment maker Huawei for the network upgrade and Amdocs , a phone-billing and customer-management software maker, for the IT system upgrade.
Globe also announced it was changing its dividend pay-out policy to 75-90 percent of prior year's core net income instead of reported net income.
The new dividend policy, set to take effect in 2012, would ensure that dividends would remain sustainable and yields competitive, it said.
(Reporting by Erik dela Cruz; Editing by Rosemarie Francisco)
0 comments
Posted by: Jaime
blognizend, Updated at: 11:30 PM
 
Support : Creating Website | Johny Template | Mas Template
Copyright © 2011. blognizend - All Rights Reserved
Template Created by Creating Website Published by Mas Template
Proudly powered by Blogger
Google+ Jaime Lacson