Community discussions

MikroTik App
 
Trick
just joined
Topic Author
Posts: 3
Joined: Tue Jan 24, 2023 12:03 am

RB5009 SFP WAN

Tue Jan 24, 2023 12:09 am

Hi,

I'm trying to setup the RB5009 with my FTTH connection.

I tried creating a vlan as per ISP requirements and selected the sfp-sfpplus1 interface.
Then I created a pppoe client with user and password and selected the vlan as interface.

The pppoe keeps looping through initializing, connecting, terminating, disconnecting.

Assuming everything is fine with the gpon sfp module.
Are there any other steps I should take to properly configured the router?

I just want to make sure th RB5009 is 100% correct so that I can blame it on the sfp module,
I tried two of them, both say they're connected but I can't get the pppoe to connect.

Thanks in advance for any help!
 
User avatar
mkx
Forum Guru
Forum Guru
Posts: 11433
Joined: Thu Mar 03, 2016 10:23 pm

Re: RB5009 SFP WAN

Tue Jan 24, 2023 2:18 pm

Post text export of full RB5009 configuration. Open terminal window, execute command /export file=anynameyouwish hide-sensitive, fetch resulting file to management computer, open it with text editor, redact remaining sensitive data (usernames, PSKs, device serial number) and post it here between [code] [/code] marking blocks.

Also tell us which exact model of SFP module you're using. ROS is quite sensitive about modules and not all of them work. Compatibility list lists mostly Mikrotik's own modules (and as it can be seen, even those don't work without gotchas on all of MT devices), 3rd party modules are officially not supported - but some of them work just fine. You mentioned GPON SFP module ... those are notorious not to work with ROS devices (except a few models that some users managed to get working).
 
Trick
just joined
Topic Author
Posts: 3
Joined: Tue Jan 24, 2023 12:03 am

Re: RB5009 SFP WAN

Tue Jan 24, 2023 3:31 pm

Hi,

thanks for the reply.
I tried with a Huawei MA5671A and a Technicolor AFM0003.

Here's my config:
# jan/18/2023 18:20:55 by RouterOS 7.7
# software id = DB48-QCL2
#
# model = RB5009UG+S+
/interface bridge
add admin-mac=2C:C8:1B:FF:94:0B auto-mac=no comment=defconf name=bridge
/interface ethernet
set [ find default-name=sfp-sfpplus1 ] speed=2.5Gbps
/interface vlan
add interface=sfp-sfpplus1 name=vlan1 vlan-id=1036
/interface pppoe-client
add add-default-route=yes disabled=no interface=vlan1 name=pppoe-out1 \
    use-peer-dns=yes user=vodafoneadsl
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
/ip dhcp-server
add address-pool=default-dhcp interface=bridge name=defconf
/interface bridge port
add bridge=bridge comment=defconf interface=ether2
add bridge=bridge comment=defconf interface=ether3
add bridge=bridge comment=defconf interface=ether4
add bridge=bridge comment=defconf interface=ether5
add bridge=bridge comment=defconf interface=ether6
add bridge=bridge comment=defconf interface=ether7
add bridge=bridge comment=defconf interface=ether8
add bridge=bridge interface=ether1
/ip neighbor discovery-settings
set discover-interface-list=LAN
/interface detect-internet
set detect-interface-list=all internet-interface-list=all lan-interface-list=\
    all wan-interface-list=all
/interface list member
add comment=defconf interface=bridge list=LAN
add comment=defconf interface=vlan1 list=WAN
/ip address
add address=192.168.88.1/24 comment=defconf interface=bridge network=\
    192.168.88.0
add address=192.168.1.15/24 interface=sfp-sfpplus1 network=192.168.1.0
/ip dhcp-server network
add address=192.168.88.0/24 comment=defconf dns-server=192.168.88.1 gateway=\
    192.168.88.1
/ip dns
set allow-remote-requests=yes
/ip dns static
add address=192.168.88.1 comment=defconf name=router.lan
/ip firewall filter
add action=accept chain=input comment=\
    "defconf: accept established,related,untracked" connection-state=\
    established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=\
    invalid disabled=yes
add action=accept chain=input comment="defconf: accept ICMP" protocol=icmp
add action=accept chain=input comment=\
    "defconf: accept to local loopback (for CAPsMAN)" dst-address=127.0.0.1
add action=drop chain=input comment="defconf: drop all not coming from LAN" \
    disabled=yes in-interface-list=!LAN
add action=accept chain=forward comment="defconf: accept in ipsec policy" \
    ipsec-policy=in,ipsec
add action=accept chain=forward comment="defconf: accept out ipsec policy" \
    ipsec-policy=out,ipsec
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" \
    connection-state=established,related hw-offload=yes
add action=accept chain=forward comment=\
    "defconf: accept established,related, untracked" connection-state=\
    established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" \
    connection-state=invalid disabled=yes
add action=drop chain=forward comment=\
    "defconf: drop all from WAN not DSTNATed" connection-nat-state=!dstnat \
    connection-state=new disabled=yes in-interface-list=WAN
/ip firewall nat
add action=masquerade chain=srcnat comment="defconf: masquerade" \
    ipsec-policy=out,none out-interface-list=WAN
/ipv6 firewall address-list
add address=::/128 comment="defconf: unspecified address" list=bad_ipv6
add address=::1/128 comment="defconf: lo" list=bad_ipv6
add address=fec0::/10 comment="defconf: site-local" list=bad_ipv6
add address=::ffff:0.0.0.0/96 comment="defconf: ipv4-mapped" list=bad_ipv6
add address=::/96 comment="defconf: ipv4 compat" list=bad_ipv6
add address=100::/64 comment="defconf: discard only " list=bad_ipv6
add address=2001:db8::/32 comment="defconf: documentation" list=bad_ipv6
add address=2001:10::/28 comment="defconf: ORCHID" list=bad_ipv6
add address=3ffe::/16 comment="defconf: 6bone" list=bad_ipv6
/ipv6 firewall filter
add action=accept chain=input comment=\
    "defconf: accept established,related,untracked" connection-state=\
    established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=\
    invalid
add action=accept chain=input comment="defconf: accept ICMPv6" protocol=\
    icmpv6
add action=accept chain=input comment="defconf: accept UDP traceroute" port=\
    33434-33534 protocol=udp
add action=accept chain=input comment=\
    "defconf: accept DHCPv6-Client prefix delegation." dst-port=546 protocol=\
    udp src-address=fe80::/10
add action=accept chain=input comment="defconf: accept IKE" dst-port=500,4500 \
    protocol=udp
add action=accept chain=input comment="defconf: accept ipsec AH" protocol=\
    ipsec-ah
add action=accept chain=input comment="defconf: accept ipsec ESP" protocol=\
    ipsec-esp
add action=accept chain=input comment=\
    "defconf: accept all that matches ipsec policy" ipsec-policy=in,ipsec
add action=drop chain=input comment=\
    "defconf: drop everything else not coming from LAN" in-interface-list=\
    !LAN
add action=accept chain=forward comment=\
    "defconf: accept established,related,untracked" connection-state=\
    established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" \
    connection-state=invalid
add action=drop chain=forward comment=\
    "defconf: drop packets with bad src ipv6" src-address-list=bad_ipv6
add action=drop chain=forward comment=\
    "defconf: drop packets with bad dst ipv6" dst-address-list=bad_ipv6
add action=drop chain=forward comment="defconf: rfc4890 drop hop-limit=1" \
    hop-limit=equal:1 protocol=icmpv6
add action=accept chain=forward comment="defconf: accept ICMPv6" protocol=\
    icmpv6
add action=accept chain=forward comment="defconf: accept HIP" protocol=139
add action=accept chain=forward comment="defconf: accept IKE" dst-port=\
    500,4500 protocol=udp
add action=accept chain=forward comment="defconf: accept ipsec AH" protocol=\
    ipsec-ah
add action=accept chain=forward comment="defconf: accept ipsec ESP" protocol=\
    ipsec-esp
add action=accept chain=forward comment=\
    "defconf: accept all that matches ipsec policy" ipsec-policy=in,ipsec
add action=drop chain=forward comment=\
    "defconf: drop everything else not coming from LAN" in-interface-list=\
    !LAN
/tool mac-server
set allowed-interface-list=LAN
/tool mac-server mac-winbox
set allowed-interface-list=LAN
/tool sniffer
set filter-direction=tx filter-interface=sfp-sfpplus1

 
User avatar
mkx
Forum Guru
Forum Guru
Posts: 11433
Joined: Thu Mar 03, 2016 10:23 pm

Re: RB5009 SFP WAN

Tue Jan 24, 2023 6:20 pm

The config (as far as it goes for PPPoE) seems fine.

Did you see this thread? viewtopic.php?t=172201
 
Trick
just joined
Topic Author
Posts: 3
Joined: Tue Jan 24, 2023 12:03 am

Re: RB5009 SFP WAN

Tue Jan 24, 2023 6:44 pm

Great thanks. I was worried the pppoe config was wrong and that's why it wasn't connecting.
I guess there's something missing in the sfp's config then.

I just had a look at that thread, it looks like the module is working tho.
I can't get it to connect even at 1gbit.

Who is online

Users browsing this forum: Allison10, Amazon [Bot], BioMax, nickiv and 39 guests