Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in verify.sh #55

Merged
merged 1 commit into from
Jan 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions scripts/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ if [ $final_ret -eq 0 ]; then
echo "=================================="

# ping test: STA owl1 (10.0.0.2) <--> STA owl2 (10.0.0.3),
# should sucess, packet will be relayed by AP owl0 (10.0.0.1)
# should success, packet will be relayed by AP owl0 (10.0.0.1)
echo
echo "================================================================================"
echo "Ping Test: STA owl1 (10.0.0.2) (connected) <--> STA owl2 (10.0.0.3) (connected)"
echo
echo "(should sucess, packet will be relay by AP owl0 (10.0.0.1))"
echo "(should success, packet will be relay by AP owl0 (10.0.0.1))"
echo "================================================================================"
sudo ip netns exec ns1 ping -c 4 10.0.0.3

Expand All @@ -119,12 +119,12 @@ if [ $final_ret -eq 0 ]; then
fi

# ping test: STA owl2 (10.0.0.3) <--> AP owl0 (10.0.0.1),
# should sucess, packet will directly send/receive between STA and AP
# should success, packet will directly send/receive between STA and AP
echo
echo "================================================================================"
echo "Ping Test: STA owl1 (10.0.0.3) (connected) <--> AP owl0 (10.0.0.1)"
echo
echo "(should sucess, packet will directly send/receive between STA owl1 and AP owl0)"
echo "(should success, packet will directly send/receive between STA owl1 and AP owl0)"
echo "================================================================================"
sudo ip netns exec ns2 ping -c 4 10.0.0.1

Expand Down