10 lines
110 B
Bash
Executable file
10 lines
110 B
Bash
Executable file
#!/bin/bash
|
|
BR=${1:-"br549"}
|
|
|
|
while true;
|
|
do
|
|
brctl show
|
|
brctl showstp $BR
|
|
brctl showmacs $BR
|
|
sleep 5
|
|
done
|