Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

qos on cisco 1800 series and 3g WAN connection (ISP router)

Status
Not open for further replies.

lohelle

Technical User
Mar 25, 2006
36
0
0
NO
lets say I have the following setup:
skissec1811.gif


This is a Cisco 1811 router with 2 FastEthernet router ports and a 8-port switch (layer2)

I want the following:

traffic from PC 1 should get at least 80% percent of the capacity of the 3g-router when both PC's are downloading. RDP traffic (tcp 3389) should have at least 80% of all traffic when PC1 uses a remote desktop connection.

So when PC1 is downloading something (ftp) and at the same time starts a RDP connection, at least 80 percent of the bandwidth should be available (if needed) to rdp traffic

I think my main problem is that the Cisco router do not know how fast the internet connection on the 3g router is (speed is not stable. 100 kbit/s to 350 kbit/s).

some config (simplified)

fastethernet 0 (connecting to 3g-router)
ip address 192.168.0.1 255.255.255.0

fastethernet 5 (PC1)
switchport access vlan 2

fastethernet 8 (PC 2)
switchport access vlan 3

interface vlan 2
ip address 10.0.2.1 255.255.255.0

interface vlan 3
ip address 10.0.3.1 255.255.255.0

ip route 0.0.0.0 0.0.0.0 192.168.0.2 (default route --> 3g-router)


Can any of you please give me a hint for correct QOS config? Remember that PC2 should get more than 20% of the total capacity if PC1 do not need it, so policing of PC2 is not a solution.
 
Sir, You may try this

ip access-list extended PC2-TRAFFIC
permit tcp any host 10.0.3.1
ip access-list extended RDP-TO-PC1
permit tcp any eq 3389 host 10.0.2.1


class-map match-all PC2
match access-group name PC2-TRAFFIC
class-map match-all PC1
match access-group name RDP-TO-PC1



policy-map CBWFQ
class PC1
bandwidth percent 60
class PC2
bandwidth percent 15



interface FastEthernet0/0
description CONNECTED-TO-3G
service-policy output CBWFQ


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top