Help - Search - Member List - Calendar
Full Version: D.I.Y. Lowerping
Lowyat.NET > Computers > Gamers Hideout > World of Warcraft
Pages: 1, 2, 3, 4, 5, 6, 7
Tentris
http://forums.worldofwarcraft.com/thread.h...271071466&sid=1

Page 5 there is a step by step buide. I have an old P3 with 256MB RAM, i'm going to try this myself later.

QUOTE
Sure but ignore spelling mistakes grammer etc wink.gif

Stuff you will need.

feather-0.7.5.iso http://mymirrors.homelinux.org/linux/feather-linux/
vmware server http://www.vmware.com/download/server/
TcpView for windows http://www.microsoft.com/technet/sysintern...es/TcpView.mspx

Once vmware server is installed open it up and click local host->then ok
Then click file.
Then click new->virtual machine click next
choose typical ->next->linux->version->(drop down menu)other version 2.4xkernel->next

Choose a name for it and the place u want to store the virtual machine
click next->use bridge networking->next
i did 1gb for disk capacity (you can make it smaller )then click finish.

Once that is done click host then virtual network settings->click host virtual network mapping
for vMnet0 choose your network adaptor u connect to the net with then leave the rest as they are ->click ok.


In the inventory window in vmware server right click on the virtual machine click settings then click memory choose 128mb.
Then click cd-rom click use iso image and point that to the feather-0.7.5.iso you downloaded click ok.
Now time to boot feather linux right click on the virtual machine in the inventory and click power on.

It takes a few seconds for it to start up.
For the setup routine choose the 2nd option xfdev press enter.
For the mouse choose no to usb mouse then yes to the next option.
Test to make sure your internet connection is working on the vm machine right click on desktop apps->net->firefox.
Now to get the ip for your wow server log a character into wow (leave vmware open smile.gif )
alt+tab to desktop and run tcpview.exe scroll down until u find wow and right click and copy the ip address.and paste it into notepad or something.

Then close wow.

Go back into vmware linux and open console (its on the desktop) and type in Yarre's fix. (the stuff in caps are not a typo wink.gif)

sudo iptables -t nat -A PREROUTING -p tcp -d your.wow.server.ip.address --dport 3724 -j REDIRECT --to-ports 3724 press enter

sudo socat -d -d -d TCP4-LISTEN:3724,nodelay,fork,reuseaddr,su=nobody TCP4:your.wow.server.ip.address:3724,nodelay press enter

now hopefully that should be working now open up a new console window and type ifconfig now in eth0 look for your inet addr that is the ip address of the virtual machine.You will need that to route wow traffic to your vmware linux.

Now go back into windows click start menu click run type cmd then ok, Now time to route your wow traffic through your vm linux.

From Baalzaman post on page 2.

Replace wow.server.ip with your wow server ip and replace vm.machine.ip with the vm machine ip
route -p ADD wow.server.ip MASK 255.255.255.255 vm.machine.ip

input that into the cmd window

(if u want to connect to wow not using the vm linux u will have to delete that route just type route delete wow.server.ip)

Now log into wow and it should be routing wow traffic to your vmware linux box and you should be enjoying lower pings.

Credit goes to Yarre for this excellent fix and Baalzaman for the route add cmd Thank you smile.gif.

If u want to install feather linux to your hdd righ click on the vm linux desktop and choose enhancements and extra and
choose hd install->install hard to hard disk-safer option and follow the prompts.

After you have installed it to the vmware hdd you can open up sciTE and save the iptables,socat cmds to disk and then all you have to do is copy the iptables,socat cmds
into the console (middle mouse button to paste) when you want to run it. (There is probably an easier way to save and run it later i dont know much about linux)
[ Post edited by Horgan ]



Added on December 10, 2007, 12:09 pmAnother long walk-through on Page 6 of the thread. A bit more noob-friendly.

Definitely gotta try this zomg.

QUOTE
OK i've done a little writeup in a private forum on how to get a linux virtual machine setup with socat etc. This ISN'T necessarily the best way to do it, i'm a linux noob so I stuck with whats familiar to me so hold those flames tongue.gif

**************************************************************************

I used Debian for no other reasons than thats the only distro I have any experience with and apt-get is rather handy smile.gif. Please don't flame me for my choice tongue.gif

I don't claim the way i've done it is the best/cleanest or most noob friendly way of doing it, but it worked for me. Your mileage may vary!

Please note to run VMware + wow on the same pc the pc needs to have plenty of grunt. I'm doing this on a core 2 duo with 2 GB ram. Doing this with less is not recommended.

Quick and dirty setup:

Preparation: Download the following -

http://cdimage.debian.org/debian-cd/4.0_r1...386-netinst.iso - I prefer netinstall ISO's as they are a lot smaller than a full CD image
http://www.vmware.com/download/server/ - make sure you get a key!
Some sort of virtual cd mounting tool, I use http://www.daemon-tools.cc - Daemon-Tools but on writing this I see the site is down at the moment. Otherwise simply burn the ISO to a blank CD. Also be warned Daemon-Tools is bundled with some adware but you can opt out of the install of that software so no big drama.

1) Install VMware. Click "yes" when it moans about IIS. The VMware install is straightforward just rather lengthy (it seems to spend a while apparently doing very little). I left 'auto-run' enabled btw.

2) Make sure the Debian cd is in your CD drive or the ISO image is mounted via something like daemon-tools

3) Set up a new virtual machine. Give the virtual machine one processor, and allow it say 512 MB ram (I have 2 GB so plenty of room), and allocate 1 GB hard drive space (again got heaps so didn't care tongue.gif). With its networking select the top option (bridging). I most creatively named my virtual machine "Debian". tongue.gif. The machine type btw is linux 2.6

4) Boot the virtual machine, all going well it should detect the CD and auto run the Debian install

5) Go through the Debian install. It is self explanatory just make sure you read each page before mindlessly clicking yes tongue.gif

6) When you reach the part about the APT repository select the mirror closest to you (there is a couple in NZ).

7) When prompted for package selection I unchecked the desktop option and clicked continue (no need for a x windows system).

8) When asked about GRUB install say yes to installing on the MBR.

9) Soon after this the install will complete. you will need to eject or unmount the CD and click continue. The virtual machine will then reboot.

10) The new debian install will boot and you will soon reach a login prompt. Log in under your user account name that you gave during the install

11) Once logged in you will need superuser privileges to carry out the following steps so to gain that type at the command prompt su and press enter, then type the admin password you set during the install. Press enter.

12) Place the Debian install CD back in the CD drive (or re mount it if using a virtual drive)

14) Type the following: apt-get install iptables and allow the install to complete. This is probably unnecessary it should already be installed - this step is just making sure.

15) Type the following: apt-get install socat and allow the install to complete.

Note i'm skipping sudo because setting that up involves editing /etc/sudoers which will be beyond a noob smile.gif (but if you really must, run the command visudo)

16) Type the following ifconfig and press enter. Note this screen is a bit complicated but what you are looking for is the virtual machines ip address. You are looking for a entry beside the Eth0 entry that will probably be something like 192.168.1.3 (for example). This will vary depending on your network setup. If anyone has an easier/noob friendly way of determining the ip address post it below!! Write down this address.

17) Refer to http://forums.worldofwarcraft.com/thread.h...518019717&sid=1 for your wow servers IP address. For Blackrock its 12.129.225.21

18) Type the following iptables -t nat -A PREROUTING -p tcp -d your.wow.server.ip.address --dport 3724 -j REDIRECT --to-ports 3724

If you play on multiple servers then you can set up multiple iptables entries simply by substituting in the server ip addresses you need.

19) Type the following socat -d -d TCP4-LISTEN:3724,nodelay,fork,reuseaddr,su=nobody TCP4:your.wow.server.ip.address:3724,nodelay (note I removed 1 -d from Yarre's example to reduce the screen spam)
If you want to play of a different server you'll need to hit CTRL-C to kill the socat screen and re-enter the above command with the correct ip for the new server. There are better ways to do this of course but i'm going for noob friendly here smile.gif

Your linux virtual machine is now ready to do its magic. You now need to set up your windows pc to send data to the linux virtual machine.

to do this you will need the ip address you wrote down earlier for your linux virtual machine (example 192.168.1.3)

20) Press START then RUN and type cmd and press enter

21) type the following:
CODE
route -p ADD your.wow.server.ip.address MASK 255.255.255.255 your.linux.virtual.machineip.address


so for example for Blackrock and using the virtual machine IP address of 192.168.1.3 the command would be:

route -p ADD 12.129.225.21 MASK 255.255.255.255 192.168.1.3

If you play on multiple servers you can add a route per server.

If the command is successful then you will be returned to the command prompt with no message. If you get a error please double check what you are typing in.

Now, fire up wow, and all going well you will be able to play on your server with a substantially lower ping!

Hopefully this all makes some sense.

Lots of credit to Yarre (for coming up with the idea) and Jax!!
Quazacolt
thanks for the update, this is what i was mentioning over the other lowerping thread in this forum. you dont really need another PC too if your current pc is decently good (1gb or 2gb ish ram with a good ammount of processor capability should do)

all you need to do is run a virtual machine linux OS and voila, virtual linux running the re-routing for you.

=edit=
to add in, yes this works, and yes, lowerping's network architecture is mainly if not entirely based upon this. (read first post of the TS cursing lowerping.com)
myremi
QUOTE(Quazacolt @ Dec 10 2007, 12:28 PM)
to add in, yes this works, and yes, lowerping's network architecture is mainly if not entirely based upon this. (read first post of the TS cursing lowerping.com)
*



Con website? O.o
Tentris
Not con lah.

Just like everything else in this world, there are 2 ways of getting things done:

1. You pay someone else to do it for you
or
2. You Do It Yourself


Added on December 10, 2007, 1:34 pmI'm going to setup a step by step guide with pics and all over the weekend.

Setup Debian on an old PC i have, and also on my notebook. If i can get it to work, i'll post up the guide once i'm done.
kenzai82
rclxub.gif rclxub.gif rclxub.gif confusing LoL...

Anyway this is a good start.. might try it out myself..

Is AMD X2 3000 with 2gb ram capable of handling these thing?

And do I need two machine to do this? =|
Quazacolt
QUOTE(myremi @ Dec 10 2007, 01:13 PM)
Con website? O.o
*



not really a con, its just them providing a service most noobs dont even know how to do it. i mean, take web hosting for example, not everyone knows how to do it, so to those that does, is it a con?

similiar cases.

the TS of that thread merely hates lowerping.com for not sharing and making a profit out of it, personal opinions smile.gif
kenzai82
" Test to make sure your internet connection is working on the vm machine right click on desktop apps->net->firefox. "

umm internet not working.. i set up everything according to the vmware thing.. anyone have problem with this?

note: NVM problem solved when i switch my adsl to router mode
raptar_eric
any1 got any idea why when i try to create a new virtual machine, it says that i got no permission to perform the operation?? im using admin account on windows...hmm?

**oh got it to work =)
intothefantasy
has anyone try this yet? how much lower will the ping goes with this?
Quazacolt
wow... holy shit. is all i have to say.

from a 500-600 ms IP become 200-400 ms

and i purposely connect to those ip as worse as possible, those that gives ~1k++ ms ping. i still get to play with ~500ish ms...wow....

=edit=
this may not be as drastic as lowerping may yield, but know this, it is free, and you dont get the risk being banned because your IP does not change, you are still using your own IP. this only creates a loop in between yourself and WoW server and its done within your network/local machine.
Jas2davir
quaza.....i also want low ms sad.gif, 1 thing i dont understand about this guide is do i need to install linux os?? or just use vista straight??
sojurn
QUOTE(intothefantasy @ Dec 11 2007, 04:10 AM)
has anyone try this yet? how much lower will the ping goes with this?
*



The way I understand it, there are 2 ways that lowerping uses to lower your ping:

1) QoS - Quality of Service, tunneling packets inherently get a higher priority through networks.

2) Predefined lower latency route -- usually, not high bandwidth, but WoW isn't high bandwidth.

Doing this, will definitely improve your latency just because of (1), but it will not do anything for (2). Thus, using this, I believe, will definitely help, but lowerping will give slightly better results. Considering that you eliminate your risk of a ban, I'd say this is a better way to go about it. However, I'll have to wait for another day when I don't log in for a day or so before I switch my method or I may set off bot alarms due to rapid IP change.
Jas2davir
some one please awnser my noob question....
Quazacolt
QUOTE(Jas2davir @ Dec 11 2007, 12:45 PM)
quaza.....i also want low ms sad.gif, 1 thing i dont understand about this guide is do i need to install linux os?? or just use vista straight??
*



yes you need to install linux, but it can be done in a VM enviroment. im using vista with VMWare thats loaded with feather-linux (running dual OS FTW)


Added on December 11, 2007, 1:13 pm
QUOTE(sojurn @ Dec 11 2007, 12:48 PM)
The way I understand it, there are 2 ways that lowerping uses to lower your ping:

1) QoS - Quality of Service, tunneling packets inherently get a higher priority through networks.

2) Predefined lower latency route -- usually, not high bandwidth, but WoW isn't high bandwidth.

Doing this, will definitely improve your latency just because of (1), but it will not do anything for (2). Thus, using this, I believe, will definitely help, but lowerping will give slightly better results. Considering that you eliminate your risk of a ban, I'd say this is a better way to go about it. However, I'll have to wait for another day when I don't log in for a day or so before I switch my method or I may set off bot alarms due to rapid IP change.
*



no doubt lowerping should be better even when they use the same network architecture/methods as this. and you've pretty much listed out why.

But the fact that you have to PAY them and have a risk of getting banned 3 days AND a final warning in which any occurence of offenses of the same or other offense will result in character erase is just a MAJOR turn off.

btw there are users that claim to further tweak the capabilities of this linux VM tunneling, but since im a linux noob, i gotta dig through and lurk moar for spoonfed syntax commands tongue.gif
Tentris
Setting this up now. Doesn't seem too complicated. The worse part about it so far has been waiting for the download to finish lol.

Will report back later on a how to guide.
Y a K u Z a
I got a question.


Does this work for WOW EU server?
myremi
Just wondering, would this work as well?

http://elitistjerks.com/572499-post199.html

The only problem I've had was looking for that System folder in WinXP. Have to try again later.
Quazacolt
QUOTE(Tentris @ Dec 11 2007, 03:39 PM)
Setting this up now. Doesn't seem too complicated. The worse part about it so far has been waiting for the download to finish lol.

Will report back later on a how to guide.
*



yea, feather-linux server is a b**** to download from lol... max speed of 40KB/sec, avg on 20-30.

regreat didnt use my work bandwidth to dl featherlinux (but may be just as shitty cuz it may be server issue), i dl'ed VMware in seconds lol... few MB/sec maxis corporate line FTW XD


Added on December 11, 2007, 3:52 pm
QUOTE(Y a K u Z a @ Dec 11 2007, 03:42 PM)
I got a question.
Does  this  work for WOW EU server?
*



judging that WoW EU is most likely to use the same network configuration as US WoW, yes.


Added on December 11, 2007, 3:53 pm
QUOTE(myremi @ Dec 11 2007, 03:46 PM)
Just wondering, would this work as well?

http://elitistjerks.com/572499-post199.html

The only problem I've had was looking for that System folder in WinXP. Have to try again later.
*



QUOTE
Another way to do this (if you are not too worried about anything other than wow lag).
<--

this ring a bell?

the registry fixes were posted on the wow forum thread and ive commented on them too
Jas2davir
ah i dont think my laptop can stand dual os :/ well gotta wait till feb19 to use my pc drool.gif drool.gif
Vagabond
I'm using feather and I can't seem to connect to the internet. Any suggestions what I should do? I've already tried switching to router mode, but it made no difference.
nitrofang
use the solution rantic mention above yesterday. took me about 1 hour plus to setup everything including downloads. conclusion. it works. my usual ping on 218.208.x.x is 700ms and above. using the solution above reduce it to 350ms and constant latency.
Vagabond
Okay, I tried Debian, got up to the point apt-get install socat, I got an error message saying Socat is missing. What am I missing?
Noyze
I just tweak window's registry to set the TcpAckFrequency default value to 1 instead of 2. I explained how to do it in the lowerping thread below. However got flamed cos some people dun know how to do it lolx. Anyways, am playing with 200ms latency now using the windows registry tweak plus my website loading times are AWESOME! really dang fast. It has to do with windows.

You see the way it works is windows sets your pc to ping the server and waits for a reply then ping again for more info. Whereas once i set the default to 1 it just pings the server like a mad man lolx. So ping and keep on telling the server that it needs more info instead of waiting for the server to reply then ping again. I hope this explains how my method works.

**Do not this might not work for some. But so far among my friends about 30++ of them it works compared to 4 of them of whom this method doesn't work.

And now to explain how to do this:-

1. Run Regedit
2. HKEY_LOCAL_MACHINE > System > CurrentControlSet > Services > Tcpip > Parameters > Interfaces
3. under Interfaces you open one of the folders (The one with your ip)
4. Right Click and New>DWORD Value
5. Value name : TcpAckFrequency : Value Data = 1

6. Close and restart.

I understand there will be a few folders to choose from I did it by trial and error, i.e. DO one the test wow, check ping, if it's not low enough then do the same in another folder to get the right folder, cos i could not find one which stated my i.p.

I know not everyone likes to tweak their registry but those who like to this is another option instead of installing linux.

Hope this helps =)
karwaidotnet
QUOTE(Noyze @ Dec 11 2007, 07:26 PM)
I just tweak window's registry to set the TcpAckFrequency default value to 1 instead of 2. I explained how to do it in the lowerping thread below. However got flamed cos some people dun know how to do it lolx. Anyways, am playing with 200ms latency now using the windows registry tweak plus my website loading times are AWESOME! really dang fast. It has to do with windows.

You see the way it works is windows sets your pc to ping the server and waits for a reply then ping again for more info. Whereas once i set the default to 1 it just pings the server like a mad man lolx. So ping and keep on telling the server that it needs more info instead of waiting for the server to reply then ping again. I hope this explains how my method works.

**Do not this might not work for some. But so far among my friends about 30++ of them it works compared to 4 of them of whom this method doesn't work.

And now to explain how to do this:-

1. Run Regedit
2. HKEY_LOCAL_MACHINE > System > CurrentControlSet > Services > Tcpip > Parameters > Interfaces
3. under Interfaces you open one of the folders (The one with your ip)
4. Right Click and New>DWORD Value
5. Value name : TcpAckFrequency : Value Data = 1

6. Close and restart.

I understand there will be a few folders to choose from I did it by trial and error, i.e. DO one the test wow, check ping, if it's not low enough then do the same in another folder to get the right folder, cos i could not find one which stated my i.p.

I know not everyone likes to tweak their registry but those who like to this is another option instead of installing linux.

Hope this helps =)
*



nice i was hoping for something like this instead of installing bunch of 3rd party program into my PC...
will try it later on...


Added on December 11, 2007, 8:26 pmdone...but cant try it tonight since WoW server is under maintenance as usual...
will try it as soon as it is up... icon_rolleyes.gif
busbos
how to save the console cmd we put in the vmware?
i dont want to type the fix each time i want to run wow
help pls
myremi
have change registry.

now to wait until tomorrow morning to test it out.
Quazacolt
QUOTE(busbos @ Dec 11 2007, 08:55 PM)
how to save the console cmd we put in the vmware?
i dont want to type the fix each time i want to run wow
help pls
*



HDD install ur vm, and save a linux text file (omg it took me a while to figure out the non-user-friendly-linux T_T)

and whenever i run it, i just copy and paste. (highlight it, click copy, and mouse wheel button to paste in the console prompt)
busbos
QUOTE(Quazacolt @ Dec 11 2007, 10:43 PM)
HDD install ur vm, and save a linux text file (omg it took me a while to figure out the non-user-friendly-linux T_T)

and whenever i run it, i just copy and paste. (highlight it, click copy, and mouse wheel button to paste in the console prompt)
*




yeah that's the problem..i dunno how to do this
esp the HD install vm lol
T_T
saingau
Interesting food for thought...

How will the blizz servers handle the extra load of pings now? Do you reckon there will be degrading of performance since more pings are sent to the servers?
supernothing
» Click to show Spoiler - click again to hide... «


just key in 'TcpAckFrequency : Value Data = 1' in any of the folders right?

» Click to show Spoiler - click again to hide... «


what if i just key in 'TcpAckFrequency : Value Data = 1' in all of those folders?

if i'm victorious i'll make a full tutorial with pictures and stuff
Quazacolt
QUOTE(saingau @ Dec 12 2007, 01:03 AM)
Interesting food for thought...

How will the blizz servers handle the extra load of pings now? Do you reckon there will be degrading of performance since more pings are sent to the servers?
*



it doesnt really send more pings to the server, just ACK (acknowledge) commands, and those take like.... around or under 24 bytes. HELL even WoW data dont really take a ton of bandwidth either (props to blizz on their network architecture at least) since the routing i can see how much data packets are being transfered/re-routed tongue.gif
everytime i load into org it only send/recieves about 10-20k bytes x4-5 of them. thats like... yea, damn low for broadband/DSL users.

but if ur using 56k dialup, it'll add up and it wont support especially when ur in crowded areas loading player datas/raids etc


Added on December 12, 2007, 1:53 am
QUOTE(busbos @ Dec 11 2007, 11:00 PM)
yeah that's the problem..i dunno how to do this
esp the HD install vm lol
T_T
*



well just experiement through interface, read up the last part of the 1st method instructions.

nothing will break anyways since its just a VM tongue.gif


Added on December 12, 2007, 1:55 ambtw im in the process of making up an automated script so all you do is double click/shortcut click and it'll auto run the routing commands for iptables/socat. lets see if i can get it done, will post if its a success biggrin.gif
nitrofang
This verify one very important thing. this latency issue all this while is not caused by streamix. but it is a tcp issue which is not being address by blizzard. i am not sure they knew the problem exist in the first place and probably thought it is the routing distance issue which caused the lag from countries outside of US. but after the 'fix', it is definitely tcp issue, and not routing distance. bliz probably did not notice because their players are majority from US based who get less then 100ms.


QUOTE(Vagabond @ Dec 11 2007, 07:00 PM)
Okay, I tried Debian, got up to the point apt-get install socat, I got an error message saying Socat is missing. What am I missing?
*



try #apt-get update. then try #apt-get install socat.
Noyze
QUOTE(supernothing @ Dec 12 2007, 01:09 AM)
» Click to show Spoiler - click again to hide... «


just key in 'TcpAckFrequency : Value Data = 1' in any of the folders right?

» Click to show Spoiler - click again to hide... «


what if i just key in 'TcpAckFrequency : Value Data = 1' in all of those folders?

if i'm victorious i'll make a full tutorial with pictures and stuff
*



Cool dude, u do the tutorial lolx.

Anyways, as to which folder to use, I guess everyone is a different one? I just tried one by one. Trial and error and got it. Now both my laptop and pc are on the same thing, and both running same line to get on wow and ping is good stable around 200++
khelben
Did the registry thing. No difference what-so-ever laugh.gif
Vagabond
QUOTE
try #apt-get update. then try #apt-get install socat.


This didn't work too unfortunately. Any other ideas what I could had done wrong?
karwaidotnet
Wohhooo..the registy hack is giving me constant 2xx-3xx ms latency... rclxm9.gif rclxm9.gif rclxm9.gif
NICE JOB...

oh yeah..even wif the same IP add range that gave me around 2k-4k ms latency last night doh.gif

for those ppl that's still trying to figure where to hack in the regedit, this is what i can tell:
for the tcpackfrequency - i add it into this folder wif the most registry settings within...
and i could see my machine ip address there as well..

note: machine ip address is not the address given by tmnut but by my modem
it also shows my router model there as well...

for the tcpnodelay - it was even more easier...
just add the DWORD at the Parameter folder...modify it wif the value 1
done!
myremi
QUOTE(supernothing @ Dec 12 2007, 01:09 AM)
» Click to show Spoiler - click again to hide... «


just key in 'TcpAckFrequency : Value Data = 1' in any of the folders right?

what if i just key in 'TcpAckFrequency : Value Data = 1' in all of those folders?

*



1. Run Regedit
2. HKEY_LOCAL_MACHINE > System > CurrentControlSet > Services > Tcpip > Parameters > Interfaces
3. under Interfaces you open one of the folders (The one with your ip)
4. Right Click and New>DWORD Value
5. Change filename to TcpAckFrequency
6. Double-click TcpAckFrequency and fill in the value as 1.


That's it.
karwaidotnet
just to confirm - i removed all those two registry entries, restarted my pc, went back in WoW....i got back 1k ms latency...and spike every now and then...
busbos
i dunno what went wrong..but i got the same ping when i tried this vmware
wtb a real noob guide to this T_T
karwaidotnet
last attempt wif all the registry entries back in...im getting spikes and 5xx ms...

guess as the pioneer of this is right - dun hope any miracles if u got a lousy ISP... tongue.gif
myremi
Hmm....maybe still need to go IP hunting? I'm presuming that this works with an IP with good connections?
supernothing
QUOTE(myremi @ Dec 12 2007, 07:08 AM)
1. Run Regedit
2. HKEY_LOCAL_MACHINE > System > CurrentControlSet > Services > Tcpip > Parameters > Interfaces
3. under Interfaces you open one of the folders (The one with your ip)
4. Right Click and New>DWORD Value
5. Change filename to TcpAckFrequency
6. Double-click TcpAckFrequency and fill in the value as 1.


That's it.
*



tried it this morning but have to do it in a mess, was late for work. i only got 450++ lat. my usual lat without lowerping is around 350-600ms. with lowerping 250-350ms.

will do more test tonight. anyone got great results instantly?
Dragnaut
I tried the changing registry thingy but so far doesn't make any difference for me. I tried with and without router in between the result is still the same.

I will try a few more times and post up my findings later.
mainFrame
i used the registry hax thingy, lowers the latency slightly at least for me..
Quazacolt
just use the linux VM method, its basically the registry hack, without affecting other applications such as downloads/video streams etc. and slightly better as it also "conditions" your tcp packets.

=edit=
some more additional notes:
linux actually handles TCP connections better so long you know how to tweak it via socat/iptables. not to mention it also doesnt have a lot of useless overheadings like most Windows based apps do.
myremi
you know me, not so berani to go and change too many stuff on my PC.

registry changes were easy to make. will know tonite whether it works once connected to a good IP and more ppl are on.

to those that couldn't see any changes, did you guys hotfix your Windows recently? or update the service packs?
senzor
window xp can D.I.Y ?
RapTalk
QUOTE(Tentris @ Dec 12 2007, 12:29 PM)
Once that is done click host then virtual network settings->click host virtual network mapping
for vMnet0 choose your network adaptor u connect to the net with then leave the rest as they are ->click ok.
*




where can i find the host section ? dun seems any of it in my Vmware
Vagabond
I redid the Debian installation and got stuck at the APT part. I can't seem to DL all the packages that I need. What should I do to make the VM connect to the internet?

Set VMnet0 to my NIC that's connecting to the Internet
Network Connection: Bridged
Quazacolt
QUOTE(myremi @ Dec 12 2007, 11:38 AM)
you know me, not so berani to go and change too many stuff on my PC.

registry changes were easy to make. will know tonite whether it works once connected to a good IP and more ppl are on.

to those that couldn't see any changes, did you guys hotfix your Windows recently? or update the service packs?
*



actually for the VM, there is even less risk involved as the only changes are occuring inside the VM, your OS is left untouched. so if you happen to wreak your linux apart for whatever reason, a fresh cd boot and its good as new lol.


Added on December 12, 2007, 2:13 pm
QUOTE(RapTalk @ Dec 12 2007, 01:06 PM)
where can i find the host section ? dun seems any of it in my Vmware
*



its on the top tabs


Added on December 12, 2007, 2:14 pm
QUOTE(Vagabond @ Dec 12 2007, 01:24 PM)
I redid the Debian installation and got stuck at the APT part. I can't seem to DL all the packages that I need. What should I do to make the VM connect to the internet?

Set VMnet0 to my NIC that's connecting to the Internet
Network Connection: Bridged
*



cant help you there since im using feather linux. ive compared both methods and i concluded that feather linux is more easier or linux noob proof (like me). not to mention that you need less additional apps/downloads/configurations etc.

basically once you get ur feather linux going in ur VM, all you need to do is type 2 lines of command in the console, and your done. just THAT simple.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
All Rights Reserved 2003-2006 Vijandren Ramadass
Invision Power Board © 2001-2008 Invision Power Services, Inc.