Since I've upgraded to 2.2.5 it brakes my shaping scripts. I've found usefull option called "bind address"
Situation:
Amule is running on local computer with local ip 192.168.1.250, I've added second to ethernet 192.168.1.249.
I've set up bind address to 192.168.1.249. From local network I can see ports are open on 192.168.1.249 but when I try to connect
from net it's not working. All ports needed to gain high id are forwarded using simpled method like this:
$IPT -A FORWARD -p tcp -i $INET_IFACE --destination-port 4662 \
--destination 192.168.1.249 -j ACCEPT
$IPT -t nat -A PREROUTING -p tcp -i $INET_IFACE --destination-port 4662 \
-j DNAT --to-destination 192.168.1.249
Can bind address be local one ?
Is NAT a problem?
Best regards
k0stek