[h3c 如何使用debug]h3c如何设置!

2023-03-08 03:17 28次浏览 攻略

前面几篇介绍了H3C和Cisco的一些基本配置,这一节以一些配置技术为例,希望对大家有用~!

.1网络要求

通常,网络内存用于有多个供应商的路由器设备和语音业务需求的环境中。

如图1所示,MSR路由器与思科ISR系列路由器均开启SIP协议,通过SIP使用背靠背连接方式互联,电话29211与电话4545能够使用SIP打通电话。

2 配置思路

· 为使网络连通,配置路由器的接口一个网段内;

· 为使电话与语音网关和目的电话联系,配置语音实体。

3 使用版本

· H3C

本举例是在Release 2207P14版本上进行配置和验证的。

· CISCO

本举例是在RELEASE SOFTWARE (fc4)版本上进行配置和验证的。

4
配置注意事项

· 正确选择可用的sip server,选用正确的Cisco版本。

· 两路由器的时隙要一致,若不一致有可能导致呼叫建立不成功。

5 配置步骤

5.1 H3C路由器的配置

# 配置接口IP地址。

<H3C> system-view

[H3C] interface GigabitEthernet 0/0

[H3C-GigabitEthernet0/0] ip address 172.32.27.1 255.255.0.0

[H3C-GigabitEthernet0/0] quit

# 配置本地POTS实体。

[H3C] voice-setup

[H3C-voice] dial-program

[H3C-voice-dial] entity 29211 pots

[H3C-voice-dial-entity29211] match-template 29211

[H3C-voice-dial-entity29211]
line 5/0

[H3C-voice-dial-entity29211]
quit

# 配置远端VOIP实体。

[H3C-voice-dial]
entity 4545 voip

[H3C-voice-dial-entity4545]
address sip ip 172.32.27.45

[H3C-voice-dial-entity4545]
match-template 4545

5.2 CISCO路由器的配置

# 配置接口IP地址。

ISR#configure
terminal

ISR(config)#interface
FastEthernet0/0

ISR(config-if)#ip
address 172.32.27.45 255.255.0.0

ISR(config-if)#no
shutdown

ISR(config-if)#exit

# 配置本地POTS实体。

ISR(config)#dial-peer
voice 4545 pots

ISR(config-dial-peer)#destination-pattern
4545

ISR(config-dial-peer)#port 3/1/0

ISR(config-dial-peer)#exit

# 配置远端VOIP实体。

ISR(config)#dial-peer voice 29211 voip

ISR(config-dial-peer)#destination-pattern 29211

ISR(config-dial-peer)#session protocol sipv2

ISR(config-dial-peer)#session
target ipv4:172.32.27.1

6
验证结果

(1) 使用电话29211拨打号码4545,电话4545振铃,4545摘机后两端能够正常通话,任意一方挂机,均可结束通话;

(2) 使用电话4545拨打号码29211,电话29211振铃,29211摘机后两端能够正常通话,任意一方挂机,均可结束通话。

7 配置文件

· H3C

#

sysname
H3C

#

interface
GigabitEthernet0/0

port
link-mode route

ip
address 172.32.27.1 255.255.0.0

#

voice-setup

sip

#

dial-program

#

entity 4545 voip

address sip ip 172.32.27.45

match-template 4545

#

entity 29211 pots

line 5/0

match-template 29211

#

· CISCO

Building
configuration…

Current
configuration : 1449 bytes

!

version
12.3

service
timestamps debug datetime msec

service
timestamps log datetime msec

no
service password-encryption

!

hostname
ISR

!

interface
FastEthernet0/0

ip
address 172.32.27.45 255.255.0.0

duplex
auto

speed
auto

!

!

dial-peer
voice 4545 pots

destination-pattern
4545

port
3/1/0

!

dial-peer
voice 29211 voip

destination-pattern
29211

session
protocol sipv2

session
target ipv4:172.32.27.1

!

end

相关推荐