因工作需要接触CiscoVoIP部署等技术,特在周末恶补了一下,mark下实验
顶上的router模仿Internet
s0/3/0 ip 1.1.1.2
s0/3/1 ip 2.1.1.2
s0/2/0 ip 3.1.1.2
所有的交换机的所有接口都设置成access口,并设备成voice vlan,这里展示总公司下面的交换机,其他类似
下面看总公司路由器的配置
company#show running-config
!
hostname company #改名字
!
enable password liuliu #进入enable设置密码
!
!
ip dhcp excluded-address 192.168.1.254 #这里是IP Phone的网关,排除在dhcp池之外
!
ip dhcp pool PhonePool
network 192.168.1.0 255.255.255.0
default-router 192.168.1.254
option 150 ip 192.168.1.254 # 由于在Packet tracer中必须使用DHCP才能给Cisco IP phone分配IP,所以用到了"Option 150 ip"命令,这条命令的的大致意思是思科电话设备需要从TFTP服务器下载配置文件,如果你没有配置TFTP服务器,它就会向DHCP服务器发送option 150命令请求那些配置信息.
原文:http://kb.juniper.net/InfoCenter/index?page=content&id=KB16352&actp=RSS
DHCP Option 150是思科独有的命令,IEEE标准有同样的语句Option 66(用于第三方Sip电话,且只能公布一个tftp地址的option),他们都用来指定TFTP服务器。
option 150 与 option 66 的不同:
DHCP option 150 支持多个TFTP服务器IP(多个tftp服务器可以提供冗余)
DHCP option 6 只支持单独的TFTP服务器IP
原文:http://www.cisco-club.com.cn/space.php?uid=109764&do=blog&id=1918
interface FastEthernet0/0
ip address 192.168.1.254 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/3/0
ip address 1.1.1.1 255.255.255.0
clock rate 2000000
!
ip classless
ip route 0.0.0.0 0.0.0.0 1.1.1.2
!
dial-peer voice 1 voip #配置拨号对等体1
destination-pattern 3333 #配置对等体号码
session target ipv4:2.1.1.1 #配置对等体IP
!
dial-peer voice 2 voip
destination-pattern 4444
session target ipv4:3.1.1.1
!
dial-peer voice 3 voip
!
telephony-service #开启服务
max-ephones 2 #最大电话设备2台
max-dn 2 #最多电话号码2个
ip source-address 192.168.1.254 port 9999 #电话注册地址
create cnf-files version-stamp Jan 01 2002 00:00:00 #这句只是命令create cnf-files 后面是默认
!
ephone-dn 2 #设置电话号码2
number 7777 #号码为7777
!
ephone-dn 1 #设置电话号码1
number 6666 #号码为6666
!
ephone 1 #设置电话1
device-security-mode none #默认
mac-address 000C.CFAC.559E #绑定IP Phone mac地址,真机的话是在话机后面有,PT里如果定义了dhcp的话,可以使用命令show ip dhcp binding查看分配的ip对应的mac。
type 7960 #话机类型
button 1:1 #前面一个1代表这个电话第一根线button,后面一个1代表ephone-dn,这样做到电话机和分机的绑定
!
ephone 2
device-security-mode none
mac-address 0001.968E.A0E5
type 7960
button 1:2
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
!
!
end
-------------上面就是总部的配置,分部的配置与总部类似,只需要修改一下IP就好了,下面贴一下家庭的配置------------------------------------其实也差不多
hostname FAMILY
!
ip dhcp excluded-address 192.168.3.254
!
ip dhcp pool Iphone1
network 192.168.3.0 255.255.255.0
default-router 192.168.3.254
option 150 ip 192.168.3.254
!
interface FastEthernet0/0
ip address 192.168.3.254 255.255.255.0
duplex auto
speed auto
!
interface Serial0/3/0
ip address 3.1.1.1 255.255.255.0
clock rate 2000000
!
ip classless
ip route 0.0.0.0 0.0.0.0 3.1.1.2
!
dial-peer voice 1 voip
destination-pattern 6666
session target ipv4:1.1.1.1
!
dial-peer voice 2 voip
destination-pattern 7777
session target ipv4:1.1.1.1
!
dial-peer voice 3 voip
destination-pattern 3333
session target ipv4:2.1.1.1
!
telephony-service
max-ephones 1
max-dn 1
ip source-address 192.168.3.254 port 9999
create cnf-files version-stamp Jan 01 2002 00:00:00
!
ephone-dn 1
number 4444
!
ephone 1
device-security-mode none
mac-address 0090.2191.B201
type ata #设置电话类型,ata-- ATA phone emulation for analog phone
button 1:1
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
!
!
end
------------下面公司总部模拟电话通信----
--------------------分部打总部的电话-------
因为总部两个主机在通话,所以分部拨过去是busy
真实设备上路由器有些事支持语音模块的,就不必像模拟器里面这么麻烦,嗯哼,继续努力
把实验也mark下