Matteo Scandolo | 1f5530b | 2019-12-17 10:12:31 -0800 | [diff] [blame] | 1 | Troubleshooting |
| 2 | =============== |
| 3 | |
| 4 | Here is a collection of useful commands and tools to troubleshoot VOLTHA. |
| 5 | The project is still in a very early phase, so this section of the guide is more focus |
| 6 | on how to collection information and packet dumps than it is on operations. |
| 7 | |
Andrea Campanella | 61fd666 | 2020-07-27 16:56:55 +0200 | [diff] [blame] | 8 | Depending on your issue useful tips and tricks can be found: |
| 9 | - `No ONUs are discovered <https://guide.opencord.org/profiles/seba/troubleshoot/no-onus.html>`_ |
| 10 | - `Can't authenticate <https://guide.opencord.org/profiles/seba/troubleshoot/no-aaa.html>`_ |
| 11 | - `DHCP is not working <https://guide.opencord.org/profiles/seba/troubleshoot/no-dhcp.html>`_ |
| 12 | - `No Ping <https://guide.opencord.org/profiles/seba/troubleshoot/no-ping.html>`_ |
| 13 | |
| 14 | |
Matteo Scandolo | 1f5530b | 2019-12-17 10:12:31 -0800 | [diff] [blame] | 15 | Trace Packets across components |
| 16 | ------------------------------- |
| 17 | |
| 18 | Given that ``VOLTHA`` is a collection of microservices we strongly suggest the usage of a log aggregator like |
| 19 | `stern <https://github.com/wercker/stern>`_. installed. You can then aggregate logs from multiple containers in a simple way, |
| 20 | for example to track all the ``packet-ins`` and ``packet-outs``: |
| 21 | |
| 22 | .. code:: bash |
| 23 | |
| 24 | $ stern -n voltha "voltha|adapter" | grep -E "packet-out|packet-in" > packets.trace |
| 25 | |
| 26 | Once you have captured the packets you need, you can see them in wireshark by transforming the logs with: |
| 27 | |
| 28 | .. code:: bash |
| 29 | |
| 30 | sed -n 's/.*packet":"\(.*\)",.*$/\1/p' packets.trace | sed -e 's/.\{2\}/& /g' | sed -e 's/^/000000 /' > packets.hex |
| 31 | |
| 32 | And then in wireshark select ``File -> Import from Hex Dump`` |
| 33 | |
| 34 | Or you can decode a single packet using this online tool: `https://hpd.gasmi.net <https://hpd.gasmi.net>`_ |
| 35 | |
| 36 | To get all the EAPOL packets: ``cat packets.trace | grep 888e`` |
| 37 | |
| 38 | or if you have `hl <https://github.com/mbornet-hl/hl>`__ installed you can highlight with: |
| 39 | |
| 40 | .. code:: bash |
| 41 | |
| 42 | cat packets.trace | grep 888e | hl -m '.*packet-in.*' -g '.*packet-out.*' |
| 43 | |
| 44 | To get all the DHCP packets: ``cat packets.trace | grep 8100`` |
| 45 | |
| 46 | or if you have `hl <https://github.com/mbornet-hl/hl>`__ installed you can highlight with: |
| 47 | |
| 48 | .. code:: bash |
| 49 | |
| 50 | cat packets.trace | grep 8100 | hl -m '.*packet-in.*' -g '.*packet-out.*' |
| 51 | |
| 52 | OMCI Packet Dump |
| 53 | ---------------- |
| 54 | |
| 55 | In order to see OMCI packets in Wireshark you'll need to install ``omci.lua`` and ``BinDecHex.lua`` dissectors |
| 56 | `wiki.wireshark.org/Contrib <https://wiki.wireshark.org/Contrib#Protocol_Dissectors>`_. |
| 57 | |
| 58 | To install them on Ubuntu: |
| 59 | |
| 60 | .. code:: bash |
| 61 | |
| 62 | mkdir -p $(HOME)/.local/lib/wireshark/plugins |
| 63 | cd $(HOME)/.local/lib/wireshark/plugins |
| 64 | wget "https://wiki.wireshark.org/Contrib?action=AttachFile&do=get&target=omci.lua" |
| 65 | wget "https://wiki.wireshark.org/Contrib?action=AttachFile&do=get&target=BinDecHex.lua" |
| 66 | |
| 67 | IMPORTANT - Apply `this <https://ask.wireshark.org/question/4557/bindechexlua-error-bad-argument-to-module-packageseeall/?answer=4573#post-id-4573>`_ fix to BinDecHex.lua. |
| 68 | |
| 69 | To capture the OMCI packets for all ONUs: |
| 70 | |
| 71 | .. code:: bash |
| 72 | |
| 73 | cat openonu.logs | grep -E "receive_message|_send_next" | grep msg > omci.dump |
| 74 | |
| 75 | To capture the OMCI packets for a particular ONU: |
| 76 | |
| 77 | .. code:: bash |
| 78 | |
| 79 | cat openonu.logs | grep -E "receive_message|_send_next" | grep msg | grep [deviceId] > omci.dump |
| 80 | |
| 81 | Once you have the ``omci.dump`` file you need to prepare it to be imported in wireshark with this command: |
| 82 | |
| 83 | .. code:: bash |
| 84 | |
| 85 | sed -n "s/.*[omci_msg|msg]: b'\(.*\)',.*$/\1/p" omci.dump | sed -e 's/.\{2\}/& /g' | sed -e 's/^/000000 /' > omci.hex |
| 86 | |
| 87 | And then in wireshark: |
| 88 | |
| 89 | - select ``File -> Import from Hex Dump`` |
| 90 | - select ``Encapsulation Type -> Ethernet`` |
| 91 | - set ``Ethernet -> Ethertype (hex): 88b5`` |