cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
376
Views
0
Helpful
4
Replies

emulate calls from the gateway

cris_jimenez
Level 2
Level 2

Folks,

could you please let me know what is the command that I need to issue on the gateway to check what is the matching dial-peer?

thank you

2 Accepted Solutions

Accepted Solutions

Adrian Saavedra
Level 7
Level 7

Hi Cris,

You can use show call active voice command to display active call information in progress. It display the contents of the active call table (information about call times, dial peers, connections, quality of service, etc).

More to read about its usage:

http://www.cisco.com/en/US/docs/ios/12_2/voice/command/reference/vrf_r.html#wp1113752

Also you can use the show voice call status and see which inbound and outbound dial-peers are being used by an active call.

Additionally, there is the show dialplan number command to display which outgoing dial peer is reached when a particular telephone number is dialed.

More to read about its usage:

http://www.cisco.com/en/US/docs/ios/12_3/vvf_r/vrg_sh2_ps1839_TSD_Products_Command_Reference_Chapter.html#wp999333

Hope this help you.

- Adrián.

View solution in original post

I think you're looking for this command:

show dialplan number

'show call active voice brief' will show the call legs. The pid: value will show you the dial peers matched.

Some other useful ones:

test voice translation-rule

Debugs:

debug voip ccapi inout

debug voip dialpeer

You will match an incoming pots dial peer in this order:

'incoming called-number x' on called number

'answer-address x' on calling number

'destination-pattern x' on calling number

'port x'

You will match an incoming voip dial peer in this order:

'incoming called-number x' on called number

'answer-address x' on calling number

'destination-pattern x' on calling number

You will match an outgoing pots dial peer in this order:

'destination-pattern x' on called number

'port x'

You will match an outgoing voip dial peer in this order:

'destination-pattern x' on called number

hth,

nick

View solution in original post

4 Replies 4

mattcalderon
Level 4
Level 4

To see what dial-peers you have issue a "show dial-peer vo sum"

to send a call out from the gateway use "csim start XXXX" This is an undocumented command and will NOT question mark out.

Note: This only works on H323 gateways.

Matt

Adrian Saavedra
Level 7
Level 7

Hi Cris,

You can use show call active voice command to display active call information in progress. It display the contents of the active call table (information about call times, dial peers, connections, quality of service, etc).

More to read about its usage:

http://www.cisco.com/en/US/docs/ios/12_2/voice/command/reference/vrf_r.html#wp1113752

Also you can use the show voice call status and see which inbound and outbound dial-peers are being used by an active call.

Additionally, there is the show dialplan number command to display which outgoing dial peer is reached when a particular telephone number is dialed.

More to read about its usage:

http://www.cisco.com/en/US/docs/ios/12_3/vvf_r/vrg_sh2_ps1839_TSD_Products_Command_Reference_Chapter.html#wp999333

Hope this help you.

- Adrián.

I think you're looking for this command:

show dialplan number

'show call active voice brief' will show the call legs. The pid: value will show you the dial peers matched.

Some other useful ones:

test voice translation-rule

Debugs:

debug voip ccapi inout

debug voip dialpeer

You will match an incoming pots dial peer in this order:

'incoming called-number x' on called number

'answer-address x' on calling number

'destination-pattern x' on calling number

'port x'

You will match an incoming voip dial peer in this order:

'incoming called-number x' on called number

'answer-address x' on calling number

'destination-pattern x' on calling number

You will match an outgoing pots dial peer in this order:

'destination-pattern x' on called number

'port x'

You will match an outgoing voip dial peer in this order:

'destination-pattern x' on called number

hth,

nick

thank you, that is exactly what I'm looking for