in reply to run command on multiple hosts
# Untested use strict; use Net::Telnet open(FH, "host_list_file") || die "Yikes $!"; while (<FH>) { # your telnet stuff here } [download]
HTH
Sweetblood