Hello,
I found a solution together with my colleague.
Pretty simple if you know how to script, I guess :-)
set all_int [exec "show ip interface brief | ex Vlan"]
foreach gi_int [regexp -all -line -inline "(^\[A-Za-z]*\[0-9/]+)" $all_int] {
ios_config "interface $gi_int" " shutdown" }
after 10000
foreach gi_int [regexp -all -line -inline "(^\[A-Za-z]*\[0-9/]+)" $all_int] {
ios_config "interface $gi_int" "no shutdown" }
Best regards,
Steffen