top of page
networktestinggenius.tk
Your networking tutor
Exclusive networking testing notes
Learn Networking & Testing topics

package require Expect
spawn telnet
expect "Password:"
send "abc\r"
expect "Switch>"
send "enable\r"
expect "Password:"
send "abc\r"
expect "Switch#"
send "config t\r"
expect "Switch(config)#"
send "vlan $vlanno\r"
expect "Switch(config-vlan)#"
send "end/r"
bottom of page