Welcome to the VanDyke Software Forums

Join the discussion today!


Go Back   VanDyke Software Forums > Scripting

Notices

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 08-20-2016, 11:40 AM
aohareuri aohareuri is offline
Registered User
 
Join Date: Aug 2016
Posts: 2
Variable from File likely csv

All,

I'm looking to create a script, preferring VB, that will read variables from a CSV file and insert them into the script in a loop.

File content example
TelnetTo,WAN1,WAN1IP,WAN2,WAN2IP,BGPNum,BGPPeer
192.168.1.1,Gi0/0/1,172.16.1.1,Gi0/0/2,172.17.1.1,123,172.16.1.2

There are about 300 rows in the document, the below is a sample and not actual IPs.

Looking to have the script (once already connected to a jump server) cycle through each host in the TelnetTo column.

HTML Code:
#$language = "VBScript"
#$interface = "1.0"

crt.Screen.Synchronous = True

Sub Main
Set fso = CreateObject("Scripting.FileSystemObject")

Set hosts = fso.OpenTextFile("SomePath\SomeFile.csv")

MyVar = Split(hosts.ReadAll, vbcrlf)

hosts.Close

For Each thing In MyVar
	crt.Screen.Send "telnet " & thing & chr(13)
	If crt.Screen.WaitForStrings ("NA-US-R3-JUMPsvr105#", "username: ") = 2 then
		crt.Screen.Send "user" & chr(13)
		crt.Screen.WaitForString "password: "
		crt.Screen.Send "pass" & chr(13)
		crt.Screen.WaitForString ">"
		crt.Screen.Send "en" & chr(13)
		crt.Screen.Send "pass" & chr(13)
		crt.Screen.WaitForString "#"
		crt.Screen.Send "conf t" & chr(13)
		crt.Screen.WaitForString "(config)#"
		crt.Screen.Send "interface " & thing1 & chr(13)
		crt.Screen.Send "ip address " & thing2 & " 255.0.0.0" & chr(13)
		crt.Screen.WaitForString "(config)#"
		crt.Screen.Send "end" & chr(13)
		crt.Screen.WaitForString "#"
		crt.Screen.Send "wr" & chr(13)
		crt.Screen.WaitForString "#"
		crt.Screen.Send "exit" & chr(13)
		crt.Screen.WaitForString "NA-US-R3-JUMPsvr105#"
	Else
		crt.Screen.Send chr(13)
		crt.Screen.WaitForString "NA-US-R3-JUMPsvr105#"
	End If
Next
End Sub
Reply With Quote
 

Tags
csv , vbs , vbscript

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -6. The time now is 08:05 PM.