1樓:神魔大陸阿扯
預設埠是自動適應的,埠和終端之間進行速率雙工協商,如果手工指定則在埠下輸入命令:sw3750#conf t
sw3750(config)#int f0/1 (填寫實際的埠號)sw3750(config-if)#speed 100(速率即設定為100m)
sw3750(config-if)#duplex full(設定全雙工)
cisco交換機的埠設定使用全雙工和速率為100m怎麼做? 10
2樓:匿名使用者
switch(config-if)#int f0/1switch(config-if)#du
switch(config-if)#duplex full(全bai雙du
工)zhi
daoswitch(config-if)#speed 100 (速回率答為100m)
switch(config-if)#
cisco3750交換機不做埠設定,為什麼會100m會變成10m,有什麼原因會變成?
3樓:匿名使用者
3750上埠沒有配置,說明速率是選擇自動協商模式,有如下幾種可能:1、對端為10m埠2、對端為100m,對端介面設定為強制模式也有可能出現這種情況
4樓:匿名使用者
cisco裝置的普通乙太網介面預設配置是duplex auto和speed auto,它會自動協商介面的雙工和速率,如果對端是個10m埠,或者對端將埠速率強制為10m,那麼你的介面也會自動協商成10m。如果兩邊的速率不一至,介面是無法協商起來的。
5樓:匿名使用者
那要看你對端,裝置或者網絡卡是多少mb的,一般來說,是高頻寬去匹配低頻寬,
請問cisco2960g如何配置埠速率呀?
6樓:網管愛好者
c2950(config-if)#
inte***ce fastether***0/1 /進入介面f0/1子配置模式 inte***ce ether***0 /進入乙太網口0子配置模式 no shutdown /啟用介面
speed ? /檢視speed命令的子命令speed 100 /設定該埠速率為100mb/sdulplex full/half/auto /設定該埠為全雙工description to_pc1 /設定該埠描述為to_pc1show inte***ce fastether*** 0/1 /檢視埠0/1的配置結果
show inte***ce fastether*** 0/1 status /檢視埠0/1的狀態
7樓:匿名使用者
1、在交換機上啟動qos
switch(config)#mls qos //在交換機上啟動qos
2、分別定義pc1(10.10.1.1)和pc2(10.10.2.1)訪問控制列表
switch(config)#access-list 10 permit 10.10.1.0 0.0.0.255 //控制pc1上行流量
switch(config)#access-list 100 permit any 10.10.1.0 0.0.0.255 //控制pc1下行流量
switch(config)#access-list 11 permit 10.10.2.0 0.0.0.255 //控制pc2上行流量
switch(config)#access-list 111 permit any 10.10.2.0 0.0.0.255 //控制pc2下行流量
3、定義類,並和上面定義的訪問控制列表繫結
switch(config)# class-map user1-up //定義pc1上行的類,並繫結訪問列表10
switch(config-cmap)# match access-group 10
switch(config-cmap)# exit
switch(config)# class-map user2-up
switch(config-cmap)# match access-group 11 //定義pc2上行的類,並繫結訪問列表10
switch(config-cmap)# exit
switch(config)# class-map user1-down
switch(config-cmap)# match access-group 100 //定義pc1下行的類,並繫結訪問列表100
switch(config-cmap)# exit
switch(config)# class-map user2-down
switch(config-cmap)# match access-group 111 //定義pc2下行的類,並繫結訪問列表111
switch(config-cmap)# exit
4、定義策略,把上面定義的類繫結到該策略
switch(config)# policy-map user1-up //定義pc1上行的速率為1m
switch(config-pmap)# class user1-up
switch(config-pmap-c)# trust dscp
switch(config-pmap-c)# police 1024000 1024000 exceed-action drop
switch(config)# policy-map user2-up //定義pc2上行的速率為2m
switch(config-pmap)# class user2-up
switch(config-pmap-c)# trust dscp
switch(config-pmap-c)# police 2048000 1024000 exceed-action drop
switch(config)# policy-map user-down
switch(config-pmap)# class user1-down
switch(config-pmap-c)# trust dscp
switch(config-pmap-c)# police 1024000 1024000 exceed-action drop
switch(config-pmap-c)# exit
switch(config-pmap)# class user2-down
switch(config-pmap-c)# trust dscp
switch(config-pmap-c)# police 2048000 1024000 exceed-action drop
switch(config-pmap-c)# exit
5、在介面上運用策略
switch(config)# inte***ce f0/1
switch(config-if)# service-policy input user1-up
switch(config)# inte***ce f0/2
switch(config-if)# service-policy input user2-up
switch(config)# inte***ce g0/1
switch(config-if)# service-policy input user-down
在路由器的配置介面裡,進入介面配置模式(config-if),裡面可以使用speed 100這樣的命令來指定介面速率
8樓:匿名使用者
在路由器的配置介面裡,進入介面配置模式(config-if),裡面可以使用speed 100這樣的命令來指定介面速率。
9樓:匿名使用者
2960 好像是新出的交換機 查命令上cisco**查 要啥有啥
cisco交換機如何將乙個埠設定成10m全雙工模式?求高人
10樓:用著追她
1、開啟cisco模擬器---選擇交換機s2960、直連線、伺服器像如圖連線起來。
2、選擇交換機switch0進行配置----進入特權模式,將fa0/1和fa0/2埠模式配置成trunk。
3、將fa0/1和fa0/2加入鏈路組1並開啟----按照目標主機位址ip資料分發來實現負荷平衡----通過show etherchannel summary來檢視聚合口配置情況。
4、按照交換機switch0的配置,配置switch1----可以看到剛才block的埠變綠,表示已經開通。
5、將pc0 ip配置為192.168.1.
2子網掩碼為255.255.255.
0,pc1 ip配置為192.168.1.
3子網掩碼為255.255.255.
0---pc0 ping pc1,pc1 ping pc0都可以ping通,即完成聚合口的配置。
注意事項:
隨著通訊業的發展以及國民經濟資訊化的推進,網路交換機市場呈穩步上公升態勢。它具有價效比高、高度靈活、相對簡單和易於實現等特點。乙太網技術已成為當今最重要的一種區域網組網技術,網路交換機也就成為了最普及的交換機。
11樓:匿名使用者
以將埠0/1配置
為10m全雙工為例:
交換機名(config)# inte***ce fastether*** 0/1 /*進入介面0/1的配置模式
交換機名(config-if)# speed 10 /*設定該埠的速率為10mb/s
交換機名(config-if)# duplex full /*設定該埠為全雙工
交換機名(config-if)# end /*退回到特權模式
交換機名# show inte***ce fastether*** 0/1 /*查詢埠0/1的配置結果
juniper的沒用過,可以查手冊,設定埠速度都是很簡單的命令了.
Cisco3750交換機如何修改vlan中的的dhcp下的d
人家就問你dhcp,一樓的說的太多了吧!enconft servicedhcp 啟動dhcp服務 ipdhcppingpacket5 定義在分發ip的時候先ping幾個包探測 ipdhcppool hehe 定義位址池名稱 work 192.168.1.0 定義位址池的網段 default rout...
rs485介面是什麼樣子的,RS485介面是什麼樣子的?
下圖方框區域就是rs485介面的樣子。rs 485又名tia 485 a,ansi tia eia 485或tia eia 485。rs485是乙個定義平衡數字多點系統中的驅動器和接收器的電氣特性的標準,該標準由電信行業協會和電子工業聯盟定義。在要求通訊距離為幾十公尺到上千公尺時,廣泛採用rs 48...
PS 2介面是什麼意思,什麼是PS 2介面
ps 2介面是目前最常見的滑鼠介面,最初是ibm公司的專利,俗稱 小口 這是一種滑鼠和鍵盤的專用介面,是一種6針的圓型介面。但滑鼠只使用其中的4針傳輸資料和供電,其餘2個為空腳。ps 2介面的傳輸速率比com介面稍快一些,而且是atx主機板的標準介面,是目前應用最為廣泛的滑鼠介面之一,但仍然不能使高...