Questions tagged [cisco]

For software development issues related to Cisco hardware. Networking and configuration questions should be asked on https://networkengineering.stackexchange.com/

Cisco Systems is a widely deployed brand of networking and telecommunications gear. Questions using this tag should cover software development related to Cisco equipment. Questions about configuration and administration of network gear should be posted on Server Fault. Network design and protocol questions should go to Network Engineering

1035 questions
3
votes
1 answer

PHP Radius: Set Cisco Attribute-Value Pairs (AVPairs)

I have a CISCO and I want to authenticate users with RADIUS using PHP. CISCO has its own vendor and attributes and I have to set them in my PHP scripts. I am using PECL RADIUS API. This is my sample code: $radius =…
Vahid
  • 3,384
  • 2
  • 35
  • 69
3
votes
2 answers

Capture output from ssh with expect script

I want to capture the output of my expect script in a file.txt. #!/usr/bin/expect -f match_max 10000 set timeout 120 eval spawn ssh 10.0.0.0 set prompt ":|#|\\\$" interact -o -nobuffer -re $prompt return send "password\r" expect ">" send "sh cdp…
Omnomnom
  • 111
  • 2
  • 2
  • 11
3
votes
2 answers

Why am I getting request method GET not supported?

I am using PostMan as a REST client to test this API method Cisco ACL Analysis API. specifically POST /acl/trace or getAClTracksStd (first go to Policy Analysis) Here is my PostMan HTTP test call Does anyone who is familiar with PostMan understand…
committedandroider
  • 8,711
  • 14
  • 71
  • 126
3
votes
2 answers

CISCO H264 Encoding series of Images to H264

I am searching for a command line argument to convert series of Images into H264 using CISCO H264. (Something like FFMPEG image to video functionality). Unfortunately, I cant use FFMPEG as I am creating a commercial application, where I use the…
user3652437
  • 201
  • 2
  • 8
3
votes
1 answer

How to get flow record details of a netflow packet

I've used jflow to capture the netflow packets. By running the print example I could observe this kind of output. 13.243.146.68.41472 -> 10.100.0.126.13570 285212682 0 0.43.0.0.18 -> 0.199.0.0.4352 8321715 100 53.2.7.225.3571 -> 0.0.1.67.37446 323…
Asiri Liyana Arachchi
  • 2,663
  • 5
  • 24
  • 43
3
votes
1 answer

Reliable method for detecting if Webex Client is running

What is the best method for determining if the Cisco Webex client is running on a user's computer? Currently, I'm checking for a running process like this: public static bool IsWebExClientRunning() { // webex process name started from internet…
Cameron Tinker
  • 9,634
  • 10
  • 46
  • 85
3
votes
0 answers

How to get cisco incoming call number in C#?

How to Get Incoming call number? What is the any way to get Incoming call number with C#? For example, to invoke Dial I use this code: using System; using System.IO; using System.Net; using System.Text; public class FileConverter { static void…
FreeVice
  • 2,567
  • 6
  • 21
  • 28
3
votes
1 answer

CISCO MSE API : SOAP communication with Android APP

I want to know how to apply SOAP-Request parameter in the android source. example... Q1. Is this right ? (<--) private static final String SOAP_ACTION = " "; <-- ??? private static final String METHOD_NAME = "GetStationStats "; <-- Is this…
3
votes
1 answer

Cisco show dmvpn regular expression change regex in php script

Script that queries cisco routers to pull the 'show dmvpn' output from the spoke hub routers. However we upgraded a hub router and the new IOS is showing now date/time info for "show dmvpn" command. Previous IOS versions only show 'never', and it…
3
votes
1 answer

Cisco Mobility regarding JTAPI

I'm developing an application using the Cisco JTAPI API. But one issue I'm facing is when the user enables mobility on his VoIP telephone. Then I'm unable to control the mobility call (the call forwarded to fx. the users mobile phone) through the…
3
votes
2 answers

CCNA Routing and Switching

I need help with basic configuration on devices (switches, routers, and PC's) On CISCO packet tracer. Any suggestion?
user2116336
3
votes
2 answers

Cisco JTAPI to CUCM

I have been tasked with writing an application that lets users place calls to Cisco Unified Callmanager 8.6. The contact list will not be provided by the UCM. It will be provided elsewhere. I find both the documentation and examples provided by…
scav
  • 235
  • 4
  • 13
3
votes
1 answer

show cdp neighbor in expect script

I'm pretty new to scripting in general. I'm writing an expect script that ssh'es into a Cisco switch, and runs the "show cdp neighbors" command to get a list of all the devices connected to the switch. I then save the output into a variable and exit…
thepoynt
  • 43
  • 1
  • 6
3
votes
6 answers

Print multiple lines from text file

If i have a text file like this: FastEthernet3/1 ip address 0.0.0.0 enable portfast FastEthernet3/2 ip address 0.0.0.0 enable portfast FastEthernet3/3 ip address 0.0.0.0 FastEthernet3/4 ip address 0.0.0.0 And i would like to print out the…
DT22
  • 61
  • 2
  • 7
2
votes
2 answers

How should we control Cisco phones using 3rd party call control?

Background We are developing an enterprise application to control Cisco phones on a Cisco Unified Call Manager using 3rd party call control. We need to be able to monitor call state, get Caller ID for incoming calls, and do full call control…
Rich
  • 29
  • 3