1.測試拓撲:
參照:2.基本配置:
a.r1:
inte***ce fastethernet0/0
ip address 202.100.1.1 255.255.255.0
no shut
inte***ce fastethernet0/1
shut
inte***ce fastethernet0/1.10
encapsulation dot1q 10
ip address 10.1.1.1 255.255.255.0
inte***ce fastethernet0/1.11
encapsulation dot1q 11
ip address 1.1.1.1 255.255.255.0
ip dhcp pool telephonepool
network 1.1.1.0 255.255.255.0
default-router 1.1.1.1
option 150 ip 1.1.1.1
ip dhcp pool pcpool
network 10.1.1.0 255.255.255.0
default-router 10.1.1.1
b.switch1:
int f0/1
sw trunk encapsulation dot1q
sw mode trunk
vlan 10
name pc
vlan 11
name telephone
int rang f0/2 - 3
sw mode acc
sw acc vlan 10
switchport voice vlan 11
spanning-tree portfast
c.r2:
inte***ce fastethernet0/0
ip address 202.100.1.2 255.255.255.0
no shut
inte***ce fastethernet0/1
ip address 202.100.2.2 255.255.255.0
no shut
d.r3:
inte***ce fastethernet0/0
ip address 202.100.2.3 255.255.255.0
no shut
inte***ce fastethernet0/1
no shut
inte***ce fastethernet0/1.20
encapsulation dot1q 20
ip address 20.1.1.1 255.255.255.0
inte***ce fastethernet0/1.22
encapsulation dot1q 22
ip address 2.2.2.1 255.255.255.0
ip dhcp pool telephonepool
network 2.2.2.0 255.255.255.0
default-router 2.2.2.1
option 150 ip 2.2.2.1
ip dhcp pool pcpool
network 20.1.1.0 255.255.255.0
default-router 20.1.1.1
e.switch2:
int f0/1
sw trunk encapsulation dot1q
sw mode trunk
vlan 20
name pc
vlan 22
name telephone
int rang f0/2 - 3
sw mode acce
sw acc vlan 20
switchport voice vlan 22
spanning-tree portfast
3.動態路由配置:
a.r1:
route ospf 1
net 202.100.1.0 0.0.0.255 a 0
net 10.1.1.0 0.0.0.255 a 0
net 1.1.1.0 0.0.0.255 a 0
passive-inte***ce f0/1.10
passive-inte***ce f0/1.11
b.r2:
route ospf 1
net 202.100.1.0 0.0.0.255 a 0
net 202.100.2.0 0.0.0.255 a 0
c.r3:
route ospf 1
net 202.100.2.0 0.0.0.255 a 0
net 20.1.1.0 0.0.0.255 a 0
net 2.2.2.0 0.0.0.255 a 0
passive-inte***ce f0/1.20
passive-inte***ce f0/1.22
4.語音閘道器配置:
a.r1:
①.開啟cme服務:
telephony-service
max-ephones 20
max-dn 100
ip source-address 1.1.1.1 port 2000
no auto-reg-ephone
②.**號碼設定:
ephone-dn 1
number 1001
ephone-dn 2
number 1002
③.設定自動註冊:
telephony-service
auto-reg-ephone
auto assign 1 to 2
此時左邊的兩個**直接能夠互相撥打。
b.r3:
①.開啟cme服務:
telephony-service
max-ephones 20
max-dn 100
ip source-address 2.2.2.1 port 2000
no auto-reg-ephone
②.**號碼設定:
ephone-dn 1
number 2001
ephone-dn 2
number 2002
③.設定手動註冊:
ephone 1
mac-address 0002.17b7.de38
type 7960
button 1:1
ephone 2
mac-address 00e0.f720.1c46
type 7960
button 1:2
此時右邊的兩個**直接能夠互相撥打。
5.語音閘道器遠端呼叫配置:
a.r1:
dial-peer voice 1 voip
destination-pattern 20..
session target ipv4:2.2.2.1
b.r3:
dial-peer voice 1 voip
destination-pattern 10..
session target ipv4:1.1.1.1
此時左邊和右邊的四個**都能互相撥打。
在VMware下面裝RHEL5 3
今天為了試驗在linux下安裝cadence,有在伺服器下的vmware下安裝了一次rhel,安裝沒什麼大問題 就是安裝vmtools費了我不少時間,不安裝vmtools的話解析度很小,所以還是要安一下的。現在將方法總結一下 其實也蠻簡單 確定自己的gcc可以那麼就直接mount上vmtools的光...
在AIX5 3上使用bash
在使用習慣solaris linux之後,在aix下使用其它的shell感覺不太習慣,還有沒有tab命令補齊,下面簡單介紹一下aix下使用bash的方法 aix下面己經全面支援rpm包的安裝。一 安裝方法 2 使用方法 a 在需要使用時在任何shell下輸入bash即可切換到bash下 b 將roo...
面試題53 在排序陣列中查詢數字
統計乙個數字在排序陣列中出現的次數,例如,輸入排序陣列和數字3,由於3在這個陣列中出現了4次,因此輸出4.思路 既然輸入的陣列是排序的,那麼我們自然能想到用二分查詢演算法,如何高效的利用二分查詢,可以分別利用二分查詢找到第乙個k和最後乙個k。class solution return number ...