I am trying to setup a PPPOE on SFP. I know there is no issue with the SFP/fibre/ISP end as it works on a TPLINK with fibre to lan converter. The PADI packets is the problem. I got it working once briefly but on a reboot it stopped. This is a brand new HEX S 2025. I spoke to ISP and all settings are correct (no VLAN needed or servicename, mtu ios 1492 etc.) I have attached the PPOE debug log and RIF file in the ZIP
please remove supout file. We, as forum users, do not need it as we do not have tools to analyze it.
It is designed for Mikrotik's support.
If you want help, then show your router's configuration.
Update - internet access is available on the Hex S - ping and dns resolution work, but no network client can access the internet or ping the router on 192.168.88.1. Is this what is needed?
[alex@Mikrotik-GW] > /ip route print
Flags: D - DYNAMIC; A - ACTIVE; c - CONNECT, v - VPN
Columns: DST-ADDRESS, GATEWAY, ROUTING-TABLE, DISTANCE
DST-ADDRESS GATEWAY ROUTING-TABLE DISTANCE
DAv 0.0.0.0/0 pppoe-out1 main 1
DAc 100.93.255.255/32 pppoe-out1 main 0
DAc 192.168.88.0/24 bridge-lan main 0
[alex@Mikrotik-GW] > /ip dhcp-server network print
Columns: ADDRESS, GATEWAY, DNS-SERVER
Do the clients receive correctly an IP address from the DHCP server in range 192.168.88.10-192.168.88.200?
Are you testing with a cabled (via ethernet) device or from Wifi? (in case test connectivity first through ethernet)
What does a traceroute/tracert to dns.gooogle.com show from a client device?
There are a few things to clean/correct (but unrelated to the issue you are having) in your configuration:
Duplicate pools:
/ip pool
add name=dhcp-pool ranges=192.168.88.10-192.168.88.200
add name=lan-pool ranges=192.168.88.10-192.168.88.200 <- unused and same as previous one
Leftovers frome moving or renaming interfaces:
/interface bridge port
...
add bridge=bridge-lan interface=*10 <- leftover to be removed
add bridge=bridge-lan interface=*11 <- leftover to be removed
you have only some input rules in firewall, are you sure-sure that you want to run the router without firewall forward rules?
(you really should start from the default Mikrotik firewall set of rules for SOHO devices[1])
In any case you have some duplicated rules among the few input ones:
/ip firewall filter
add action=accept chain=input connection-state=established,related
add action=accept chain=input in-interface-list=LAN
add action=drop chain=input <- this is a "drop all else" anything after this in the same chain will be ignored
add action=accept chain=input connection-state=established,related <-duplicated, remove
add action=accept chain=input in-interface-list=LAN <-duplicated, remove
add action=drop chain=input <-duplicated, remove
it is advised to have a MAC set explicitly on the bridge
I'm new to mikrotik configured. I've done some more tests. i have a tplink archer ax1500 that shows no internet but when a laptop is connected to it and dns is set manually to 8.8.8.8 it can connect to the internet and browse. It sees and can ping the Hex S on 192.168.88.1. There is something blocking communication between the hex s and the ax3. I’d appreciate some help in working out what is blocking the connection
I figured out that my HEX S connects to the ISP, but my LAN clients cannot reach the router or the internet because of a bridge or firewall issue. I made sure all LAN ports are in the bridge, my DHCP server is on the bridge, and I adjusted the firewall to allow traffic from LAN to WAN. After that, my clients got IPs, the default gateway is correct, and they can now access the internet.