PPPoE Interface Not Running

I have an FTTH modem, and I connected a LAN cable from it to the MT device LAN 1(LAN1 == Internet, other LANs are only written LAN in the back of the device).

Then I created a PPPoE interface, and its interface is connected to ether1.

I have two issues:

  1. The new interface is not in Running status.
[admin@MikroTik] > export
# jan/03/1970 17:54:07 by RouterOS 7.8
# software id = 
#
# model = L41G-2axD
# serial number = HEF08TMY2TG
/interface pppoe-client
add add-default-route=yes allow=chap,mschap1,mschap2 disabled=no interface=\
    ether1 name=pppoe-out1 user=my_username
/interface wifiwave2 security
add authentication-types=wpa-psk,wpa2-psk disabled=no name=sec1
/interface wifiwave2
set [ find default-name=wifi1 ] channel.band=2ghz-g .width=20mhz \
    configuration.mode=ap .ssid=my_bridge_wifi disabled=no \
    interworking.internet=no security=sec1
/ip pool
add name=wifi ranges=192.168.73.2-192.168.73.254
/ip dhcp-server
add address-pool=wifi interface=wifi1 name=dhcp1
/port
set 0 name=serial0
/ip address
add address=192.168.73.1/24 interface=wifi1 network=192.168.73.0
/ip dhcp-server network
add address=192.168.73.0/24 dns-server=8.8.8.8 gateway=192.168.73.1
/ip firewall mangle
add action=mark-routing chain=prerouting disabled=yes new-routing-mark=main \
    passthrough=no src-address=192.168.73.0/24
/ip route
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=ether1 pref-src="" \
    routing-table=main scope=30 suppress-hw-offload=no target-scope=10
add disabled=no dst-address=0.0.0.0/0 gateway=wifi1 routing-table=main \
    suppress-hw-offload=no
/ppp profile
set *0 bridge=*6
  1. When In run this in terminal, I have the following output:
[admin@MikroTik] > ping interface=pppoe-out1  1.1.1.1 count=3
  SEQ HOST                                     SIZE TTL TIME       STATUS                                                                                                                                                                                  
    0                                                              bad interface                                                                                                                                                                           
    1                                                              bad interface                                                                                                                                                                           
    2                                                              bad interface                                                                                                                                                                           
    sent=3 received=0 packet-loss=100%

These are my export and ping status.

In the interfaces list, I see my ether1 and wifi1 are running (my wifi has no internet access yet but DCHP server assigns IP to my mobile, for example), but PPPoE has neither R, nor any other letters.

Would you please help me what’s wrong with my configuration?

What messages are there for the PPPoE client interface in the log?

Thanks, please close or remove this thread.

I probably enabled an option in the PPPoE interface by mistake and I didn’t notice that.
The issue is resolved.