emule ports

What is the simplest way to open emule ports for only one computer on the network?

Go into your firewall rules and add an explicit accept rule for that computers IP, right before the P2P rules you’re already using.

I tried, but no results. When i test ports with emule i dont pass.
Can you be more specific?




tine

You have added rule in forward to drop all p2p traffic.
Now just add rule in forward for specific address to accept all traffic (infront of p2p drop rule)

Example:
ip firewall rule forward
add src-address=192.168.0.100/32 action=accept
add dst-address=0.0.0.0/0 p2p=all-p2p action=drop

Then again, make sure that your ISP is not droping p2p traffic…

Cheers…

Still no luck. What could block the thing? Port test fails and i get low id!

I dont wana block others for p2p downloading, just i dont care if they got low id, but i def. want high id at least for myself :wink:

My isp allows the p2p connections.


Any ideas?

plenty, but none that will help until we know more about your network configuration.. Is the network NAT’d? what do your firewall rules look like, specifically the forward chain. might as well copy the src/dst-nat rules as well. Omit ip addresses.

My configuration is very basic:

/interface enable ether1,ether2
/interface pppoe-client add interface=ether1 service-name=adsl user=xxx password=xxx disabled=no
/ip address add address=192.168.0.1/24 interface=ether2
/ip firewall src-nat add out-interface=pppoe action=masquerade
/ip firewall rule input add connection-state=invalid action=drop
/ip firewall rule input add connection-state=established
/ip firewall rule input add connection-state=related
/ip firewall rule input add protocol=udp
/ip firewall rule input add protocol=icmp
/ip firewall rule input add src-address=192.168.0.0/24
/ip firewall rule input add action=drop log=yes


I added simple queues for all the users and mangle prerouting mss via winbox.

Now i would like to open emule ports, to get high id and better downloads.

Im very noob at programing, so i dont really understand the whole thing.

PLS share ur ideas with me, coz im desperate.

LP…Tine

/ip firewall dst-nat add dst-address=0.0.0.0/32:4661 action=nat to-src-address=x.x.x.x/32:4661
Its work and i have HIGH ID. And x.x.x.x=priv address

/ip firewall dst-nat add dst-port=4661 action=nat to-dst-address=x.x.x.x

should work as well.

Thanks guys, it works fine now!
Mikrotik forum rocks!



LP…Tine