MSCBSC 移動(dòng)通信論壇
搜索
登錄注冊(cè)
網(wǎng)絡(luò)優(yōu)化工程師招聘專欄 4G/LTE通信工程師最新職位列表 通信實(shí)習(xí)生/應(yīng)屆生招聘職位

  • 閱讀:2617
  • 回復(fù):3
案例一 Catalsty 4908G-L3 VLAN間的路由和橋接
spatial
版主
鎵嬫満鍙風(fēng)爜宸查獙璇? style=


 發(fā)短消息    關(guān)注Ta 

專家·初級(jí)勛章   活動(dòng)·積極勛章   紀(jì)念勛章·四周年   財(cái)富勛章·富甲一方  
積分 8118
帖子 1554
威望 60792 個(gè)
禮品券 2273 個(gè)
專家指數(shù) 108
注冊(cè) 2010-3-4
專業(yè)方向  核心網(wǎng)工程師
回答問題數(shù) 0
回答被采納數(shù) 0
回答采納率 0%
 
發(fā)表于 2010-04-08 20:24:34  只看樓主 
必備知識(shí):
首先我門應(yīng)當(dāng)了解Catalsty 4908G-L3,實(shí)際上他是一臺(tái)路由器,完全使用CISCO的IOS配置接口。默認(rèn)的狀態(tài)下所有的接口都是可以路由的接口。Catalsty 4908G-L3并不支持面向二層協(xié)議,VLAN主干協(xié)議,動(dòng)態(tài)主干協(xié)議,端口聚合協(xié)議。
Catalsty 4908不支持以下幾種:基于12.0(7)版本的IOS
1 訪問控制列表。
2 802.1q
3 apple talk routing
4 port snooping
Catalsty 4908 swtich-router running Cisco IOS 12.0 ( 7 )W5 (15D)
Three Catalsty 3512xl switch running cisco iso 12.0 ( 5 )xu
配置Catalsty 4908交換機(jī)達(dá)到兩個(gè)目的。
讓五個(gè)VLAN 1 10 20 30 40 運(yùn)行在二層交換機(jī)上

不 同 的VLAN間可以進(jìn)行通訊

兩個(gè)Catalsty 3512xl交換機(jī)使用使用吉比特以太網(wǎng)鏈路連接到4908G-L3,其他的一個(gè)使用單一的吉比特鏈路連接。
來支持內(nèi)部VLAN的路由,集成路由和橋接。所有的端用戶和服務(wù)器都連接到Catalsty 3512XL,如果一個(gè)VLAN中的設(shè)備想連接到另一個(gè)VLAN中的設(shè)備的時(shí)候,數(shù)據(jù)將會(huì)發(fā)送到4908G-L3,他將數(shù)據(jù)路由到虛擬的橋接的接口上。

以下配置應(yīng)當(dāng)應(yīng)用的交換機(jī)上:
基本的出始化的配置
IP地址和默認(rèn)的網(wǎng)關(guān)應(yīng)當(dāng)分配到交換機(jī)上為管理
VTP模式應(yīng)當(dāng)配置成透明的模式, 以便在3512XL交換機(jī)上配置VLAN
吉比特以太網(wǎng)通道在4908G-L3和3512XL01 3512XL02
橋節(jié)和虛擬接口, IP和IPX的路由應(yīng)當(dāng)配置在4908上
ISL TRUNKS應(yīng)當(dāng)配置在4908G-L3和3512XL橋接應(yīng)當(dāng)配置在TRUNK的子接口上
Vlan IP subnet IPX NETWORK
1 10.10.1.0/24 N/A
10 10.10.10.0/24 1000
20 10.10.20.0/24 2000
30 10.10.30.0/24 3000
40 10.10.40.0/24 4000
在Catalsty3512xl上配置一個(gè)IP地址和默認(rèn)的網(wǎng)關(guān)為交換機(jī)的管理,默認(rèn)網(wǎng)關(guān)的地址是橋接虛擬接口的地址在Catalsty 4908G-L3上。
Switch#configure terminal
Switch(config)#hostname 3512xl-switch01
3512xl-switch01(config)#interface vlan 1
3512xl-switch01(config-if)#ip address 10.10.1.10 255.255.255.0
3512xl-switch01(config-if)#management
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#ip default-gateway 10.10.1.1
3512xl-switch01(config)#end
3512xl-switch01#


3512xl-switch02(config)#interface vlan 1
3512xl-switch02(config-if)#ip address 10.10.1.20 255.255.255.0
3512xl-switch02(config-if)#management
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#ip default-gateway 10.10.1.1
3512xl-switch02(config)#end
3512xl-switch02#



3512xl-switch03(config)#interface vlan 1
3512xl-switch03(config-if)#ip address 10.10.1.30 255.255.255.0
3512xl-switch03(config-if)#management
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#ip default-gateway 10.10.1.1
3512xl-switch03(config)#end
3512xl-switch03#
由于Catalsty 4908G-L3并不支持VTP所以Catalsty 3512xl配置成透明的模式,

3512xl-switch01#vlan database
3512xl-switch01(vlan)#vtp transparent
3512xl-switch01(vlan)#vlan 10 name vlan10
3512xl-switch01(vlan)#vlan 20 name vlan20
3512xl-switch01(vlan)#vlan 30 name vlan30
3512xl-switch01(vlan)#vlan 40 name vlan40
配置以太網(wǎng)通道
在3512XL-01上的GIG0/1和GIG0/2分別連接到4908G-L3上的GIG1和GIG2上,在3512XL-02上的GIG0/1和GIG0/2連接到4908G-L3上的GIG3和GIG4上
4908G-L3#configure terminal
4908G-L3(config)#interface port-channel 1
4908G-L3(config-if)#exit
4908G-L3(config)#interface gig1
4908G-L3(config-if)#no shutdown
4908G-L3(config-if)#channel-group 1
4908G-L3(config-if)#exit
4908G-L3(config)#interface gig2
4908G-L3(config-if)#no shutdown
4908G-L3(config-if)#channel-group 1
4908G-L3(config-if)#exit
4908G-L3(config)#interface port-channel 2
4908G-L3(config-if)#exit
4908G-L3(config)#interface gig3
4908G-L3(config-if)#no shutdown
4908G-L3(config-if)#channel-group 2
4908G-L3(config-if)#exit
4908G-L3(config)#interface gig4
4908G-L3(config-if)#no shutdown
4908G-L3(config-if)#channel-group 2
在Catalsty 3512xl-02上
3512xl-switch01#configure terminal
3512xl-switch01(config)#interface gig0/1
3512xl-switch01(config-if)#port-group 2
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface gig0/2
3512xl-switch01(config-if)#port-group 2
3512xl-switch01(config-if)#end
3512xl-switch01#
檢查以太網(wǎng)通道組配置使用show port group
配置CAT4908使用橋接和路由的功能,為VLAN間的路由,使用bridge ibr來啟動(dòng)路由和橋接功能。在交換機(jī)之間來配置ISL,VLAN的子接口在ISL TRUNK會(huì)被加入到相應(yīng)的橋接組創(chuàng)建一個(gè)單獨(dú)的2層的域
在Catalsty 4908G-l3上
4908G-L3#configure terminal
4908G-L3(config)#ipx routing
4908G-L3(config)#bridge ibr
4908G-L3(config)#bridge 1 protocol ieee
4908G-L3(config)#bridge 1 route ip
4908G-L3(config)#bridge 10 protocol ieee
4908G-L3(config)#bridge 10 route ip
4908G-L3(config)#bridge 10 route ipx
4908G-L3(config)#bridge 20 protocol ieee
4908G-L3(config)#bridge 20 route ip
4908G-L3(config)#bridge 20 route ipx
4908G-L3(config)#bridge 30 protocol ieee
4908G-L3(config)#bridge 30 route ip
4908G-L3(config)#bridge 30 route ipx
4908G-L3(config)#bridge 40 protocol ieee
4908G-L3(config)#bridge 40 route ip
4908G-L3(config)#bridge 40 route ipx
4908G-L3(config)#interface bvi 1
4908G-L3(config-if)#ip address 10.10.1.1 255.255.255.0
4908G-L3(config-if)#exit
4908G-L3(config)#interface bvi 10
4908G-L3(config-if)#ip address 10.10.10.1 255.255.255.0
4908G-L3(config-if)#ipx network 1000
4908G-L3(config-if)#exit
4908G-L3(config)#interface bvi 20
4908G-L3(config-if)#ip address 10.10.20.1 255.255.255.0
4908G-L3(config-if)#ipx network 2000
4908G-L3(config-if)#exit
4908G-L3(config)#interface bvi 30
4908G-L3(config-if)#ip address 10.10.30.1 255.255.255.0
4908G-L3(config-if)#ipx network 3000
4908G-L3(config-if)#exit
4908G-L3(config)#interface bvi 40
4908G-L3(config-if)#ip address 10.10.40.1 255.255.255.0
4908G-L3(config-if)#ipx network 4000
ipx routing 在4908G-L3上啟動(dòng)IPX的路由
Bridge IBR啟動(dòng),是集成了路由和橋接的功能。并允許在橋接組中路由通訊。
Bridge number protocol ieee 創(chuàng)建一個(gè)運(yùn)行在IEEE協(xié)議的生成樹具有橋接功能。

配置ISL TRUNK 在交換機(jī)上
在Catalsty 4908G-L3上配置ISL TRUNK需要在主接口下配置子接口,每個(gè)子接口為彼此每個(gè)VLAN傳輸數(shù)據(jù),兩個(gè)TRUNK配置在邏輯的PORT-CHANNEL接口,第三個(gè)TRUNK配置在物理的接口上
4908G-L3#configure terminal
4908G-L3(config)#interface port-channel 1
4908G-L3(config-if)#exit
4908G-L3(config)#interface port-channel 1.1
4908G-L3(config-if)#encapsulation isl 1
4908G-L3(config-if)#bridge-group 1
4908G-L3(config)#interface port-channel 1.10
4908G-L3(config-if)#encapsulation isl 10
4908G-L3(config-if)#bridge-group 10
4908G-L3(config)#interface port-channel 1.20
4908G-L3(config-if)#encapsulation isl 20
4908G-L3(config-if)#bridge-group 20
4908G-L3(config)#interface port-channel 1.30
4908G-L3(config-if)#encapsulation isl 30
4908G-L3(config-if)#bridge-group 30
4908G-L3(config)#interface port-channel 1.40
4908G-L3(config-if)#encapsulation isl 40
4908G-L3(config-if)#bridge-group 40
4908G-L3(config)#interface port-channel 2.1
4908G-L3(config-if)#encapsulation isl 1
4908G-L3(config-if)#bridge-group 1
4908G-L3(config)#interface port-channel 2.10
4908G-L3(config-if)#encapsulation isl 10
4908G-L3(config-if)#bridge-group 10
4908G-L3(config)#interface port-channel 2.20
4908G-L3(config-if)#encapsulation isl 20
4908G-L3(config-if)#bridge-group 20
4908G-L3(config)#interface port-channel 2.30
4908G-L3(config-if)#encapsulation isl 30
4908G-L3(config-if)#bridge-group 30
4908G-L3(config)#interface port-channel 2.40
4908G-L3(config-if)#encapsulation isl 40
4908G-L3(config-if)#bridge-group 40
4908G-L3(config)#interface gig 5
4908G-L3(config-if)#no shutdown
4908G-L3(config-if)#exit
4908G-L3(config)#interface gig 5.1
4908G-L3(config-if)#encapsulation isl 1
4908G-L3(config-if)#bridge-group 1
4908G-L3(config-if)#exit
4908G-L3(config)# interface gig 5.20
4908G-L3(config-if)#encapsulation isl 20
4908G-L3(config-if)#bridge-group 20
4908G-L3(config-if)#exit
4908G-L3(config)# interface gig 5.30
4908G-L3(config-if)#encapsulation isl 30
4908G-L3(config-if)#bridge-group 30
4908G-L3(config-if)#exit
4908G-L3(config)# interface gig 5.40
4908G-L3(config-if)#encapsulation isl 40
4908G-L3(config-if)#bridge-group 40
encapsulation isl vlan 命令在這個(gè)接口上接收VLAN
3512xl-switch01#configure terminal
3512xl-switch01(config)#interface gig 0/1
3512xl-switch01(config-if)#switchport mode trunk
3512xl-switch01#configure terminal
3512xl-switch01(config)#interface fastethernet0/1
3512xl-switch01(config-if)#switchport access vlan 10
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/2
3512xl-switch01(config-if)#switchport access vlan 10
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/3
3512xl-switch01(config)#switchport access vlan 10
3512xl-switch01(config)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/4
3512xl-switch01(config-if)#switchport access vlan 20
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/5
3512xl-switch01(config-if)#switchport access vlan 20
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/6
3512xl-switch01(config-if)#switchport access vlan 20
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/7
3512xl-switch01(config-if)#switchport access vlan 30
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/8
3512xl-switch01(config-if)#switchport access vlan 30
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/9
3512xl-switch01(config-if)#switchport access vlan 30
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/10
3512xl-switch01(config-if)#switchport access vlan 40
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/11
3512xl-switch01(config-if)#switchport access vlan 40
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface fastethernet0/12
3512xl-switch01(config-if)#switchport access vlan 40
3512xl-switch01(config-if)#spanning-tree portfast
3512xl-switch01(config-if)#exit
3512xl-switch01(config)#interface gig 0/2
3512xl-switch01(config-if)#switchport mode trunk
3512xl-switch01#configure terminal
3512xl-switch02(config)#interface gig 0/1
3512xl-switch02(config-if)#switchport mode trunk
3512xl-switch02#configure terminal
3512xl-switch02(config)#interface fastethernet0/1
3512xl-switch02(config-if)#switchport access vlan 10
3512xl-switch02(config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/2
3512xl-switch02(config-if)#switchport access vlan 10
3512xl-switch02(config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/3
3512xl-switch02(config)#switchport access vlan 10
3512xl-switch02(config)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/4
3512xl-switch02(config-if)#switchport access vlan 20
3512xl-switch02config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/5
3512xl-switch02(config-if)#switchport access vlan 20
3512xl-switch02(config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/6
3512xl-switch02(config-if)#switchport access vlan 20
3512xl-switch02(config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/7
3512xl-switch02(config-if)#switchport access vlan 30
3512xl-switch02(config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/8
3512xl-switch02(config-if)#switchport access vlan 30
3512xl-switch02(config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/9
3512xl-switch02(config-if)#switchport access vlan 30
3512xl-switch02(config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/10
3512xl-switch02(config-if)#switchport access vlan 40
3512xl-switch02(config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/11
3512xl-switch02(config-if)#switchport access vlan 40
3512xl-switch02(config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface fastethernet0/12
3512xl-switch02(config-if)#switchport access vlan 40
3512xl-switch02(config-if)#spanning-tree portfast
3512xl-switch02(config-if)#exit
3512xl-switch02(config)#interface gig 0/2
3512xl-switch02(config-if)#switchport mode trunk
3512xl-switch03#configure terminal
3512xl-switch03(config)#interface gig 0/1
3512xl-switch03(config-if)#switchport mode trunk
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/2
3512xl-switch03(config-if)#switchport access vlan 10
3512xl-switch03config-if)#spanning-tree portfast
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/3
3512xl-switch03(config)#switchport access vlan 10
3512xl-switch03(config)#spanning-tree portfast
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/4
3512xl-switch03(config-if)#switchport access vlan 20
3512xl-switch03(config-if)#spanning-tree portfast
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/5
3512xl-switch03(config-if)#switchport access vlan 20
3512xl-switch03(config-if)#spanning-tree portfast
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/6
3512xl-switch03(config-if)#switchport access vlan 20
3512xl-switch03(config-if)#spanning-tree portfast
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/7
3512xl-switch03(config-if)#switchport access vlan 30
3512xl-switch03(config-if)#spanning-tree portfast
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/8
3512xl-switch03(config-if)#switchport access vlan 30
3512xl-switch03(config-if)#spanning-tree portfast
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/9
3512xl-switch03(config-if)#switchport access vlan 30
3512xl-switch03(config-if)#spanning-tree portfast
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/10
3512xl-switch03(config-if)#switchport access vlan 40
3512xl-switch03(config-if)#spanning-tree portfast
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/11
3512xl-switch03(config-if)#switchport access vlan 40
3512xl-switch03(config-if)#spanning-tree portfast
3512xl-switch03(config-if)#exit
3512xl-switch03(config)#interface fastethernet0/12
3512xl-switch03(config-if)#switchport access vlan 40
3512xl-switch03(config-if)#spanning-tree portfast
3512xl-switch03(config-if)#exit
上傳的圖像
掃碼關(guān)注5G通信官方公眾號(hào),免費(fèi)領(lǐng)取以下5G精品資料
  • 1、回復(fù)“YD5GAI”免費(fèi)領(lǐng)取《中國移動(dòng):5G網(wǎng)絡(luò)AI應(yīng)用典型場景技術(shù)解決方案白皮書
  • 2、回復(fù)“5G6G”免費(fèi)領(lǐng)取《5G_6G毫米波測試技術(shù)白皮書-2022_03-21
  • 3、回復(fù)“YD6G”免費(fèi)領(lǐng)取《中國移動(dòng):6G至簡無線接入網(wǎng)白皮書
  • 4、回復(fù)“LTBPS”免費(fèi)領(lǐng)取《《中國聯(lián)通5G終端白皮書》
  • 5、回復(fù)“ZGDX”免費(fèi)領(lǐng)取《中國電信5G NTN技術(shù)白皮書
  • 6、回復(fù)“TXSB”免費(fèi)領(lǐng)取《通信設(shè)備安裝工程施工工藝圖解
  • 7、回復(fù)“YDSL”免費(fèi)領(lǐng)取《中國移動(dòng)算力并網(wǎng)白皮書
  • 8、回復(fù)“5GX3”免費(fèi)領(lǐng)取《 R16 23501-g60 5G的系統(tǒng)架構(gòu)1
  • 對(duì)本帖內(nèi)容的看法? 我要點(diǎn)評(píng)





    各種信令流程精品資料全打盡——大集合
    http://gg1fic3.cn/bbs/viewthread.php?tid=180615
    經(jīng)典----掉話問題分析全集
    http://gg1fic3.cn/bbs/viewthread.php?tid=175886
    ITU-T國際標(biāo)準(zhǔn)系列:A-Z
    http://gg1fic3.cn/bbs/thread-181415-1-1.html
    通信初學(xué)者寶典集--GSM基礎(chǔ)培訓(xùn)教材集
    http://gg1fic3.cn/bbs/viewthread.php?tid=177108
     
    [充值威望,立即自動(dòng)到帳] [VIP貴賓權(quán)限+威望套餐] 另有大量優(yōu)惠贈(zèng)送活動(dòng),請(qǐng)光臨充值中心
    充值擁有大量的威望和最高的下載權(quán)限,下載站內(nèi)資料無憂
    jzl860501
    初級(jí)會(huì)員



     發(fā)短消息    關(guān)注Ta 

    積分 362
    帖子 72
    威望 3046 個(gè)
    禮品券 0 個(gè)
    專家指數(shù) 2
    注冊(cè) 2010-2-25
    專業(yè)方向  網(wǎng)絡(luò)優(yōu)化
    來自 湖北
    回答問題數(shù) 0
    回答被采納數(shù) 0
    回答采納率 0%
     
    發(fā)表于 2010-04-08 21:19:30  QQ
    看不懂什么東東 ~!~

    對(duì)本帖內(nèi)容的看法? 我要點(diǎn)評(píng)





    人生在世,事業(yè)為重;一息尚存,絕不松勁~!~
     
    [立即成為VIP會(huì)員,百萬通信專業(yè)資料立即下載,支付寶、微信付款,簡單、快速!]
    水庫移民
    銀牌會(huì)員
    鎵嬫満鍙風(fēng)爜宸查獙璇? style=


     發(fā)短消息    關(guān)注Ta 

    積分 2996
    帖子 597
    威望 701 個(gè)
    禮品券 8 個(gè)
    專家指數(shù) 11
    注冊(cè) 2009-8-31
    專業(yè)方向  通信
    回答問題數(shù) 0
    回答被采納數(shù) 0
    回答采納率 0%
     
    發(fā)表于 2010-04-08 21:55:02 
    路過學(xué)習(xí)一下

    對(duì)本帖內(nèi)容的看法? 我要點(diǎn)評(píng)

     
    最新通信職位:廣東通信人才網(wǎng) | 北京通信人才網(wǎng) | 上海通信人才網(wǎng) | 南京通信人才網(wǎng) | 西安通信人才網(wǎng) | 重慶通信人才網(wǎng) | 中國通信人才網(wǎng)
    guojimilan11
    初級(jí)會(huì)員



     發(fā)短消息    關(guān)注Ta 

    積分 370
    帖子 64
    威望 114 個(gè)
    禮品券 0 個(gè)
    專家指數(shù) 0
    注冊(cè) 2009-2-26
    專業(yè)方向  信息工程及控制
    回答問題數(shù) 0
    回答被采納數(shù) 0
    回答采納率 0%
     
    發(fā)表于 2010-04-10 14:27:28 
    :lol :lol

    共獲得 1 次點(diǎn)評(píng) 我要點(diǎn)評(píng)

    • kulin 威望 -10 個(gè)
      · 惡意灌水,警告 詳細(xì).. 發(fā)表與:2010-4-13 09:54:31
     
    熱點(diǎn): 通信招聘職位 | 網(wǎng)絡(luò)優(yōu)化全集 | WCDMA精品 | TD-SCDMA學(xué)習(xí)資料 | EVDO | MGW媒體網(wǎng)關(guān)資料

    快速回復(fù)主題    
    標(biāo)題
    內(nèi)容
     上傳資料請(qǐng)點(diǎn)左側(cè)【添加附件】

    當(dāng)前時(shí)區(qū) GMT+8, 現(xiàn)在時(shí)間是 2025-01-23 03:11:07
    渝ICP備11001752號(hào)  Copyright @ 2006-2016 mscbsc.com  本站統(tǒng)一服務(wù)郵箱:mscbsc@163.com

    Processed in 0.556449 second(s), 20 queries , Gzip enabled
    TOP
    清除 Cookies - 聯(lián)系我們 - 移動(dòng)通信網(wǎng) - 移動(dòng)通信論壇 - 通信招聘網(wǎng) - Archiver