Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.14 KB

File metadata and controls

39 lines (26 loc) · 1.14 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 couldn't get the local link or there is no link present in the output, utilize the mac2ipv6 generator script. mac2ipv6

  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