I think the problem is that you don't allow ANY traffic to the router. The MDK firewall isn't really made for routers so it doesn't
separate incoming traffic on eth0 from incoming traffic on eth1.
Assuming your internal NIC is eth1 and you're not afraid of any traffic from your LAN to the router you can try entering :
iptables -I INPUT -i eth1 -j ACCEPT
This will allow all incoming traffic on eth1. If it works run ' iptables-save > /etc/sysconfig/iptables' and it'll work after next reboot as well.
As for Firestarter it's in the contrib directory (for MDK 10.x anyways) so for MDK 10.1 you should be able to do:
Code:
urpmi.addmedia Contrib ftp://ftp.sunet.se/pub/Linux/distributions/mandrakelinux/official/10.1/i586/media/contrib with media_info/hdlist.cz
urpmi firestarter
(or do the same using 'mcc' optionally substituting ftp.sunet.se with a closer mirror.)
For MDK 10.0 use :
Code:
urpmi.addmedia Contrib ftp://ftp.sunet.se/pub/Linux/distributions/mandrakelinux/official/10.0/contrib/i586 with synthesis.hdlist.cz
(not really sure about the
with synthesis.hdlist.cz though)
- Peder