Yesterday in changed my BeWan ADSL2+ for the one provided by my ISP. The ISP provided modem (FreeBox) takes care of all the PPP job, so that i only need to setup the WL500 to connect using "automatic ip".

Unfortunately, the above configuration did not work anymore and i had to change my post-boot and post-firewall scripts. I'm a big newbie when it comes to IPTables, so any suggestions are welcome.

Here is my post-boot file
Code:
#!/bin/sh
dropbear -p 22 -p 443
Whe simply tell dropbeart to listen on port 22 and 443.
In the post-firewall script we will open the firewall on port 443
Code:
#!/bin/sh
iptables -D INPUT -j DROP
iptables -I INPUT 2 -p tcp --syn --dport 443 -j ACCEPT
Now it is working again. It seems that the firewall behaves differetly in PPPoE and in Automatic IP.....