aMule Forum
English => aMule Help => Topic started by: persiomenezes on February 13, 2016, 03:09:00 AM
-
Could anybody help me to configure aMule on WD MyCloud EX2? I have opened on router the folling ports:
TCP:4662
UDP:4665
TCP:4712
UDP:4672
TCP:4711
But I still get low ID.
Help please!!!!
-
Ok now listen carefully. Since you already figured out that the NAS is operating on LINUX already as you port installed aMuleD on it thus you enabled SSH access via UI and logged in as root. Now I will assume you have properly set up amule.conf and only thing your missing is the opening the port. You have opened ports on the router but the internal port on the NAS has to be open as well. Since it uses IPTable you will have to amend it.
1) /sbin/service iptables save
This will dump the current table on file.
2) vi /etc/sysconfig/iptables
This will open IPTable config file with VI editior.
3) PRESS 'i'
This will enable INSERT mode so you can write to the file.
4) -A INPUT -p tcp -m state --state NEW --match multiport --dport 4662,4711,4712 -j ACCEPT
5) -A INPUT -p udp -m state --state NEW --match multiport --dport 4665,4672 -j ACCEPT
This will add multi-ports on IPTable.
6) PRESS [Esc]
7) :wq
This will write to the file and exit VI editor.
8) service iptables restart
This will restart the IPTable service.
Now as I have said if you properly setup then everything should be working now and you should be able to access it. I don't own a WD MyCloud but a friend of mine does so I accessed his via WAN and tested it as i'm writing this and it does work. I haven't deployed aMuleD on it but I know it will work. If it does not work for you then you haven't properly set up amule.conf but far as networking goes its setup correctly with all ports open on the unit. Post back and ill assist you if you require it.