Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OSSI: Mass export all stations Native Name field 1

Status
Not open for further replies.

drsprite

Technical User
Apr 30, 2009
66
0
0
US
Hi there, we have a project which requires us to retrieve the "hidden" Native Name field.

I know the native name field is f7000ff00, but I'm not sure if there's a command that'll cycle through every station. Similar to ASA's "Export Data" feature.

Is there a way through OSSI to cycle through every single station to export the Native Name field?

Thanks!
 
Update: the reason I'm looking at OSSI and not the "Export Data" function of ASA is because we have to run this regularly overnight. Using ASA unattended hasn't yielded consistent results. However if we could hook this into a shell script, we would have more consistent results with the overnight data.
 
Yes there is.

Code:
clist station
f8005ff00       7000ff00
t

/* output station field, tab, then native name */
d2261
n
d2262   4573746562616E
n

/* 45 73 74 65 62 61 6E */
/* E  s  t  e  b  a  n  */                                                      

A great teacher, does not provide answers, but methods to teach others "How and where to find the answers"

bsh

40 years Bell, AT&T, Lucent, Avaya
Tier 3 for 30 years and counting
[url=http://bshtele.com][URL unfurl="true"]http://bshtele.com[/URL][/url]
 
Code:
clist station
f8005ff00       7000ff00
t

/* output station field then native name */
d2261
n
d2262   4573746562616E
n

/* 45 73 74 65 62 61 6E */
/* E  s  t  e  b  a  n  */


A great teacher, does not provide answers, but methods to teach others "How and where to find the answers"

bsh

40 years Bell, AT&T, Lucent, Avaya
Tier 3 for 30 years and counting
[URL unfurl="true"]http://bshtele.com[/url]
 
Thanks! A quick test shows that this should do what I want. Now to just figure out how to parse 1400 HEX values and their stations into a CSV.

You wouldn't happen to have something like that, would you? :)
 
capturing output already has tab separation.
put it in excel xls file.

A great teacher, does not provide answers, but methods to teach others "How and where to find the answers"

bsh

40 years Bell, AT&T, Lucent, Avaya
Tier 3 for 30 years and counting
[URL unfurl="true"]http://bshtele.com[/url]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top