I am trying to apply an inbound policy map on a Fast Ethernet interface to set the dscp values of certain packets (VOIP QoS)
when I issue the: 'service-policy input "policy-name"' command the router acts like it takes the command, but when I do a show run, or a show policy-map interface fasteth0 it does not show the policy bound on to that interface.
This is a cisco 1700 router running IOS 12.1(5)T15.
I have verified that the interface is in it's default queuing mode (FIFO.)
I'm not sure where else to look, I've done a lot of searching on google and cisco and am drawing a blank.
Here are the corresponding snipps from the config:
access-list 100 permit udp any any range 16384 32000
access-list 100 permit tcp any any eq 1720
access-list 101 permit tcp any any eq 3389
access-list 102 permit tcp any any eq 80
access-list 110 permit ip any any
!
class-map voip
match access-group 100
class-map terminal-svcs
match access-group 101
class-map http
match access-group 102
class-map default
match access-group 110
exit
!
policy-map dscp_marking
class voip
set ip dscp 46
class terminal-svcs
set ip dscp 12
class http
set ip dscp 26
class default
set ip dscp 0
I am applying it to the FastEth interface witht the following command:
service-policy input dscp_marking
Any help would be appreciated.
when I issue the: 'service-policy input "policy-name"' command the router acts like it takes the command, but when I do a show run, or a show policy-map interface fasteth0 it does not show the policy bound on to that interface.
This is a cisco 1700 router running IOS 12.1(5)T15.
I have verified that the interface is in it's default queuing mode (FIFO.)
I'm not sure where else to look, I've done a lot of searching on google and cisco and am drawing a blank.
Here are the corresponding snipps from the config:
access-list 100 permit udp any any range 16384 32000
access-list 100 permit tcp any any eq 1720
access-list 101 permit tcp any any eq 3389
access-list 102 permit tcp any any eq 80
access-list 110 permit ip any any
!
class-map voip
match access-group 100
class-map terminal-svcs
match access-group 101
class-map http
match access-group 102
class-map default
match access-group 110
exit
!
policy-map dscp_marking
class voip
set ip dscp 46
class terminal-svcs
set ip dscp 12
class http
set ip dscp 26
class default
set ip dscp 0
I am applying it to the FastEth interface witht the following command:
service-policy input dscp_marking
Any help would be appreciated.