Closed gubertoli closed 2 days ago
https://github.com/intrig-unicamp/mininet-wifi/commit/98ff896b28843659e7e0adbf61f8f375227e21eb fixes the issue. Please note that you have to generate the certs with https://github.com/intrig-unicamp/mininet-wifi/blob/master/examples/eap-tls/CA/gencerts.sh.
Thanks @ramonfontes, with those changes it is working now - stations ping each other.
Just an additional comment, based on https://github.com/intrig-unicamp/mininet-wifi/commit/98ff896b28843659e7e0adbf61f8f375227e21eb, the /tmp/debug*.txt
files are not being generated.
I tested with the following change from PR #268, and it also works for generating those files:
From:
wpasup_flags='-dd > /tmp/debug1.txt',
wpasup_flags='-dd > /tmp/debug2.txt',
To:
wpasup_flags='-dd -f /tmp/debug1.txt',
wpasup_flags='-dd -f /tmp/debug2.txt',
https://github.com/intrig-unicamp/mininet-wifi/commit/336d8ba0787a46360c97d6540497438be2fef6f3 fixes that! Thank you :)
Btw, please feel free to submit PRs.
Hi,
I am testing the mininet-wifi
eap-tls
example (mn version 2.6 in a Ubuntu 22.04 VM with wpa_cli and hostapd_cli v2.11-devel), but the current example is not running as expected by the exampleREADME.md
:The current output:
Only the
/tmp/hostapd.txt
is being generated, there is no/tmp/debug*.txt
, also no entries for hostap in the/var/log/syslog
. I tried the changes related to this PR #268, it fixes the problem of requiring to run from mininet-wifi root folder. But the behavior is the same.What I tried:
sta1
andsta2
), but it also did not solve the problem.identity
to the specific commonName of certificateseap_users
file to the specificidentity
ofsta1
andsta2
client_isolation=True
toclient_isolation=False
forap1
eapol_version=2
,eapol_version
, andeap_message
Please, any other ideas?