I have mikrotik router 750GL, broadband connection and username & password from broadband provider for PPPoE connection. I tried this link http://wiki.mikrotik.com/wiki/Manual:Interface/PPPoE to setup PPPoE client in Mikrotik router.
I plugged in broadband wire in first port of mikrotik router and LAN cable in the second port for systems. I used above mention code to setup PPPoE client. After i set this setup, I monitored the status of this interface it shows
The issue is that you setup the PPPoE on the wireless interface then plugged the internet connection into a wired interface.
Edit the PPPoE Client and change the interface to match the interface that the broadband provider is plugged into. The script you used must have been for having the PPPoE over the wireless and your using the wireless for internal connections.
Now I see the broadband is connected to mikrotik router, but I don’t get internet to my system. In Mikrotik router I have added address for LAN systems as
Should I change pppoe iface, you mean interface?. It is already set to ether1-Input where I connected broadband cable(connected to first port of mikrotik router).
I have done set as you said. now from my system I can able to ping 8.8.8.8, but when I try to open www.google.co.in in my browser the page is not working.
If you want to use your isp dns be sure that use-peer-dns is checked or add it manually use-peer-dns=yes in the same way as the default-route option. If you want your own/google dns then set them on the dhcp server if you have one or from webinf ip-dns/manually
Also be sure you only answer DNS requests to internal machines. People scan for open DNS servers and use them for DNS amplification attacks.
/ip firewall filter add chain=input in-interface=all-ppp protocol=udp port=53 action=drop comment="Drop DNS requests from PPP Connection"
I didn’t test the above line so it could have a typo… basically in the input chain drop UDP 53 from your internet interface. However even better would be to accept only the services you offer (which may be noting or just access to your router with winbox) and drop anything else. If you have other interfaces that connect to the internet then you will need to drop DNS on all of them which could take more then one rule.