PPPOE + DHCP IN ONE MIKROTIK ROUTER ON SAME INTERFACE
   Configration Mikrotik Router as PPPOE + DHCP ON Same Interface     Plz use the following script to config            /interface ethernet   set 0 name=lan   set 1 name=wan   /ip hotspot profile   add dns-name=login.link.tech hotspot-address=192.168.1.1 name=hsprof1   /ip hotspot user profile   set [ find default=yes ] idle-timeout=none keepalive-timeout=2m   /ip pool   add name=hs-pool-1 ranges=192.168.1.2-192.168.1.254   add name=ppp ranges=10.0.0.1-10.0.0.100   /ip dhcp-server   add address-pool=hs-pool-1 disabled=no interface=lan lease-time=1h name=dhcp1   /ip hotspot   add address-pool=hs-pool-1 addresses-per-mac=1 disabled=no interface=lan \       name=hotspot1 profile=hsprof1   /ppp profile   set 0 local-address=hs-pool-1 remote-address=ppp   /tool user-manager customer   add backup-allowed=yes disabled=no login=admin password="" \       paypal-accept-pending=no paypal-allowed=no paypal-secure-response=no \       permissions=owner signup-allowe...