You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed your script uses the command seq 10 to iterate phy1 to phy10. The problem is if it's phy0, it will not work.
I fixed this by changing the line to:
for IDX in $(seq 0 10); do
The text was updated successfully, but these errors were encountered:
I noticed your script uses the command seq 10 to iterate phy1 to phy10. The problem is if it's phy0, it will not work.
I fixed this by changing the line to:
for IDX in $(seq 0 10); do
The text was updated successfully, but these errors were encountered: