Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.22 KB

JAF-ODU-Access-Via-The-IDU.md

File metadata and controls

37 lines (26 loc) · 1.22 KB

Accessing the ODU WEB-UI from local network

Disclaimer: This is ONLY for educational purposes, No one is responsible for any type of damage. So be aware.

  1. Fetch the local link ip of the ODU using this command:

    ovsdb-client transact '[ 
        "Open_vSwitch", 
        {
            "op": "select",
            "table": "IPv6_Neighbors",
            "where": [["if_name", "==", "eth1"]],
            "columns": ["address"]
        }
    ]'

    ODU ipv6 address fetch

    NOTE: If you don't get an ipv6 address in return then try restarting your router once. That should fix the issue most of the times if you haven't messed around the settings to much. If the issue still persists then reset the router and try again.

  2. Start a SSH tunnel from any local device:

    ssh -L 8443:[<local-link-ipv6-address>]:443 root@192.168.31.1
    • Substitute the local link ip with what you get as output from previous command. For example:

      ssh -L 8443:[fe80::9632:51ff:fe04:c136%eth1]:443 root@192.168.31.1
  3. Access ODU via https://localhost:8443:

    ODU Login page image