Tibit MicroPlug

Tidbit MicroPlug is a PON OLT in the form of a SFP+.

Here are some instructions (reminder) how to configure it.

First steps, plug the OLT module inside a switch. I use a Juniper QFX5110.

Install the controller software (MicroClimate™ Management System – MCMS) on an Ubuntu 20.04.

Default management VLAN for the MicroPlug is 4090.

On the switch, configure the ports to allow communication over VLAN 4090 (could be simpler than what is presented here, but, hey!, it is my notepad)

interfaces {
    xe-0/0/0 {
        flexible-vlan-tagging;
        encapsulation extended-vlan-bridge;
        description port_with_OLT
        unit 200 {
            family ethernet-switching {
                interface-mode trunk;
                vlan {
                    members 200;
                }
            }
        }
        unit 4090 {
            vlan-id 4090;
        }
    }
    xe-0/0/4 {
        flexible-vlan-tagging;
        encapsulation extended-vlan-bridge;
        description port_with_Controller
        unit 200 {
            vlan-id 200;
        }
        unit 4090 {
            vlan-id 4090;
        }
    }
}
vlans {
    v200 {
        vlan-id 200;
        interface xe-0/0/4.200;
    }
    v4090 {
        vlan-id 4090;
        interface xe-0/0/4.4090;
        interface xe-0/0/0.4090;
    }
}

If everything is right, the MCMS should detect the OLT and the ONU.