Link to home
Start Free TrialLog in
Avatar of 4ntel
4ntelFlag for Saudi Arabia

asked on

QoS configuration

have CISCO router 3800 IOS 12.4(15) T
I try to configure QoS in the router but it's not support MLS QOS

ICCSAT_HUB(config-if)#mls
ICCSAT_HUB(config-if)#mls qo
ICCSAT_HUB(config-if)#mls qos tr
ICCSAT_HUB(config-if)#mls qos ?
% Unrecognized command
ICCSAT_HUB(config-if)#mls ?
  rp  rp

ICCSAT_HUB(config-if)#mls rp ?
  ip                    enable multilayer switching for ip
  ipx                   enable multilayer switching for ipx
  management-interface  management-interface
  vlan-id               vlan-id
  vtp-domain            vlan domain name on interface

Open in new window

Avatar of bgoering
bgoering
Flag of United States of America image

Are you maybe looking for MPLS?
Avatar of 4ntel

ASKER

No its router connected to the internet and I need to configure QoS for the video conference and VOIP
Hello,

This is not the right way to activate QOS.
Try something like : (with you own bandwidth value and percent needed)

class-map match-any VOICE
 match protocol rtp audio
 match protocol h323
 match protocol rtcp
class-map match-any VIDEO
 match protocol rtp video
 match protocol cuseeme
 match protocol netshow
 match protocol rtsp
 match protocol streamwork
 match protocol vdolive

policy-map SDM-Pol-Ethernet1/0
 class VOICE
  priority percent 20
  set dscp ef
 class VIDEO
  bandwidth percent 30
  set dscp cs3

interface Ethernet1/0
 description *** Internet ***
 bandwidth 5000
 service-policy output POLICY

Nicolas
ASKER CERTIFIED SOLUTION
Avatar of nblancpain
nblancpain
Flag of France image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial