cisco交換機如何檢視實時埠速率

2021-05-05 07:57:00 字數 5628 閱讀 6985

1樓:網管愛好者

ciscoasa# conf t

ciscoasa#(config-if)#

inte***ce fastethernet0/1 /進入介面f0/1子配置模式 inte***ce ethernet0 /進入乙太網口0子配置模式 no shutdown /啟用介面

speed ? /檢視speed命令的子命令

speed 100 /設定該埠速率為100mb/s

dulplex full/half/auto /設定該埠為全雙工

description to_pc1 /設定該埠描述為to_pc1

show inte***ce fastethernet 0/1 /檢視埠0/1的配置結果

show inte***ce fastethernet 0/1 status /檢視埠0/1的狀態

ciscoasa#

iscoasa(config)# inte***ce gig

ciscoasa(config)# inte***ce gigabitethernet 0/0

ciscoasa(config-if)# spee

ciscoasa(config-if)# speed ?

inte***ce mode commands/options:

10 force 10 mbps operation

100 force 100 mbps operation

1000 force 1000 mbps operation

auto enable auto speed configuration

ciscoasa(config-if)# speed

2樓:

show proc (這個是cpu的,後面好像還有一些引數,您打問號問下吧。)

show mem (記憶體的,後面還有些引數,也打問號問)show int 埠號,如show ing g0/14006監控引數應該是一樣的,現在用得少,不記得了,希望能幫到你,像這些東西最好自己多打問號看系統提示。

3樓:祖梅稽倩

如果接的也是思科的裝置,可以通過show

cdpneighbor檢視,瞭解到接在交換機那個介面,是個什麼裝置,型號,對端介面資訊等等。

如果是其他裝置,只能查詢其mac地址和ip地址,這也是為什麼運維的時候需要在介面下使用description。

juniper ex3200交換機 怎麼檢視埠實時的流量

4樓:安徽電信網上營業廳

檢視埠流量的方法 :

下面的指令碼是一個檢視埠流量的小指令碼,分別可以檢視進入和出去的,**如下: #this is a scripts of the port's stream #cat stream #!/bin/bash

typeset in_olddif_in dif_in1 typeset out_olddif_out dif_out1

in_old=$(cat /proc/net/dev | grep eth0 | sed 's/^.*://' | awk '' ) out_old=$(cat /proc/net/dev | grep eth0 | sed 's/^.

*://' | awk '') while true do

sleep 3

dif_in=$((in_old))

dif_in1=$((dif_in * 8 / 1024 / 1024 )) dif_out=$((out_old))

dif_out1=$((dif_out * 8 / 1024 / 1024 ))

echo " instream: $ bytes outstream: $ bytes " echo "instream:

$ mbps outstream: $ mbps" echo "" done

typeset 命令用於定義區域性變數

sleep 用於延遲一段時間再執行命令,這個指令碼不用sleep也可以,只是為了多顯示幾次而已

執**況如下:./stream

instream: 3846795578 bytes outstream: 4172318801 bytes instream:

29348 mbps outstream: 31832 mbps

instream: 3846795578 bytes outstream: 4172318801 bytes instream:

29348 mbps outstream: 31832 mbps

直到手動結束這個指令碼(ctrl+c)。

5樓:匿名使用者

我有一種感想只願你能耳聞:

你曾有嬌顏豔容,我也曾盡力

以那老套的高雅方式愛你;

一切都曾那麼幸福,而我們終究

倦怠疲憊哈哈猶如那輪空洞的月亮。

現在我要起身走了,去茵納斯弗瑞

6樓:匿名使用者

monitor inte***ce x.x.x

思科交換機怎麼樣看埠流量

7樓:蕭蕭瑟瑟

show inter 介面表示形式就可以了

8樓:匿名使用者

show int f0/0 | in rate

9樓:匿名使用者

最簡單的辦法,特權模式下執行命令:show version可以得知該交換機的介面型別和每個介面型別介面的數量24 fastethernet/ieee 802.3 inte***ce(s)

2 gigabit ethernet/ieee 802.3 inte***ce(s)

就像這樣的資訊

請問cisco2960g如何配置埠速率呀?

10樓:網管愛好者

c2950(config-if)#

inte***ce fastethernet0/1 /進入介面f0/1子配置模式 inte***ce ethernet0 /進入乙太網口0子配置模式 no shutdown /啟用介面

speed ? /檢視speed命令的子命令speed 100 /設定該埠速率為100mb/sdulplex full/half/auto /設定該埠為全雙工description to_pc1 /設定該埠描述為to_pc1show inte***ce fastethernet 0/1 /檢視埠0/1的配置結果

show inte***ce fastethernet 0/1 status /檢視埠0/1的狀態

11樓:匿名使用者

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這樣的命令來指定介面速率

h3c交換機怎麼檢視對端交換機,如何檢視h3c交換機埠對應的IP

dis ndp 命令檢視 如果沒有開啟的話 需要使用ndp enable 開啟一下 如何檢視h3c交換機埠對應的ip?如何檢視h3c交換機埠對應的ip可以這樣解決 1 首先,準備一臺帶有串列埠的計算機,最好是筆記本,以便便於操作,然後準備一根一端為網口一端為串列埠的配置線,然後將電腦和交換機用串列埠...

交換機的埠怎麼看呀,思科交換機如何檢視埠

你想看什麼呢!如果純外觀上看就是1 24或48之類的數字在配置介面就需要e1 0 1這樣的了,0 1表示0號模組的1號介面ether 1 e1表示的是乙太網介面,有的還有g1什麼的,那是光纖介面 乙太網介面是百m的,光纖介面是千m的!如果交換機不是插槽式的,就看最後一個數字好了,別的不用管。具體格式...

cisco核心交換機如何配置,Cisco核心交換機如何配置

cisco核心交換機部分配置命令 全域性設定 config terminal 設定訪問使用者及密碼 username usernamepassword password 設定特權密碼 enable secret password 設定路由器名 hostname name 設定靜態路由 ip rout...