1. Hardware tools needed
# Internet Connection
# Computer with 2 LAN Cards
# Switch / Hub
# Cable network and RG 45
# Laptop / Computer you to have a LAN card and Wireless
2. Software tools needed
# Microsoft Windows XP to computer (1.2)
# Squid for windows [on attachments]
# IDM (Internet Download Manager) to the computer (1.5) [is in the attachment]
# FDM (Free Download Manager) to the computer (1.5) [is in the attachment]
# Web Browser (IE, Mozilla, Opera, Chrome, Safari, etc.)
The condition of the computer are:
- Connect to an ISP using a LAN card 1, with the following specifications:
ip address is dynamic (obtain) 192.168.2.x and conditions LANnya Internet Connection Sharing
- Connect to the Switch / Hub (1.3) using a LAN card 2, with the following specifications:
ip address is static (manual) 123.3.3.1, 255.255.255.0, gateway and DNS empty
- installed squid for windows
How to use two internet connections simultaneously
Mozilla browser in duetkan with IDM
IE browser in duetkan with FDM ... or vice versa, it's up to you.
Mozilla and IDM setting without proxy (connecting to wireless -> ISP 2)
Mozilla -> Click Tools, select Options
On the Network tab, click Settings, make sure no proxy
IDM -> click Downloads, select options
Be sure not in check and not filled proxy
IE settings and FDM by proxy (connection to (1.2) -> ISP 1)
IE -> Click Internet Options
On the Connections tab click on LAN Settings
Check use a proxy server .... then fill with computer ip (1.2) and setting the port squid for windows (default 3128)
FDM -> Click Options, select Settings
Choose Downloads - New Download, click Advanced
Make sure the proxy was derived from IE, or you can enter your own by selecting Specify manually
Now your computer has 2 Internet connections that can be run together, and can be used interchangeably, just played his proxy on 2 browsers and 2 downloader it.
for download squid, fdm and idm just cLick here
Sunday, April 24, 2011
How to use 2 Internet connection in 1 PC / Laptop
Thursday, April 21, 2011
Hacking into Windows XP Login Password
This time I wrote about how to overcome the problem of forgotten passwords windows, especially windows xp. This can be used for any computer using Windows XP OS, let's try:
1. When it appears the screen to select the account and the password, press Ctrl-Alt-Del twice. Then the screen will appear containing the name and password box
2. Clear writing on the box and type an administrator name
3. Password does not need to be filled
4. Then press OK. Then straight into windows as administrator.
Once inside, we can change the administrator password. The trick is as follows:
1. Log user account through control panel or by clicking on the top left picture account start menu.
2. Once inside, we can see which user account to computer administrator. For example, the computer account is Faisal. Then to change the password see the next steps are:
# Click START then RUN and when cmd. Then it will go into DOS
# Type in net user and hit enter. It will show the names of the Windows XP user account. Consider one by one the names of the existing user account. Usually the name of the user account when we look at the menu the same user account with which we see through a net user, but sometimes different. Therefore, see one by one equated with that when we look at the menu user account. For example:
On the menu user account, the account that there are:
Faisal
Jafar
Ash
Guest
But an account that looks at the net user:
Jafar
Guest
Ash
Acer
SUPPORT_xxx
IUSR_WINDOWSXP
IWAM_WINDOWSXP
VVSR_WINDOWS_xxx
So in conclusion, the computer administrator Faisal other name is Acer. Attention that SUPPORT, IUSR, IWAM, etc. VVSR not account name.
# After knowing that the administrator account is the Acer then the next step is to type in net user administrator account name space star space. For example:
Acer net user *
# Then the note "type a password for the user:".
If you want a computer administrator password be erased:
Press enter just do not have to be filled, then the note again "Retype the password to confirm:", press enter also do not have to be filled. THEN you have deleted the computer administrator password.
If you want to change the administrator computer passoword:
Fill in the password you want in the "type a password for the user:" and the same password in "Retype the password to confirm:". Notice that the word type the password that we will not look as though we're not typing anything, so you do not need to stay confused just type, guaranteed success.
Good luck !!!
Wednesday, April 20, 2011
C++ of Calculate the square root of equation
#include "math.h"
int main()
{
float a, b, c, D, X, X1, X2, XRiil, XImajiner;
printf("Perhitungan akar-akar persamaan aX2+bX+c=0\n");
printf("Masukkan nilai koefisien a, b, dan c:\n");
scanf("%f %f %f", &a, &b, &c);
D = b*b-4*a*c;
printf("Diskriminan = %g\n", D);
printf("Akar persamaan %gX2 + %gX + %g = 0 adalah:\n", a, b, c);
if (D > 0) {
X1 = (-b+sqrt(D))/(2*a);
X2 = (-b-sqrt(D))/(2*a);
printf("X1 = %g\n", X1);
printf("X2 = %g\n", X2);
} <span id="fullpost">
else if (D == 0) {
X = -b/(2*a);
printf("X1 = X2 = %g\n", X);
}
else {
XRiil = -b/(2*a);
XImajiner = sqrt(-D)/(2*a);
printf("Akar imajiner:\n");
printf("X1 = %g+%g*i\n", XRiil, XImajiner);
printf("X2 = %g-%g*i\n", XRiil, XImajiner);
}
return 0;
}
</span>











