0

I am currently trying to understand various security protocol implementation like EAP in wpa_supplicant. But its very complex way by reading wpa-supplicant-devel.pdf from w1.fi.

I want to know from expert in wpa_supplicant how to start in efficient way to deep drive in it. What advance c concept should know to better understand it.

Any resource/material/website/book for this can be suggested.

Please also don't ignore this as descriptive question as you well know that its hard to start in wpa_supplicant.

Thanks in advance.

Ryuk
  • 21
  • 3

1 Answers1

0

Run the wpa_supplicant on a Linux machine in verbose mode :wpa_supplicant -Dnl80211 -i wlan0 -c wpa_supplicant.conf -ddd. Use appropriate interface name (-i) and configuration file (-c). To create a simple configuration file please refer this link. With the debug messages from the above command output, browse the source. This provides a starting point to understand various terms in wpa_supplicant security.

Ganapathi Bhat
  • 137
  • 2
  • 7