Showing posts with label Router. Show all posts
Showing posts with label Router. Show all posts

Saturday, 24 January 2009

Setting up Vuse (Port forwarding and settings)


First, determine your upload speed here

Then use the chart here to determine what values need to be used.

Remember also to forward your ports, if your NAT score is low or is showing as firewalled.

Friday, 7 March 2008

Modem Access IP's

Zoom Modem.

10.0.0.2

admin
zoomadsl

D-Link Modem.


192.168.0.1

admin
admin

Monday, 28 May 2007

Port Forwarding for Various Applications.

Open up the D-Link router software by typing the following into the address bar of Firefox:

192.168.1.1

Type in your user name and password, then goto:

ADVANCED>VIRTUALSERVER>USER>ADD

VENTRILO:

Rule Name: Vent1
Protocol: TCP
Port Start: 3784
Post End: 3784
Port Map: 3784

Rule Name: Vent2
Protocol: UDP
Port Start: 3784
Post End: 3784
Port Map: 3784

AMULE:

Rule Name: Amule1
Protocol: TCP
Port Start: 56633
Post End: 56633
Port Map: 56633

Rule Name: Amule2
Protocol: UDP
Port Start: 56677
Post End: 56677
Port Map: 56677

(not always needed - browser only)

Rule Name: Amule3
Protocol: TCP
Port Start: 59100
Post End: 59100
Port Map: 59100

Add individually to APPLIED RULES before saving and rebooting modem:

TOOLS>SYSTEM>"SAVEANDREBOOT"

Monday, 23 April 2007

Getting Synaptic/D-Link DSL-G624T Router To Work (Mepis 6.5)

First, type in this:

su
kate /etc/resolv.conf

Then hash out the entry that's there and add two new nameservers, so it looks like below:

nameserver 208.67.222.222
nameserver 208.67.220.220
#nameserver 192.168.1.1


Save and then retry Synaptic. If the fix works, when you reboot it'll reset, so you need to edit your dhclient.con file to make the fix permanent.

su
cp /etc/dhcp3/dhclient.conf /etc/dhcp3/dhclient.conf.bak
kate /etc/dhcp3/dhclient.conf


Find this line in the code.....

#prepend domain-name-servers 127.0.0.1;


and replace it with......

prepend domain-name-servers 208.67.222.222, 208.67.220.220;


(notice I've removed the hash symbol as well as changing the servers).

Next, look for the "domain-name-servers" line, and remove it. The text will look something like this........

request domain-name-servers, subnet-mask, broadcast-address, time-offset, routers, domain-name, host-name, netbios-name-servers, netbios-scope;


Remove the bit that says "domain name servers," making sure you remove the comma too. Save the file and then restart your network. The changes should then hold on reboot.