Networking-Forums.com

Professional Discussions => Programming Goodies and Software-Defined Networking => Topic started by: mehdi on April 24, 2022, 08:44:04 PM

Title: Packet Filtering
Post by: mehdi on April 24, 2022, 08:44:04 PM
Hello,

I research SDN security. I simulate an SDN network with an RYU controller. I use Scapy to generate traffic.
Now I want to read and analyse some parameters in a packet header like flags to distinguish between legitimate and illegitimate packets.

Which solution do you suggest?

Thank you.
Title: Re: Packet Filtering
Post by: icecream-guy on April 25, 2022, 08:14:02 AM
WireShark
Title: Re: Packet Filtering
Post by: deanwebb on April 25, 2022, 08:51:55 AM
Adding more detail - if you can either run WireShark on a PC at each end of the conversation OR run TCPDUMP on a Linux device at either end, you can have full capture of both the sending and receiving ends of the network traffic. You can also set up a mirror port on a switch device between the ends of the conversation, but it is usually easier to just install WireShark or run TCPDUMP.
Title: Re: Packet Filtering
Post by: mehdi on April 25, 2022, 05:28:22 PM
Thank you very much for your replies.

After I capture the traffic, I want to ask the RYU controller to check the status of a flag (0 or 1) in the received packet headers from a switch.

Could you please let me know how can I do that?


Thank you
Title: Re: Packet Filtering
Post by: deanwebb on April 25, 2022, 06:36:57 PM
That will depend on the configuration of the RYU. I'm not familiar with it, so I'd have to refer you to check vendor documentation.
Title: Re: Packet Filtering
Post by: mehdi on April 26, 2022, 10:51:28 AM
Thank you.

How can I read and analyze pcap file in RYU?
Title: Re: Packet Filtering
Post by: mehdi on April 26, 2022, 07:29:19 PM
I think I have two options:

- Use OpenFlow statistics: Based on the RYU book, RYU can monitor switch information per port(TX byte, RX byte,..) and not packet information(header, payload)

- Use Wireshark: The problem is where to run Wireshark. If run on a host, how RYU can fetch the information? If run on the switch or controller, it seems it's not feasible.

I would be grateful if share any ideas you have.

Thank you.
Title: Re: Packet Filtering
Post by: deanwebb on April 26, 2022, 08:30:25 PM
Can RYU run tcpdump?

I think so: https://stackoverflow.com/questions/37998065/understanding-ryu-openflow-controller-mininet-wireshark-and-tcpdump

see if that helps you out.