Unsolved
This post is more than 5 years old
7 Posts
0
1888
July 27th, 2007 14:00
Cisco external CLI client like Symcli
Is there an external CLI client for MDS switches. Hopefully unix based. I need to automate zone creation, VCM updates, and other sources. Is there, or how would you issue commands against the switch from a (hopefully Sun unix) management station.
No Events found!


AranH1
2.2K Posts
1
July 27th, 2007 15:00
As far as output, you can output any text from the cli to local storage on the switch (volatile or slot0) or ftp. For example:
PXDC_MDS9509b# show flogi database > ftp:flogi_output.txt
or
PXDC_MDS9509b# show flogi database > volatile:flogi_output.txt
OG21
7 Posts
0
July 27th, 2007 15:00
OG21
7 Posts
0
July 27th, 2007 15:00
OG2
AranH1
2.2K Posts
0
July 27th, 2007 15:00
Zone modification via CLI can be done interactively or by uploading config files to the running config that contain all the changes you want to make.
dynamox
11 Legend
•
20.4K Posts
•
87.4K Points
0
July 27th, 2007 15:00
can you configure private key authentication on Cisco ?
AranH1
2.2K Posts
0
July 27th, 2007 15:00
If you get a better answer to your question, post it back here. I would like to know if you find a better solution.
Cheers,
Aran
AranH1
2.2K Posts
0
July 27th, 2007 15:00
PXDC-MDS9509b# show zones vsan 20 > ftp:zones_vsan20.txt
or the following to just see the zones that are in the active zoneset:
PXDC-MDS9509b# show zoneset active vsan 20 > ftp:zones_vsan20.txt
OG21
7 Posts
0
July 27th, 2007 15:00
symmask -sid xxxx list logins | grep host123
and get an output that I can then save to a file:
10000000c90000a Fibre host01 10000000c90000a 697563 No Yes
10000000c90000b Fibre host01 10000000c90000b 677563 No Yes
An interactive CLI from a unix host.
OG21
7 Posts
0
July 27th, 2007 15:00
dynamox
11 Legend
•
20.4K Posts
•
87.4K Points
0
July 27th, 2007 15:00
AranH1
2.2K Posts
0
July 27th, 2007 15:00
You can write out all your changes in a text file before hand though and simply upload that to the switch running-config. That would save the time of making all the changes interactively on the switch.
When I have had to make a lot of changes to the switch, that is what I would do. Then it is just a few short commands: uploading the config and saving the config.
OG21
7 Posts
0
July 27th, 2007 15:00
OG21
7 Posts
0
July 27th, 2007 16:00
dynamox
11 Legend
•
20.4K Posts
•
87.4K Points
0
July 27th, 2007 16:00
AranH1
2.2K Posts
0
July 30th, 2007 08:00