|
|
Question : Problem: Using Cisco 3560\3750 SFP port for Tape Library
|
|
I am going to be setting up a tape library. I am told with the library that I'm getting that there are two ways to set it up,
[svrs to be backed up]----->thru the lan---->[backup svr]--->SCSI--->[tape library]
or
[fiber nic]------>[fiber bridge]------>[tape library]
My question is, can I use a cisco switch (3560\3750) and plug the tape library in one of the spf ports on it?
I want to buy the switch to act as the 'fiber bridge' and since it's a gb switch and all the servers have gb nics, i just want them to have a gb connection to the tape library which itself is connected by fiber.
Also, in buying the switch, it says the SFP ports are empty, do I need to purchase a specific gbic or fiber module to plug into the spf port? And i'm assuming this module will depend what type of fiber connection is coming off the tape library, would that be correct? like SC to LC or someting another
|
Answer : Problem: Using Cisco 3560\3750 SFP port for Tape Library
|
|
You could add the following to the login script. You may want to add a comma at the end of each writeline to give a you csv format...
=========================================================================== Dim objFileSystem, objOutputFile
Set objFileSystem = CreateObject("Scripting.fileSystemObject") Set objOutputFile = objFileSystem.CreateTextFile("C:\TEST.txt", TRUE)
strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2") Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_ComputerSystem") For Each objItem In colItems objOutputFile.WriteLine "Name: " & objItem.Name objOutputFile.WriteLine "Manufacturer: " & objItem.Manufacturer objOutputFile.WriteLine "Model: " & objItem.Model Next
objOutputFile.Close Set objFileSystem = Nothing WScript.Quit(0)
==========================================================================
The only problems with this is you are relying on the manufacturers builds to add these. Not all computers on your network will have this information.
As for the serial no. You should'nt be able to find this information in the OS.
|
|
|
|