Community discussions

MikroTik App
 
joanmiralles
just joined
Topic Author
Posts: 1
Joined: Fri Jan 19, 2024 10:49 pm

PPPoE server Kill all clients

Thu May 23, 2024 1:18 pm

Hello,

We have several Mikrotiks, all with version 7.12.1 or higher and different hardware tile, arm, etc. It happens that unexpectedly, the PPPoE server kills all client connections. The clients reconnect and everything seems to work. These disconnections occur more or less frequently. It doesn't follow any specific pattern.

log:
00:02:38 pppoe,ppp,info <pppoe-a4:be:2c:69:72:52>: terminating...
00:02:38 pppoe,ppp,info <pppoe-28:a6:db:92:88:dc>: terminating...
00:02:38 pppoe,ppp,info <pppoe-70:8c:b6:7f:f3:15>: terminating...
00:02:38 pppoe,ppp,info <pppoe-f8:98:ef:3f:26:7c>: terminating...
00:02:38 pppoe,ppp,info <pppoe-4C:6E:6E:EF:C2:FF>: terminating...
00:02:38 pppoe,ppp,info <pppoe-B4:09:31:88:D4:C4>: terminating...
00:02:38 pppoe,ppp,info <pppoe-4C:6E:6E:E4:F5:43>: terminating...
00:02:38 pppoe,ppp,info <pppoe-b4:09:31:71:47:83>: terminating...
00:02:38 pppoe,ppp,info <pppoe-00:1D:73:8D:16:30>: terminating...
00:02:38 pppoe,ppp,info <pppoe-88:66:39:6c:70:1f>: terminating...
00:02:38 pppoe,ppp,info <pppoe-88:66:39:6C:86:6F>: terminating...
00:02:38 pppoe,ppp,info <pppoe-14:30:04:56:e2:92>: terminating...
00:02:38 pppoe,ppp,info <pppoe-4C:6E:6E:E4:F1:E9>: terminating...
00:02:38 pppoe,ppp,info <pppoe-88:66:39:6c:9b:cf>: terminating...
00:02:38 pppoe,ppp,info <pppoe-2c:55:d3:70:56:04>: terminating...
00:02:38 pppoe,ppp,info <pppoe-90:16:ba:47:94:86>: terminating...
00:02:38 pppoe,ppp,info <pppoe-e0:0c:e5:50:f3:77>: terminating...
00:02:38 pppoe,ppp,info <pppoe-e8:68:19:df:64:da>: terminating...
00:02:38 pppoe,ppp,info <pppoe-90:16:BA:47:59:C1>: terminating...
00:02:38 pppoe,ppp,info <pppoe-48:2c:d0:41:c3:34>: terminating...
00:02:38 pppoe,ppp,info <pppoe-f8:98:ef:df:43:6c>: terminating...
00:02:38 pppoe,ppp,info <pppoe-88:66:39:5f:8e:fe>: terminating...
00:02:38 pppoe,ppp,info <pppoe-28:b4:48:51:16:fd>: terminating...
00:02:38 pppoe,ppp,info <pppoe-E4:83:26:40:42:0A>: terminating...
00:02:38 pppoe,ppp,info <pppoe-b4:09:31:84:31:d3>: terminating...
00:02:38 pppoe,ppp,info <pppoe-c4:ff:1f:d0:e1:66>: terminating...
00:02:38 pppoe,ppp,info <pppoe-90:16:ba:56:b9:6b>: terminating...
00:02:38 pppoe,ppp,info <pppoe-F0:33:E5:4E:CF:64>: terminating...
00:02:38 pppoe,ppp,info <pppoe-90:16:ba:46:9f:78>: terminating...
00:02:38 pppoe,ppp,info <pppoe-b8:e3:b1:d7:df:57>: terminating...
00:02:38 pppoe,ppp,info <pppoe-4C:2E:FE:05:19:18>: terminating...
00:02:38 pppoe,ppp,info <pppoe-28:e3:4e:c9:58:93>: terminating...
00:02:38 pppoe,ppp,info <pppoe-48:8e:ef:f0:b1:2f>: terminating...
00:02:38 pppoe,ppp,info <pppoe-4C:6E:6E:EF:B4:A5>: terminating...
00:02:38 pppoe,ppp,info <pppoe-f0:33:e5:62:67:11>: terminating...
.....
and so on.


After restarting pppoe sessions, the /32 routes associated with some clients with a specific Address List are not advertised by ospf correctly. This is also absolutely random. This OSPF instance have a out filter like : if ( dst in ROUTE32) { accept }, where ROUTE32 is a Adress List.


PPPoE server Configuration:

/interface pppoe-server server
add authentication=pap,chap default-profile=FTTH disabled=no interface=VLAN keepalive-timeout=20 max-mru=1492 max-mtu=1492 service-name="PPPoE FTTH"


/ppp profile
set *0 dns-server=8.8.8.8 local-address=X.X.X.X only-one=yes
add change-tcp-mss=yes dns-server=8.8.8.8 interface-list=PPPoE_FTTH local-address=X.X.X.X name=FTTH only-one=yes use-encryption=no



OSPF Configuration:

/routing ospf instance
add disabled=no name=default-v2 originate-default=never out-filter-chain=ospf-out redistribute=connected,static router-id=X.X.X.X
/routing ospf area
add disabled=yes instance=default-v2 name=backbone-v2
add area-id=1.1.1.1 disabled=no instance=default-v2 name=wifi_network-v2
/routing ospf interface-template
add area=wifi_network-v2 auth-id=1 auth-key="" cost=10 disabled=no interfaces=sfp-sfpplus1 networks=172.16.62.48/30 priority=1 use-bfd=yes
add area=wifi_network-v2 disabled=no interfaces=lo networks=10.127.248.210/32 passive priority=1
add area=wifi_network-v2 disabled=no networks=10.8.1.0/24,10.8.32.0/21,10.8.40.0/21 passive


We don't know what could be happening. I think configurations seems correctly.

Thanks

Who is online

Users browsing this forum: Amazon [Bot] and 24 guests