<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://test.amule.szerverem.hu/w/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://test.amule.szerverem.hu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=24.215.161.51</id>
		<title>AMule Project FAQ - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://test.amule.szerverem.hu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=24.215.161.51"/>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Special:Contributions/24.215.161.51"/>
		<updated>2026-04-05T14:23:13Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.3</generator>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Talk:Firewall</id>
		<title>Talk:Firewall</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Talk:Firewall"/>
				<updated>2005-06-16T23:52:33Z</updated>
		
		<summary type="html">&lt;p&gt;24.215.161.51: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I think that think page should also contain basic Linksys and Dlink router information since you're also trying to attract windows users.&lt;br /&gt;
[[User:Ateo|-- Juan]] 21:28, 27 May 2005 (CEST)&lt;br /&gt;
&lt;br /&gt;
'''Yap. fine now, who's gonna provide that info? ;-P'''&lt;br /&gt;
&lt;br /&gt;
I'll add linksys information soon. Anyone with a DLink router should also contribute.. =) [[User:Ateo|-- Juan]] 19:41, 28 May 2005 (CEST)&lt;br /&gt;
&lt;br /&gt;
Um. I thought the == before and after a section automatically creates a menu for the page? Am I wrong?&lt;br /&gt;
&lt;br /&gt;
'''You're not. But only if there are at least four == sections in the article. Otherwise no menu will be created'''&lt;br /&gt;
&lt;br /&gt;
I just threw some D-Link info in there, based on what I did on my DI-624 to get aMule to show High ID.  I have to admit though that I don't quite get how the Applications page settings relate to the port forwarding in Virtual Servers, unless you do an entry in Virtual Servers for each port in the 4662-4672 range for UDP.  Any thoughts?  -Sharakan&lt;/div&gt;</summary>
		<author><name>24.215.161.51</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Firewall</id>
		<title>Firewall</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Firewall"/>
				<updated>2005-06-16T23:50:32Z</updated>
		
		<summary type="html">&lt;p&gt;24.215.161.51: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''English''' | [[Firewall-es|Español]] | [[Firewall-de|Deutsche]] &amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Distro specific guides ==&lt;br /&gt;
&lt;br /&gt;
*'''[http://www.suse.com SuSE Linux]''' users try [[Firewall_SuSE|this HowTo]] first.&lt;br /&gt;
*'''[http://fedora.redhat.com Fedora Core]''' users try [[Firewall_Fedora|this HowTo]] first.&lt;br /&gt;
&lt;br /&gt;
== IPTables Configuration ==&lt;br /&gt;
&lt;br /&gt;
If you set [http://www.ietf.org/rfc/rfc793.txt TCP] port in [[aMule]] to XX and [http://www.faqs.org/rfcs/rfc768.html UDP] port to YY then you have to set your firewall like this:&lt;br /&gt;
&lt;br /&gt;
''iptables -A INPUT -p tcp  --dport '''XX''' -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables  -A INPUT -p udp  --dport '''XX+3''' -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -A INPUT  -p udp  --dport '''YY''' -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you are building your iptables-rules from scratch, you also need to allow ''ESTABLISHED'' and ''RELATED'' traffic to come through your firewall: &lt;br /&gt;
&lt;br /&gt;
''iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT''&lt;br /&gt;
&lt;br /&gt;
And you must enable traffic to leave your machine aswell, by either allowing all outgoing traffic: &lt;br /&gt;
&lt;br /&gt;
''iptables -P OUTPUT ACCEPT''&lt;br /&gt;
&lt;br /&gt;
or specifying special rules.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' for [http://www.mandrake.com Mandrake] 10.0 Official and [http://www.iptables.org iptables] you may have to change the multi-port entry to ''iptables  -A INPUT -p udp  --dport '''XX:ZZ''' -j ACCEPT'' where ''XX'' is the same [http://www.ietf.org/rfc/rfc793.txt TCP] port number used in first line and ''ZZ'' is that number plus 3 (eg: ''4662:4665'')&lt;br /&gt;
&lt;br /&gt;
If you want to setup [[aMule]] behind a NAT gateway, you should add these lines to your [http://www.netfilter.org iptables] configuration script, on the gateway :&lt;br /&gt;
&lt;br /&gt;
''EXTIF'' is your external interface&lt;br /&gt;
&lt;br /&gt;
''EMULEPORT='''4662'''''&amp;lt;br&amp;gt;&lt;br /&gt;
''EMULEUDP='''4672'''''&amp;lt;br&amp;gt;&lt;br /&gt;
''EMULEUDP2=`expr $EMULEPORT + 3`''&amp;lt;br&amp;gt;&lt;br /&gt;
''EMULEHOST='''10.0.0.2'''''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -t nat -A PREROUTING -i $EXTIF -p tcp --destination-port $EMULEPORT -j DNAT --to-destination $EMULEHOST:$EMULEPORT''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -t nat -A PREROUTING -i $EXTIF -p udp --destination-port $EMULEUDP -j DNAT --to-destination $EMULEHOST:$EMULEUDP''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -t nat -A PREROUTING -i $EXTIF -p udp --destination-port $EMULEUDP2 -j DNAT --to-destination $EMULEHOST:$EMULEUDP2''&lt;br /&gt;
&lt;br /&gt;
You also should make sure that your FORWARD-string is set up correctly. Usually, you will have an entry like this:&lt;br /&gt;
&lt;br /&gt;
''iptables -A FORWARD -i $EXTIF -o $INTIF -d $EMULEHOST -m state --state ESTABLISHED,RELATED -j ACCEPT''&lt;br /&gt;
&lt;br /&gt;
where ''INTIF'' is your internal interface and ''EMULEHOST'' is the host running the [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] [[server]] on your internal network.&lt;br /&gt;
&lt;br /&gt;
This will prevent new connections. So, you should allow all forwarding for [[aMule]]-related ports:&lt;br /&gt;
&lt;br /&gt;
''iptables -A FORWARD -i $EXTIF -o $INTIF -p tcp --dport $EMULEPORT -d $EMULEHOST -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -A FORWARD -i $EXTIF -o $INTIF -p udp --dport $EMULEUDP -d $EMULEHOST -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -A FORWARD -i $EXTIF -o $INTIF -p udp --dport $EMULEUDP2 -d $EMULEHOST -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once everything is set, you can check [http://www.amule.org/testport.php here] if your ports are now open.&lt;br /&gt;
&lt;br /&gt;
== [http://www.linksys.com Linksys] Router configuration ==&lt;br /&gt;
&lt;br /&gt;
This portion of the wiki applies only to stock versions of the [http://www.linksys.com Linksys] firmware. If you are using a [http://www.linksys.com Linksys] router running a variant of the [http://www.linksys.com/support/gpl.asp GPL Code], please follow the guides directly above as you are most likely using iptables.&lt;br /&gt;
&lt;br /&gt;
Log into your [http://www.linksys.com Linksys] router. After successfully logging in, click on the main menu link labeled '''Applications &amp;amp; Gaming''' after which you should see an additional submenu list for this section. Make sure you are under the correct submenu by clicking '''Port Range Forwarding'''.&lt;br /&gt;
&lt;br /&gt;
At this point, you should see a table with 6 columns. The columns are: ''Application'', ''Start to'', ''End'', ''Protocol'', ''IP Address'', ''Enable''.&lt;br /&gt;
&lt;br /&gt;
'''The Application column'''&amp;lt;br&amp;gt;&lt;br /&gt;
Friendly name for the service. Put anything you want here, [[aMule]] being suggested.&lt;br /&gt;
&lt;br /&gt;
'''The Start to -&amp;gt; End column'''&amp;lt;br&amp;gt;&lt;br /&gt;
Start and end ports. '''Start to''' should be ''4662'' but, in the end, this should reflect whatever port you have defined in [[aMule]] ''Preferences'' -&amp;gt; ''Connection'' -&amp;gt; ''Client TCP Port''. '''End''' should be ''4672'' but, in the end, this should reflect whatever port you have defined in [[aMule]] ''Preferences'' -&amp;gt; ''Connection'' -&amp;gt; ''eMule extended UDP Port''.&lt;br /&gt;
&lt;br /&gt;
I suggest using 2 separate entries for each port unless this is not possible.&lt;br /&gt;
&lt;br /&gt;
'''The Protocol column'''&amp;lt;br&amp;gt;&lt;br /&gt;
Protocol to listen for. If you use one line to open your [[aMule]] ports, set this option to '''Both'''. If you use a separate entry line for each, select option '''TCP''' for [[FAQ_ed2k#What_does_each_port_do?|Client TCP Port]] and option '''UDP''' for [[eMule]] [[FAQ_ed2k#What_does_each_port_do?|extended UDP Port]].&lt;br /&gt;
&lt;br /&gt;
'''The IP Address column'''&amp;lt;br&amp;gt;&lt;br /&gt;
Internal [[IP|IP address]] to forward requests to. This is typically the internal (private) [[IP|IP address]] of the computer that will use [[aMule]].&lt;br /&gt;
&lt;br /&gt;
'''The Enable column'''&amp;lt;br&amp;gt;&lt;br /&gt;
Enable rule. You'll need to check this in order to enable your [[aMule]] rules.&lt;br /&gt;
&lt;br /&gt;
After adding your rule, make sure you save your settings. You can verify whether your rules work by [http://www.amule.org/testport.php testing your ports].&lt;br /&gt;
&lt;br /&gt;
== [http://www.dlink.com DLink] Router configuration ==&lt;br /&gt;
&lt;br /&gt;
Log in to your [http://www.dlink.com DLink] router.  There are three steps to take to enable your aMule ports.&lt;br /&gt;
&lt;br /&gt;
'''IP Address setup'''&lt;br /&gt;
&lt;br /&gt;
In the Home tab, click the DHCP button.  This page displays the current IP addresses assigned by the router, both static and dynamic.  Look for the name or MAC address of the computer you'll be running aMule on.  If your computer is receiving dynamically assigned IP addresses, you will have to change your settings every so often if your IP address changes.  To avoid this, use the Static DHCP section, and perform the following steps:&lt;br /&gt;
&lt;br /&gt;
- Name: Type in the name of your computer here, could be anything&amp;lt;BR&amp;gt;&lt;br /&gt;
- IP: The IP address you want the router to always assign to your computer&amp;lt;BR&amp;gt;&lt;br /&gt;
- MAC Address: The MAC address of your computer.  You should be already connected to the router, so you can find your computer in the DHCP Client drop-down menu, and click clone, to populate this number.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Click Apply&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now your computer will always receive the same IP address.&lt;br /&gt;
&lt;br /&gt;
Now click on the Advanced tab, and there are two areas that need to be updated:&lt;br /&gt;
&lt;br /&gt;
'''Virtual Server'''&amp;lt;br&amp;gt;&lt;br /&gt;
Click the Virtual Server button.  This page forwards external requests to a specific internal IP address in your network.&lt;br /&gt;
&amp;lt;P&amp;gt;&lt;br /&gt;
- Click 'Enabled'&amp;lt;BR&amp;gt;&lt;br /&gt;
- Enter a name in the Name entry box, eg 'aMule TCP'&amp;lt;BR&amp;gt;&lt;br /&gt;
- Enter your static IP address in the Private IP box&amp;lt;BR&amp;gt;&lt;br /&gt;
- Select TCP in Protocol type&amp;lt;BR&amp;gt;&lt;br /&gt;
- Private port is the port that the router will forward the requests to on your computer.  This can be anything, a good value is the default aMule TCP port, 4662.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Public port is the port that the router will receive requests on.  Again, a good value is the aMule TCP port of 4662.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Schedule is the times at which the port is open.  Select Always, or whatever times you wish.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Click Apply&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Applications'''&amp;lt;br&amp;gt;&lt;br /&gt;
Click the Applications button.  This page allows you to enter a range of ports to open for application usage.&lt;br /&gt;
&amp;lt;P&amp;gt;&lt;br /&gt;
- Click 'Enabled'&amp;lt;BR&amp;gt;&lt;br /&gt;
- Enter the TCP port in the first Trigger Port box, a good value being 4662.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Select Trigger Type as TCP&amp;lt;BR&amp;gt;&lt;br /&gt;
- In Public Port, enter the range from your aMule TCP port to your aMule UDP port, usually 4662-4672.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Select UDP as the Public Type.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Click Apply.&lt;br /&gt;
&amp;lt;P&amp;gt;&lt;br /&gt;
You should now be all set, assuming that your computer firewall is setup to allow access on the selected ports.&lt;/div&gt;</summary>
		<author><name>24.215.161.51</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Firewall</id>
		<title>Firewall</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Firewall"/>
				<updated>2005-06-16T23:49:50Z</updated>
		
		<summary type="html">&lt;p&gt;24.215.161.51: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''English''' | [[Firewall-es|Español]] | [[Firewall-de|Deutsche]] &amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Distro specific guides ==&lt;br /&gt;
&lt;br /&gt;
*'''[http://www.suse.com SuSE Linux]''' users try [[Firewall_SuSE|this HowTo]] first.&lt;br /&gt;
*'''[http://fedora.redhat.com Fedora Core]''' users try [[Firewall_Fedora|this HowTo]] first.&lt;br /&gt;
&lt;br /&gt;
== IPTables Configuration ==&lt;br /&gt;
&lt;br /&gt;
If you set [http://www.ietf.org/rfc/rfc793.txt TCP] port in [[aMule]] to XX and [http://www.faqs.org/rfcs/rfc768.html UDP] port to YY then you have to set your firewall like this:&lt;br /&gt;
&lt;br /&gt;
''iptables -A INPUT -p tcp  --dport '''XX''' -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables  -A INPUT -p udp  --dport '''XX+3''' -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -A INPUT  -p udp  --dport '''YY''' -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you are building your iptables-rules from scratch, you also need to allow ''ESTABLISHED'' and ''RELATED'' traffic to come through your firewall: &lt;br /&gt;
&lt;br /&gt;
''iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT''&lt;br /&gt;
&lt;br /&gt;
And you must enable traffic to leave your machine aswell, by either allowing all outgoing traffic: &lt;br /&gt;
&lt;br /&gt;
''iptables -P OUTPUT ACCEPT''&lt;br /&gt;
&lt;br /&gt;
or specifying special rules.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' for [http://www.mandrake.com Mandrake] 10.0 Official and [http://www.iptables.org iptables] you may have to change the multi-port entry to ''iptables  -A INPUT -p udp  --dport '''XX:ZZ''' -j ACCEPT'' where ''XX'' is the same [http://www.ietf.org/rfc/rfc793.txt TCP] port number used in first line and ''ZZ'' is that number plus 3 (eg: ''4662:4665'')&lt;br /&gt;
&lt;br /&gt;
If you want to setup [[aMule]] behind a NAT gateway, you should add these lines to your [http://www.netfilter.org iptables] configuration script, on the gateway :&lt;br /&gt;
&lt;br /&gt;
''EXTIF'' is your external interface&lt;br /&gt;
&lt;br /&gt;
''EMULEPORT='''4662'''''&amp;lt;br&amp;gt;&lt;br /&gt;
''EMULEUDP='''4672'''''&amp;lt;br&amp;gt;&lt;br /&gt;
''EMULEUDP2=`expr $EMULEPORT + 3`''&amp;lt;br&amp;gt;&lt;br /&gt;
''EMULEHOST='''10.0.0.2'''''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -t nat -A PREROUTING -i $EXTIF -p tcp --destination-port $EMULEPORT -j DNAT --to-destination $EMULEHOST:$EMULEPORT''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -t nat -A PREROUTING -i $EXTIF -p udp --destination-port $EMULEUDP -j DNAT --to-destination $EMULEHOST:$EMULEUDP''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -t nat -A PREROUTING -i $EXTIF -p udp --destination-port $EMULEUDP2 -j DNAT --to-destination $EMULEHOST:$EMULEUDP2''&lt;br /&gt;
&lt;br /&gt;
You also should make sure that your FORWARD-string is set up correctly. Usually, you will have an entry like this:&lt;br /&gt;
&lt;br /&gt;
''iptables -A FORWARD -i $EXTIF -o $INTIF -d $EMULEHOST -m state --state ESTABLISHED,RELATED -j ACCEPT''&lt;br /&gt;
&lt;br /&gt;
where ''INTIF'' is your internal interface and ''EMULEHOST'' is the host running the [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] [[server]] on your internal network.&lt;br /&gt;
&lt;br /&gt;
This will prevent new connections. So, you should allow all forwarding for [[aMule]]-related ports:&lt;br /&gt;
&lt;br /&gt;
''iptables -A FORWARD -i $EXTIF -o $INTIF -p tcp --dport $EMULEPORT -d $EMULEHOST -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -A FORWARD -i $EXTIF -o $INTIF -p udp --dport $EMULEUDP -d $EMULEHOST -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
''iptables -A FORWARD -i $EXTIF -o $INTIF -p udp --dport $EMULEUDP2 -d $EMULEHOST -j ACCEPT''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once everything is set, you can check [http://www.amule.org/testport.php here] if your ports are now open.&lt;br /&gt;
&lt;br /&gt;
== [http://www.linksys.com Linksys] Router configuration ==&lt;br /&gt;
&lt;br /&gt;
This portion of the wiki applies only to stock versions of the [http://www.linksys.com Linksys] firmware. If you are using a [http://www.linksys.com Linksys] router running a variant of the [http://www.linksys.com/support/gpl.asp GPL Code], please follow the guides directly above as you are most likely using iptables.&lt;br /&gt;
&lt;br /&gt;
Log into your [http://www.linksys.com Linksys] router. After successfully logging in, click on the main menu link labeled '''Applications &amp;amp; Gaming''' after which you should see an additional submenu list for this section. Make sure you are under the correct submenu by clicking '''Port Range Forwarding'''.&lt;br /&gt;
&lt;br /&gt;
At this point, you should see a table with 6 columns. The columns are: ''Application'', ''Start to'', ''End'', ''Protocol'', ''IP Address'', ''Enable''.&lt;br /&gt;
&lt;br /&gt;
'''The Application column'''&amp;lt;br&amp;gt;&lt;br /&gt;
Friendly name for the service. Put anything you want here, [[aMule]] being suggested.&lt;br /&gt;
&lt;br /&gt;
'''The Start to -&amp;gt; End column'''&amp;lt;br&amp;gt;&lt;br /&gt;
Start and end ports. '''Start to''' should be ''4662'' but, in the end, this should reflect whatever port you have defined in [[aMule]] ''Preferences'' -&amp;gt; ''Connection'' -&amp;gt; ''Client TCP Port''. '''End''' should be ''4672'' but, in the end, this should reflect whatever port you have defined in [[aMule]] ''Preferences'' -&amp;gt; ''Connection'' -&amp;gt; ''eMule extended UDP Port''.&lt;br /&gt;
&lt;br /&gt;
I suggest using 2 separate entries for each port unless this is not possible.&lt;br /&gt;
&lt;br /&gt;
'''The Protocol column'''&amp;lt;br&amp;gt;&lt;br /&gt;
Protocol to listen for. If you use one line to open your [[aMule]] ports, set this option to '''Both'''. If you use a separate entry line for each, select option '''TCP''' for [[FAQ_ed2k#What_does_each_port_do?|Client TCP Port]] and option '''UDP''' for [[eMule]] [[FAQ_ed2k#What_does_each_port_do?|extended UDP Port]].&lt;br /&gt;
&lt;br /&gt;
'''The IP Address column'''&amp;lt;br&amp;gt;&lt;br /&gt;
Internal [[IP|IP address]] to forward requests to. This is typically the internal (private) [[IP|IP address]] of the computer that will use [[aMule]].&lt;br /&gt;
&lt;br /&gt;
'''The Enable column'''&amp;lt;br&amp;gt;&lt;br /&gt;
Enable rule. You'll need to check this in order to enable your [[aMule]] rules.&lt;br /&gt;
&lt;br /&gt;
After adding your rule, make sure you save your settings. You can verify whether your rules work by [http://www.amule.org/testport.php testing your ports].&lt;br /&gt;
&lt;br /&gt;
== [http://www.dlink.com DLink] Router configuration ==&lt;br /&gt;
&lt;br /&gt;
Information on configuring a [http://www.dlink.com DLink] router for [[aMule]] coming soon. Anyone with a [http://www.dlink.com DLink] router is encouraged to edit this article.&lt;br /&gt;
&lt;br /&gt;
(These instructions are based on my DI-624 wireless router, I imagine most of the other recent D-Link routers are similar, but update if that's not true!)&lt;br /&gt;
&lt;br /&gt;
Log in to your [http://www.dlink.com DLink] router.  There are three steps to take to enable your aMule ports.&lt;br /&gt;
&lt;br /&gt;
'''IP Address setup'''&lt;br /&gt;
&lt;br /&gt;
In the Home tab, click the DHCP button.  This page displays the current IP addresses assigned by the router, both static and dynamic.  Look for the name or MAC address of the computer you'll be running aMule on.  If your computer is receiving dynamically assigned IP addresses, you will have to change your settings every so often if your IP address changes.  To avoid this, use the Static DHCP section, and perform the following steps:&lt;br /&gt;
&lt;br /&gt;
- Name: Type in the name of your computer here, could be anything&amp;lt;BR&amp;gt;&lt;br /&gt;
- IP: The IP address you want the router to always assign to your computer&amp;lt;BR&amp;gt;&lt;br /&gt;
- MAC Address: The MAC address of your computer.  You should be already connected to the router, so you can find your computer in the DHCP Client drop-down menu, and click clone, to populate this number.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Click Apply&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now your computer will always receive the same IP address.&lt;br /&gt;
&lt;br /&gt;
Now click on the Advanced tab, and there are two areas that need to be updated:&lt;br /&gt;
&lt;br /&gt;
'''Virtual Server'''&amp;lt;br&amp;gt;&lt;br /&gt;
Click the Virtual Server button.  This page forwards external requests to a specific internal IP address in your network.&lt;br /&gt;
&amp;lt;P&amp;gt;&lt;br /&gt;
- Click 'Enabled'&amp;lt;BR&amp;gt;&lt;br /&gt;
- Enter a name in the Name entry box, eg 'aMule TCP'&amp;lt;BR&amp;gt;&lt;br /&gt;
- Enter your static IP address in the Private IP box&amp;lt;BR&amp;gt;&lt;br /&gt;
- Select TCP in Protocol type&amp;lt;BR&amp;gt;&lt;br /&gt;
- Private port is the port that the router will forward the requests to on your computer.  This can be anything, a good value is the default aMule TCP port, 4662.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Public port is the port that the router will receive requests on.  Again, a good value is the aMule TCP port of 4662.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Schedule is the times at which the port is open.  Select Always, or whatever times you wish.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Click Apply&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Applications'''&amp;lt;br&amp;gt;&lt;br /&gt;
Click the Applications button.  This page allows you to enter a range of ports to open for application usage.&lt;br /&gt;
&amp;lt;P&amp;gt;&lt;br /&gt;
- Click 'Enabled'&amp;lt;BR&amp;gt;&lt;br /&gt;
- Enter the TCP port in the first Trigger Port box, a good value being 4662.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Select Trigger Type as TCP&amp;lt;BR&amp;gt;&lt;br /&gt;
- In Public Port, enter the range from your aMule TCP port to your aMule UDP port, usually 4662-4672.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Select UDP as the Public Type.&amp;lt;BR&amp;gt;&lt;br /&gt;
- Click Apply.&lt;br /&gt;
&amp;lt;P&amp;gt;&lt;br /&gt;
You should now be all set, assuming that your computer firewall is setup to allow access on the selected ports.&lt;/div&gt;</summary>
		<author><name>24.215.161.51</name></author>	</entry>

	</feed>