need help writing a script in Windows


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting need help writing a script in Windows
# 1  
Old 09-22-2009
need help writing a script in Windows

Hi,

On Windows 2003, we have over 100 servers. I need to find NICs settings. I am using "SNMPUTIL" to get this.

If there is any other easy way to do this please do let me know.


Check the value of the output to see if its 2, if its not 2 the issue the command again increasing the end of the commands number by 1

snmputil get localhost public .1.3.6.1.4.1.232.18.2.3.1.1.34.2
So the output will either be the below or if its the last NIC you will get

Code:
 
d:\server1>snmputil get localhost public .1.3.6.1.4.1.232.18.2.3.1.1.34.1
Error: errorStatus=2, errorIndex=1
 
d:\server1>snmputil get localhost public .1.3.6.1.4.1.232.18.2.3.1.1.34.2 
Variable = .iso.org.dod.internet.private.enterprises.232.18.2.3.1.1.34.2
Value = Integer32 2


For any NIC that returns a value of 2 we then need to check the speed of that interface with the following command;

Code:
 
d:\server1>snmputil get localhost public .1.3.6.1.4.1.232.18.2.3.1.1.33.2 
Variable = .iso.org.dod.internet.private.enterprises.232.18.2.3.1.1.33.2
Value = Integer32 1000000000

So in this case we had a NIC (.2) that is set auto but is running gig which is good. We need to identify any NIC running auto not running gig, so if the NIC (.2) was running 10mps it would look like this;

Code:
 
d:\server1>snmputil get localhost public .1.3.6.1.4.1.232.18.2.3.1.1.33.2 
Variable = .iso.org.dod.internet.private.enterprises.232.18.2.3.1.1.33.2
Value = Integer32 10000000


How do I write this into a script? Any ideas?
# 2  
Old 09-23-2009
Shell script ?

---------- Post updated at 11:20 ---------- Previous update was at 11:02 ----------

With bash, you can try something like that (not tested) :
Code:
adr=.1.3.6.1.4.1.232.18.2.3.1.1
adr34=${adr}.34
adr33=${adr}.33

for ((i=1; i<=256; i++))
do

   value=$(snmputil get localhost public ${adr34}.$i | awk '/Value/ {print $3}')
   if [ "${value}" = "2" ]
   then
      value=$(snmputil get localhost public ${adr33}.$i | awk '/Value/ {print $3}')
      if [ "${value}" != "1000000000" ]
      then
         echo "NIC $i not running gig (${value})"
      fi
   fi
done
exit

Jean-Pierre.
# 3  
Old 09-23-2009
look at FOR in dos batch scripting
for /L %%a in (1,1,10) do ( <--- Something similar
and then look at findstr in batch ... to get pure dos batch file

Other ways download GNU bash for windows or busybox etc ... and it will be easier ..
# 4  
Old 09-23-2009
Thank you so much Aigles and Chakrapani for the ideas.
# 5  
Old 09-23-2009
If you can pull what you need from WMI, then you can write a loop in powershell or vbscript to get the info you need from one box.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

I need help writing this script

:wall: Can't seem to figure out how to fix this please help its not starting over like I would like it to When I enter in "Date" or "Time" nothing comes Also if you can tell me the commands for the other 3 stuff that would be much appreciated #!/bin/bash clear while ; do echo... (8 Replies)
Discussion started by: nowruzr
8 Replies

2. Shell Programming and Scripting

Writing Bash shell scripts corresponding to windows bat files

Experts, I am newbie in shell scripting. I want to write Bash shell scripts corresponding to windows bat files. I have installed cygwin at c:\cygwin and i am trying to crate the sh file using vi editor. i am not able to understand how to use linux/unix convention for the code. following is my... (15 Replies)
Discussion started by: rajuchacha007
15 Replies

3. Shell Programming and Scripting

Help in writing a script

Hey everyone Can anyone please write me a script to display numbers in descending order dynamically i.e if the user enter a number say 100 then the output should be like 100 99 ....so on till 0 I tried using the logic as for ((i =1; i<=100; i--) but the it goes into a infinite loop since even the... (7 Replies)
Discussion started by: icchi
7 Replies

4. Shell Programming and Scripting

Help me in writing the script

Hi, I have written a script which converts a give hexdecimal value to binary value in perl. But now, the problem is I should read every bit of it ( if its 10101010, i should read the value in each position and if the value in that position is 1 i should print a string and should exit if its... (1 Reply)
Discussion started by: prakashreddy
1 Replies

5. UNIX for Dummies Questions & Answers

Need help writing this script

Here is the script I am trying to write along with my answer I wrote. Please help me understand why it doesn't work. Create an executable script file called "newname" that will perform the followings: 1. Rename a file upon the user's request. If the file exists, prompt the user for... (1 Reply)
Discussion started by: wiggles
1 Replies

6. UNIX for Dummies Questions & Answers

UFS CD-ROM file-writing in Windows?

Is it possible to write files in a Windows application, in UFS, onto a CDROM that can then be read by a SUN workstation? If so, can anyone point me in the direction of an application that can let me do this? Thanks. (1 Reply)
Discussion started by: NeilAtkins
1 Replies

7. Shell Programming and Scripting

Writing the script

I whant write the script of monitoring my servers on night-active users. He must loging all user actions, when user login, when logout, when he do su etc. But i don't know with what to begin :( How command i can use? awk, sed, last And what logs i can use too? /var/log/messages, /var/log/secure... (1 Reply)
Discussion started by: jess_t03
1 Replies

8. UNIX for Dummies Questions & Answers

help for writing a script

Hi, I need help writing a unix script to change the time in the server automatically when it reaches a specified time. Only on the 14th of april, when the time becomes midnight (00:00:00), I need the server to change the time automatically to 23:30:00 and start working on as usual with a... (2 Replies)
Discussion started by: amodha
2 Replies

9. Shell Programming and Scripting

Writing Script?

Anyone have an example of a simple shell script that solicits a (Y)es or (N)o response from the user. If the response is 'Y' display a message on the screen that thanks the user for the positive response. If the response is 'N' display a message that thanks the user for the negative response. If... (15 Replies)
Discussion started by: wmosley2
15 Replies
Login or Register to Ask a Question