Tuesday 26 May 2015

Installing Wireshark with OpenFlow dissector on Ubuntu


  1. sudo apt-get -y remove wireshark
  2. sudo apt-get -y install libgtk-3-dev libqt4-dev flex bison
  3. wget http://www.wireshark.org/download/src/wireshark-1.12.5.tar.bz2 (At the time of installation latest version was 1.12.5. If you unable to do this step, then see this link https://www.wireshark.org/download/src/ for latest version)
  4.  tar xvfj wireshark-1.12.5.tar.bz2
  5. cd wireshark-1.12.5
  6. ./configure
  7. make -j4
  8. sudo make install
  9. cd ..
  10.  sudo sh -c "echo '/usr/local/lib' >> /etc/ld.so.conf"
  11. sudo ldconfig
  12.  Now start wireshark.
  13. sudo wireshark &
  14. To see OpenFlow packets write "openflow_v1" in the filter box.



References:


  1. http://sdnhub.org/forums/topic/wireshark-dissectore-fro-of-now-running-in-new-vm/
  2. http://askubuntu.com/questions/279853/permission-denied-error-when-editing-etc-ld-so-conf
  3. https://www.wireshark.org/download/src/

No comments:

Post a Comment