Re: [cisco-voip] [External] Re: Is it possible to bulk export phones from CLI or API?

2021-05-26 Thread Louis Koekemoer (MEA) via cisco-voip
Hunter,

Some time ago I had this issue and you mentioned if I want everything I should 
remove where and everything after it. I have a bug hence I need to use this 
method until I can one day convince business to upgrade. I need to get all my 
line info. More specific I am looking for CSS, Recording option, recording 
profile, recording media source and Monitoring Calling Search Space. Could you 
guys help me to alter this script to include these parameters?


From: Hunter Fuller 
Sent: Thursday, 18 February 2021 21:38
To: Louis Koekemoer (MEA) 
Cc: Alan Libbee ; cisco-voip 
Subject: Re: [External] Re: [cisco-voip] Is it possible to bulk export phones 
from CLI or API?

If you want to use it to match everything, just delete the word "where" and 
everything after it. If you don't specify a "where" clause it matches 
everything.

I'm sure you won't want to bother with axlrows since you already have what you 
need, but here is one way you could have done it. It is not possible to use 
axlrows to do it for device profiles because we don't use those so I haven't 
written that - sorry.

>>> phones = get_phones(name="SEP700B4F9C44B8")
for phone in phones:
dirn_uuid = phone.lines[0][0].dirn._uuid
dirn = get_suds_client().service.getLine(uuid=dirn_uuid)[0][0] #hack
print(phone.name<http://phone.name> + "," + phone.description + "," + 
dirn.pattern + "," + dirn.shareLineAppearanceCssName[0])
SEP700B4F9C44B8,Hunter Fuller (Cisco 8851 SIP) - Home,5331,COS-Unlimited-CSS

--
Hunter Fuller (they)
Router Jockey
VBH Annex B-5
+1 256 824 5331

Office of Information Technology
The University of Alabama in Huntsville
Network Engineering


On Thu, Feb 18, 2021 at 1:31 PM Louis Koekemoer (MEA) 
mailto:louis.koekem...@dimensiondata.com>> 
wrote:
Alan,

This is exactly what I am looking for. I will use it like below, as I am 
interested in all. What would I change to do the same for UDP, as not every 
user necessarily has a jabber or physical phone device

run sql select device.name<http://device.name>, device.description, 
numplan.dnorpattern, routepartition.name<http://routepartition.name>, 
callingsearchspace.name<http://callingsearchspace.name>, 
devicenumplanmap.e164mask, devicepool.name<http://devicepool.name>, 
devicenumplanmap.busytrigger, devicenumplanmap.maxnumcalls from numplan inner 
join devicenumplanmap on numplan.pkid = devicenumplanmap.fknumplan inner join 
device on devicenumplanmap.fkdevice = device.pkid inner join routepartition on 
routepartition.pkid = numplan.fkroutepartition inner join callingsearchspace on 
callingsearchspace.pkid = numplan.fkcallingsearchspace_sharedlineappear inner 
join devicepool on device.fkdevicepool = devicepool.pkid where 
numplan.dnorpattern like '%'

From: Alan Libbee mailto:alan.lib...@umgc.edu>>
Sent: Thursday, 18 February 2021 21:12
To: Louis Koekemoer (MEA) 
mailto:louis.koekem...@dimensiondata.com>>; 
cisco-voip mailto:cisco-voip@puck.nether.net>>
Subject: Re: Is it possible to bulk export phones from CLI or API?


Louis,

Below is a query you can run from the CLI in CallManager over ssh. You can 
change the end from '24%' to any number you want, similar to directory number 
starts with 24. You can modify this query or build a similar one to get the 
fields you are looking for.

run sql select device.name<http://device.name>, device.description, 
numplan.dnorpattern, routepartition.name<http://routepartition.name>, 
callingsearchspace.name<http://callingsearchspace.name>, 
devicenumplanmap.e164mask, devicepool.name<http://devicepool.name>, 
devicenumplanmap.busytrigger, devicenumplanmap.maxnumcalls from numplan inner 
join devicenumplanmap on numplan.pkid = devicenumplanmap.fknumplan inner join 
device on devicenumplanmap.fkdevice = device.pkid inner join routepartition on 
routepartition.pkid = numplan.fkroutepartition inner join callingsearchspace on 
callingsearchspace.pkid = numplan.fkcallingsearchspace_sharedlineappear inner 
join devicepool on device.fkdevicepool = devicepool.pkid where 
numplan.dnorpattern like '24%'

Example Output:

namedescriptiondnorpattern name 
   name e164mask   name   busytrigger maxnumcalls
=== == === 
=== = == == === ===
CSFBLAH  CSF  for Blah 2408675309 Internal_PT 
Long_Distance 12408675309 Example 1     2


Hope this helps.

-Alan



From: cisco-voip 
mailto:cisco-voip-boun...@puck.nether.net>> 
on behalf of Louis Koekemoer (MEA) 
mailto:louis.koekem...@dimensiondata.com>>
Sent: Thursday, February 18, 2021 1:44 PM
To: cisco-voip mailto:cisco-voip@puck.nether.net>>
Subject: 

Re: [cisco-voip] Is it possible to bulk export phones from CLI or API?

2021-02-18 Thread Louis Koekemoer (MEA)
Alan,

This is exactly what I am looking for. I will use it like below, as I am 
interested in all. What would I change to do the same for UDP, as not every 
user necessarily has a jabber or physical phone device

run sql select device.name, device.description, numplan.dnorpattern, 
routepartition.name, callingsearchspace.name, devicenumplanmap.e164mask, 
devicepool.name, devicenumplanmap.busytrigger, devicenumplanmap.maxnumcalls 
from numplan inner join devicenumplanmap on numplan.pkid = 
devicenumplanmap.fknumplan inner join device on devicenumplanmap.fkdevice = 
device.pkid inner join routepartition on routepartition.pkid = 
numplan.fkroutepartition inner join callingsearchspace on 
callingsearchspace.pkid = numplan.fkcallingsearchspace_sharedlineappear inner 
join devicepool on device.fkdevicepool = devicepool.pkid where 
numplan.dnorpattern like '%'

From: Alan Libbee 
Sent: Thursday, 18 February 2021 21:12
To: Louis Koekemoer (MEA) ; cisco-voip 

Subject: Re: Is it possible to bulk export phones from CLI or API?


Louis,

Below is a query you can run from the CLI in CallManager over ssh. You can 
change the end from '24%' to any number you want, similar to directory number 
starts with 24. You can modify this query or build a similar one to get the 
fields you are looking for.

run sql select device.name, device.description, numplan.dnorpattern, 
routepartition.name, callingsearchspace.name, devicenumplanmap.e164mask, 
devicepool.name, devicenumplanmap.busytrigger, devicenumplanmap.maxnumcalls 
from numplan inner join devicenumplanmap on numplan.pkid = 
devicenumplanmap.fknumplan inner join device on devicenumplanmap.fkdevice = 
device.pkid inner join routepartition on routepartition.pkid = 
numplan.fkroutepartition inner join callingsearchspace on 
callingsearchspace.pkid = numplan.fkcallingsearchspace_sharedlineappear inner 
join devicepool on device.fkdevicepool = devicepool.pkid where 
numplan.dnorpattern like '24%'

Example Output:

namedescriptiondnorpattern name 
   name e164mask   name   busytrigger maxnumcalls
=== == === 
=== = == == === ===
CSFBLAH  CSF  for Blah 2408675309 Internal_PT 
Long_Distance 12408675309 Example 1 2


Hope this helps.

-Alan



From: cisco-voip 
mailto:cisco-voip-boun...@puck.nether.net>> 
on behalf of Louis Koekemoer (MEA) 
mailto:louis.koekem...@dimensiondata.com>>
Sent: Thursday, February 18, 2021 1:44 PM
To: cisco-voip mailto:cisco-voip@puck.nether.net>>
Subject: [cisco-voip] Is it possible to bulk export phones from CLI or API?


Hi,



I recently upgraded my CUCM clusters to CUCM 12.5su3. I hit a bit of an issue. 
2 bugs. 1 on exporting all devices or all UDP, all details and 2 generating UDP 
reports or Phone reports. I need to do these on a weekly basis and I have 3 
cluster with around 7000-1000 UDP per cluster and up to 33000 phones/devices 
per cluster. Now as per the below it breaks on around 700-800 devices. I logged 
a TAC case and this is what TAC identified. Firstly the customer is not happy 
with bleeding edge(Not released yet). I am not very clued up on API’s but is 
there possible a way I can either “export” all devices, all details via cli or 
with a API? I have a few more clusters to upgrade but all put on hold due to 
this.





1. 
https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvv67192<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbst.cloudapps.cisco.com%2Fbugsearch%2Fbug%2FCSCvv67192=04%7C01%7Calan.libbee%40umgc.edu%7C75ff6196f22345bf3a8308d8d43d9df9%7C704ce3d6a4bf4e098516d52840c9f7a9%7C1%7C0%7C637492708983601572%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000=sr4n26vQfEhwnrWn392hbBjP46n073g2vTLyw5SKnf0%3D=0>



Symptom:

Export of Bulk Phones Job , stays in "Processing" State and does not "Completes"

Export of Bulk UDP Job , stays in "Processing" State and does not "Completes"



Conditions:

Export fails if it's more than 520 phone records through Phone -> Export 
Phone/UDP -> All Details



Workaround:

1. Export phones around 400 records through Phone -> Export Phone -> Specific 
Details

2. Export 800+ records through Import/Export -> Export operation.





The known fixed version is CCM.12.5(1.14900.42) but is going to be released in 
late February.



2. 
https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvw44625<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbst.cloudapps.cisco.com%2Fbugsearch%2Fbug%2FCSCvw44625=04%7C01%7Calan.libbee%40umgc.edu%7C75ff6196f22345bf3a8308d8d43d9df9%7C704ce3d6a4bf4e098516d52840c9f7a9%7C1%7C0%7C637492708983611566%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDA

Re: [cisco-voip] [External] Is it possible to bulk export phones from CLI or API?

2021-02-18 Thread Louis Koekemoer (MEA)
I am mainly interested in 4 fields on the bulk phone reports

Device Name,Description,Directory Number 1,Line CSS 1

And for UDP reports
Device Profile Name,Description,Directory Number 1,Line CSS 1

From: Hunter Fuller 
Sent: Thursday, 18 February 2021 21:07
To: Louis Koekemoer (MEA) 
Cc: cisco-voip 
Subject: Re: [External] [cisco-voip] Is it possible to bulk export phones from 
CLI or API?


What kind of data do you need to report?

I usually do stuff like this using a python tool I wrote, called axlrows. Here 
is an example:

>>> gen = get_phones(name="SEP700B4F9C44B8")
>>> phones = get_phones(name="SEP700B4F9C44B8")
>>> for phone in phones:
print(phone.name<http://phone.name>, ":", phone.description)
SEP700B4F9C44B8 : Hunter Fuller (Cisco 8851 SIP) - Home
It looks like to match "every" phone, you could write get_phones(protocol="SIP")

You can get the tool here, though it is admittedly poorly documented, so if you 
need assistance, let me know off-list.

https://github.com/uah/axlrows<https://github.com/uah/axlrows>

--
Hunter Fuller (they)
Router Jockey
VBH Annex B-5
+1 256 824 5331

Office of Information Technology
The University of Alabama in Huntsville
Network Engineering


On Thu, Feb 18, 2021 at 12:47 PM Louis Koekemoer (MEA) 
mailto:louis.koekem...@dimensiondata.com>> 
wrote:
Hi,

I recently upgraded my CUCM clusters to CUCM 12.5su3. I hit a bit of an issue. 
2 bugs. 1 on exporting all devices or all UDP, all details and 2 generating UDP 
reports or Phone reports. I need to do these on a weekly basis and I have 3 
cluster with around 7000-1000 UDP per cluster and up to 33000 phones/devices 
per cluster. Now as per the below it breaks on around 700-800 devices. I logged 
a TAC case and this is what TAC identified. Firstly the customer is not happy 
with bleeding edge(Not released yet). I am not very clued up on API’s but is 
there possible a way I can either “export” all devices, all details via cli or 
with a API? I have a few more clusters to upgrade but all put on hold due to 
this.


1. 
https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvv67192<https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvv67192>

Symptom:
Export of Bulk Phones Job , stays in "Processing" State and does not "Completes"
Export of Bulk UDP Job , stays in "Processing" State and does not "Completes"

Conditions:
Export fails if it's more than 520 phone records through Phone -> Export 
Phone/UDP -> All Details

Workaround:
1. Export phones around 400 records through Phone -> Export Phone -> Specific 
Details
2. Export 800+ records through Import/Export -> Export operation.


The known fixed version is CCM.12.5(1.14900.42) but is going to be released in 
late February.

2. 
https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvw44625<https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvw44625>


Symptom:
When customer submits bat job for (Bulk Administration --> Phones --> Generate 
Phone Reports) failed event can be observed from Job Scheduler page.

Issue started after upgrading to CUCM 12.5 SU3

Conditions:
Generate Phone Report under Bulk Administration

Workaround:
While Generating the  Phone Report,
Bulk Administration --> Phones --> Generate Phone Reports  after selecting 
mandatory fields,
under IP Phone services fields two checkboxes are there for speed dial services 
and IP Phone services, if the user can checked those boxes and run the job 
Report will generate successfully

The known fixed version is CCM.12.5(1.14900.42) but is going to be released in 
late February.

[ddlogo]
Louis Koekemoer (MEA)
Engineer - IPT - L4
m. +27 71 6808790
t. +27 11 5754317
email. 
louis.koekem...@dimensiondata.com<mailto:louis.koekem...@dimensiondata.com>
dimensiondata.com<https://www.dimensiondata.com/>
[ddtwitter]<https://twitter.com/DiDataMEA>
[ddlinkedin]<https://www.linkedin.com/company/dimension-data-middle-east-and-africa>
[ddfacebook]<https://www.facebook.com/DiDataMEA>
[ddinstagram]<https://www.instagram.com/_dimensiondata_>
[Logo]<https://www.dimensiondata.com/>
.
.

This email and all contents are subject to the following disclaimer:
https://www.dimensiondata.com/email-disclaimer
___
cisco-voip mailing list
cisco-voip@puck.nether.net<mailto:cisco-voip@puck.nether.net>
https://puck.nether.net/mailman/listinfo/cisco-voip<https://puck.nether.net/mailman/listinfo/cisco-voip>


itevomcid
___
cisco-voip mailing list
cisco-voip@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-voip


[cisco-voip] Is it possible to bulk export phones from CLI or API?

2021-02-18 Thread Louis Koekemoer (MEA)
Hi,

I recently upgraded my CUCM clusters to CUCM 12.5su3. I hit a bit of an issue. 
2 bugs. 1 on exporting all devices or all UDP, all details and 2 generating UDP 
reports or Phone reports. I need to do these on a weekly basis and I have 3 
cluster with around 7000-1000 UDP per cluster and up to 33000 phones/devices 
per cluster. Now as per the below it breaks on around 700-800 devices. I logged 
a TAC case and this is what TAC identified. Firstly the customer is not happy 
with bleeding edge(Not released yet). I am not very clued up on API's but is 
there possible a way I can either "export" all devices, all details via cli or 
with a API? I have a few more clusters to upgrade but all put on hold due to 
this.


1. https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvv67192

Symptom:
Export of Bulk Phones Job , stays in "Processing" State and does not "Completes"
Export of Bulk UDP Job , stays in "Processing" State and does not "Completes"

Conditions:
Export fails if it's more than 520 phone records through Phone -> Export 
Phone/UDP -> All Details

Workaround:
1. Export phones around 400 records through Phone -> Export Phone -> Specific 
Details
2. Export 800+ records through Import/Export -> Export operation.


The known fixed version is CCM.12.5(1.14900.42) but is going to be released in 
late February.

2. https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvw44625


Symptom:
When customer submits bat job for (Bulk Administration --> Phones --> Generate 
Phone Reports) failed event can be observed from Job Scheduler page.

Issue started after upgrading to CUCM 12.5 SU3

Conditions:
Generate Phone Report under Bulk Administration

Workaround:
While Generating the  Phone Report,
Bulk Administration --> Phones --> Generate Phone Reports  after selecting 
mandatory fields,
under IP Phone services fields two checkboxes are there for speed dial services 
and IP Phone services, if the user can checked those boxes and run the job 
Report will generate successfully

The known fixed version is CCM.12.5(1.14900.42) but is going to be released in 
late February.
___
cisco-voip mailing list
cisco-voip@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-voip


[cisco-voip] CUCM 8.x recovery iso

2020-12-30 Thread Louis Koekemoer (MEA)
Hi all,

Any possibility someone have a recovery iso for 8.x they can share?
___
cisco-voip mailing list
cisco-voip@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-voip


Re: [cisco-voip] SFTP on CUCM 11.5.su8

2020-09-04 Thread Louis Koekemoer (MEA)
Lelio,

I also saw that note, but confuse me is that ot works well in 12.5SU3

Regards

Louis

From: Lelio Fulgenzi 
Sent: Friday, 04 September 2020 15:43
To: Louis Koekemoer (MEA) ; cisco-voip 

Subject: RE: SFTP on CUCM 11.5.su8


Oh gosh. Here come the migrations to PCD for sftp. ☹

From: cisco-voip 
mailto:cisco-voip-boun...@puck.nether.net>> 
On Behalf Of Louis Koekemoer (MEA)
Sent: Friday, September 4, 2020 6:48 AM
To: cisco-voip mailto:cisco-voip@puck.nether.net>>
Subject: [cisco-voip] SFTP on CUCM 11.5.su8

CAUTION: This email originated from outside of the University of Guelph. Do not 
click links or open attachments unless you recognize the sender and know the 
content is safe. If in doubt, forward suspicious emails to 
ith...@uoguelph.ca<mailto:ith...@uoguelph.ca>


Was wondering if anyone else was experiencing issues with SFTP on 11.5su8. I 
have 5 clusters that was recently upgraded to 12.5su8 and when I want to 
collect any files from them via SFTP it fails. I have done this numerous times 
in my life and also tested with a 12.5su3 instance I have and it works, but 
none of the 11.5su8 servers allows me. I used various different servers/PC with 
FreeFTPD, Solarwinds and Mini SFTP.

Example would be to collect MOH files.
12.5su3
admin:file get activelog mohprep/*
Please wait while the system is gathering files info ...
Get file: active/mohprep/CiscoMOHSourceReport.xml

Get file: active/mohprep/SampleAudioSource.alaw.wav

Get file: active/mohprep/SampleAudioSource.g729.wav

Get file: active/mohprep/SampleAudioSource.ulaw.wav

Get file: active/mohprep/SampleAudioSource.wb.wav

Get file: active/mohprep/SampleAudioSource.xml

Get file: active/mohprep/SilenceAudioSource.alaw.wav

Get file: active/mohprep/SilenceAudioSource.g729.wav

Get file: active/mohprep/SilenceAudioSource.ulaw.wav

Get file: active/mohprep/SilenceAudioSource.wb.wav

Get file: active/mohprep/SilenceAudioSource.xml

Get file: active/mohprep/ToneOnHold.alaw.wav

Get file: active/mohprep/ToneOnHold.g729.wav

Get file: active/mohprep/ToneOnHold.ulaw.wav

Get file: active/mohprep/ToneOnHold.wb.wav

Get file: active/mohprep/ToneOnHold.xml
done.
Sub-directories were not traversed.
Number of files affected: 16
Total size in Bytes: 18537609
Total size in Kbytes: 18103.133
Would you like to proceed [y/n]? y
SFTP server IP: 23.240.48.250<http://23.240.48.250>
SFTP server port [22]: 21
User ID: ccmadmin
Password: 
Download directory: /

...
Transfer completed.
admin:

11.5su8
admin:file get activelog mohprep/*
Please wait while the system is gathering files info ...
Get file: active/mohprep/CiscoMOHSourceReport.xml

Get file: active/mohprep/SampleAudioSource.alaw.wav

Get file: active/mohprep/SampleAudioSource.g729.wav

Get file: active/mohprep/SampleAudioSource.ulaw.wav

Get file: active/mohprep/SampleAudioSource.wb.wav

Get file: active/mohprep/SampleAudioSource.xml

Get file: active/mohprep/SilenceAudioSource.alaw.wav

Get file: active/mohprep/SilenceAudioSource.g729.wav

Get file: active/mohprep/SilenceAudioSource.ulaw.wav

Get file: active/mohprep/SilenceAudioSource.wb.wav

Get file: active/mohprep/SilenceAudioSource.xml

Get file: active/mohprep/ToneOnHold.alaw.wav

Get file: active/mohprep/ToneOnHold.g729.wav

Get file: active/mohprep/ToneOnHold.ulaw.wav

Get file: active/mohprep/ToneOnHold.wb.wav

Get file: active/mohprep/ToneOnHold.xml
done.
Sub-directories were not traversed.
Number of files affected: 16
Total size in Bytes: 18537609
Total size in Kbytes: 18103.133
Would you like to proceed [y/n]? y
SFTP server IP: 23.240.48.250<http://23.240.48.250>
SFTP server port [22]: 22
User ID: ccmadmin
Password: 
Download directory: /

Could not connect to host 23.240.48.250<http://23.240.48.250> on port 22. 
Please verify SFTP settings.
admin:


This email and all contents are subject to the following disclaimer:
"http://www.dimensiondata.com/emaildisclaimer;<http://www.dimensiondata.com/Global/Policies/Pages/Email-Disclaimer.aspx>


itevomcid
___
cisco-voip mailing list
cisco-voip@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-voip


Re: [cisco-voip] SFTP on CUCM 11.5.su8

2020-09-04 Thread Louis Koekemoer (MEA)
Bi;;y that was just me trying to force it to use FTP. Missed the edit on that 
one.

From: Bill Talley 
Sent: Friday, 04 September 2020 13:58
To: Louis Koekemoer (MEA) 
Cc: cisco-voip 
Subject: Re: [cisco-voip] SFTP on CUCM 11.5.su8



Is there a reason you connected to different destination ports?   The good 
attempt used port 21 and the bad attempt used port 22.
Sent from an iPhone mobile device with very tiny touchscreen input keys.  
Please excude my typtos.


On Sep 4, 2020, at 5:49 AM, Louis Koekemoer (MEA) 
mailto:louis.koekem...@dimensiondata.com>> 
wrote:

Was wondering if anyone else was experiencing issues with SFTP on 11.5su8. I 
have 5 clusters that was recently upgraded to 12.5su8 and when I want to 
collect any files from them via SFTP it fails. I have done this numerous times 
in my life and also tested with a 12.5su3 instance I have and it works, but 
none of the 11.5su8 servers allows me. I used various different servers/PC with 
FreeFTPD, Solarwinds and Mini SFTP.

Example would be to collect MOH files.
12.5su3
admin:file get activelog mohprep/*
Please wait while the system is gathering files info ...
Get file: active/mohprep/CiscoMOHSourceReport.xml

Get file: active/mohprep/SampleAudioSource.alaw.wav

Get file: active/mohprep/SampleAudioSource.g729.wav

Get file: active/mohprep/SampleAudioSource.ulaw.wav

Get file: active/mohprep/SampleAudioSource.wb.wav

Get file: active/mohprep/SampleAudioSource.xml

Get file: active/mohprep/SilenceAudioSource.alaw.wav

Get file: active/mohprep/SilenceAudioSource.g729.wav

Get file: active/mohprep/SilenceAudioSource.ulaw.wav

Get file: active/mohprep/SilenceAudioSource.wb.wav

Get file: active/mohprep/SilenceAudioSource.xml

Get file: active/mohprep/ToneOnHold.alaw.wav

Get file: active/mohprep/ToneOnHold.g729.wav

Get file: active/mohprep/ToneOnHold.ulaw.wav

Get file: active/mohprep/ToneOnHold.wb.wav

Get file: active/mohprep/ToneOnHold.xml
done.
Sub-directories were not traversed.
Number of files affected: 16
Total size in Bytes: 18537609
Total size in Kbytes: 18103.133
Would you like to proceed [y/n]? y
SFTP server IP: 23.240.48.250<http://23.240.48.250>
SFTP server port [22]: 21
User ID: ccmadmin
Password: 
Download directory: /

...
Transfer completed.
admin:

11.5su8
admin:file get activelog mohprep/*
Please wait while the system is gathering files info ...
Get file: active/mohprep/CiscoMOHSourceReport.xml

Get file: active/mohprep/SampleAudioSource.alaw.wav

Get file: active/mohprep/SampleAudioSource.g729.wav

Get file: active/mohprep/SampleAudioSource.ulaw.wav

Get file: active/mohprep/SampleAudioSource.wb.wav

Get file: active/mohprep/SampleAudioSource.xml

Get file: active/mohprep/SilenceAudioSource.alaw.wav

Get file: active/mohprep/SilenceAudioSource.g729.wav

Get file: active/mohprep/SilenceAudioSource.ulaw.wav

Get file: active/mohprep/SilenceAudioSource.wb.wav

Get file: active/mohprep/SilenceAudioSource.xml

Get file: active/mohprep/ToneOnHold.alaw.wav

Get file: active/mohprep/ToneOnHold.g729.wav

Get file: active/mohprep/ToneOnHold.ulaw.wav

Get file: active/mohprep/ToneOnHold.wb.wav

Get file: active/mohprep/ToneOnHold.xml
done.
Sub-directories were not traversed.
Number of files affected: 16
Total size in Bytes: 18537609
Total size in Kbytes: 18103.133
Would you like to proceed [y/n]? y
SFTP server IP: 23.240.48.250<http://23.240.48.250>
SFTP server port [22]: 22
User ID: ccmadmin
Password: 
Download directory: /

Could not connect to host 23.240.48.250<http://23.240.48.250> on port 22. 
Please verify SFTP settings.
admin:


This email and all contents are subject to the following disclaimer:
"http://www.dimensiondata.com/emaildisclaimer;<http://www.dimensiondata.com/Global/Policies/Pages/Email-Disclaimer.aspx>
 ___
cisco-voip mailing list
cisco-voip@puck.nether.net<mailto:cisco-voip@puck.nether.net>
https://puck.nether.net/mailman/listinfo/cisco-voip<https://puck.nether.net/mailman/listinfo/cisco-voip>


itevomcid
___
cisco-voip mailing list
cisco-voip@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-voip


[cisco-voip] SFTP on CUCM 11.5.su8

2020-09-04 Thread Louis Koekemoer (MEA)
   Was wondering if anyone else was experiencing issues with SFTP on 11.5su8. I 
have 5 clusters that was recently upgraded to 12.5su8 and when I want to 
collect any files from them via SFTP it fails. I have done this numerous times 
in my life and also tested with a 12.5su3 instance I have and it works, but 
none of the 11.5su8 servers allows me. I used various different servers/PC with 
FreeFTPD, Solarwinds and Mini SFTP.

Example would be to collect MOH files.
12.5su3
admin:file get activelog mohprep/*
Please wait while the system is gathering files info ...
Get file: active/mohprep/CiscoMOHSourceReport.xml

Get file: active/mohprep/SampleAudioSource.alaw.wav

Get file: active/mohprep/SampleAudioSource.g729.wav

Get file: active/mohprep/SampleAudioSource.ulaw.wav

Get file: active/mohprep/SampleAudioSource.wb.wav

Get file: active/mohprep/SampleAudioSource.xml

Get file: active/mohprep/SilenceAudioSource.alaw.wav

Get file: active/mohprep/SilenceAudioSource.g729.wav

Get file: active/mohprep/SilenceAudioSource.ulaw.wav

Get file: active/mohprep/SilenceAudioSource.wb.wav

Get file: active/mohprep/SilenceAudioSource.xml

Get file: active/mohprep/ToneOnHold.alaw.wav

Get file: active/mohprep/ToneOnHold.g729.wav

Get file: active/mohprep/ToneOnHold.ulaw.wav

Get file: active/mohprep/ToneOnHold.wb.wav

Get file: active/mohprep/ToneOnHold.xml
done.
Sub-directories were not traversed.
Number of files affected: 16
Total size in Bytes: 18537609
Total size in Kbytes: 18103.133
Would you like to proceed [y/n]? y
SFTP server IP: 23.240.48.250
SFTP server port [22]: 21
User ID: ccmadmin
Password: 
Download directory: /

...
Transfer completed.
admin:

11.5su8
admin:file get activelog mohprep/*
Please wait while the system is gathering files info ...
Get file: active/mohprep/CiscoMOHSourceReport.xml

Get file: active/mohprep/SampleAudioSource.alaw.wav

Get file: active/mohprep/SampleAudioSource.g729.wav

Get file: active/mohprep/SampleAudioSource.ulaw.wav

Get file: active/mohprep/SampleAudioSource.wb.wav

Get file: active/mohprep/SampleAudioSource.xml

Get file: active/mohprep/SilenceAudioSource.alaw.wav

Get file: active/mohprep/SilenceAudioSource.g729.wav

Get file: active/mohprep/SilenceAudioSource.ulaw.wav

Get file: active/mohprep/SilenceAudioSource.wb.wav

Get file: active/mohprep/SilenceAudioSource.xml

Get file: active/mohprep/ToneOnHold.alaw.wav

Get file: active/mohprep/ToneOnHold.g729.wav

Get file: active/mohprep/ToneOnHold.ulaw.wav

Get file: active/mohprep/ToneOnHold.wb.wav

Get file: active/mohprep/ToneOnHold.xml
done.
Sub-directories were not traversed.
Number of files affected: 16
Total size in Bytes: 18537609
Total size in Kbytes: 18103.133
Would you like to proceed [y/n]? y
SFTP server IP: 23.240.48.250
SFTP server port [22]: 22
User ID: ccmadmin
Password: 
Download directory: /

Could not connect to host 23.240.48.250 on port 22. Please verify SFTP settings.
admin:

This email and all contents are subject to the following disclaimer:

"http://www.dimensiondata.com/emaildisclaimer;
___
cisco-voip mailing list
cisco-voip@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-voip


[cisco-voip] UC Directory service

2018-07-13 Thread Louis Koekemoer (MEA)
   
I have an issue that my Directory search on Jabber is not working. We are not 
running IM servers. We just testing phone control. I have my Service Profile 
configured correctly for UDS. When resetting the Directory UC Service, I get 
the following error. Has anyone seen this before?

Restart request failed. Please ensure you have at least one Cisco Unified 
Communications Manager configured on the system.

This email and all contents are subject to the following disclaimer:

"http://www.dimensiondata.com/emaildisclaimer;
___
cisco-voip mailing list
cisco-voip@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-voip