- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- WAN Routing
- >
- 3040
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2009 03:29 PM
03-16-2009 03:29 PM
3040
We have a DVPN setup which works great...
But we now want to setup a QOS or Diffserve so that Voice gets priority... maybe voice already gets priority, can anyone confirm that voice gets priority or do we have to set this up ???
If so HOW do we set this up.
3COM documentation is lamentable and their phone support was not able to even help us setup the routers to connect over DSL we did it all, but now we are a bit stumped...
Any help most appreciated...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2009 05:49 PM
03-19-2009 05:49 PM
Re: 3040
I just want to put in a simple Qos rule for voice across a VPN and all routes out and in from the internet...
This is kind of standard now and yet I cannot find anyone who can help on this...
I Really Really need this help....
THanks...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2009 10:44 PM
03-19-2009 10:44 PM
Re: 3040
The classifier is used to match the traffic to be prioritized.
The traffic behavior is the action for the classified traffic.
After creating the classifier and behavior, it is necessary to link the classifier with the behavior in a policy, and apply the policy on interface.
For example, to guarantee 640Kbps in the queue EF for the traffic from IP 10.10.10.1.
#
acl number 3001
rule 0 permit ip 10.10.10.1
#
traffic classifier Test_A operator and
if-match acl 3001
#
traffic behavior Test_A
queue ef bandwidth 640 cbs 8000
#
qos policy Example
classifier Test_A behavior Test_A
#
interface Serial0/0
qos apply policy Example outbound
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 03:27 AM
03-20-2009 03:27 AM
Re: 3040
What I want is to prioritise Voice Packets across the network and all intrfaces.
We have a DVPN working tunnel 0
IP addressing of the tunnel is 10.0.0.0
The tunnel is applied to Virtual Template 1
Interface atm2/0 has Virtual-Template1 mapped to it
So you can see we have an ADSL setup with DVPN linking 10 offices. We wish to prioritise voice across the DVPN working across tunnel 0 and also across the ADSL to and from the internet...
I do not want to have to specify ip addressing etc just prioritise voice across all interfaces (if that is easier)
Can you post a sample config here so that can be achieved ?
Thanks so much for getting back.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 10:22 AM
03-20-2009 10:22 AM
Re: 3040
RTP Example.
#
acl number 3000 match-order auto
description VoIP
rule 0 permit udp destination-port range 16384 32764
#
traffic classifier RTP_classifier operator or
if-match acl 3000
#
traffic behavior RTP_behavior
remark dscp ef
#
qos policy RTP
classifier RTP_classifier behavior RTP_behavior
#
interface atm2/0 (you can try over tunnel or VT)
qos apply policy RTP inbound
qos apply policy RTP outbound
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 11:13 AM
03-20-2009 11:13 AM
Re: 3040
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 11:49 AM
03-20-2009 11:49 AM
Re: 3040
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 12:22 PM
03-20-2009 12:22 PM
Re: 3040
RTP packets and set to EF or 46
This message was edited by pete52 on 3-21-09 @ 6:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2009 06:14 AM
03-21-2009 06:14 AM
Re: 3040
acl number 3000 match-order auto
description VoIP
rule 0 permit udp destination-port range 16384 32764
we currently have this... set... for acl 3000
acl number 3000
rule 0 permit ip
rule 1 permit udp
which is bound to the DVPN...
so..
could we use this instaed of your example...
#
acl number 3001 match-order auto
description VoIP
rule 0 permit udp
#
traffic classifier RTP_classifier operator or
if-match acl 3001
#
traffic behavior RTP_behavior
remark dscp ef
#
qos policy RTP
classifier RTP_classifier behavior RTP_behavior
#
interface atm2/0 (you can try over tunnel or VT)
qos apply policy RTP inbound
qos apply policy RTP outbound
and bind this to atm2/0 and the dvpn tunnel ??
What do you think can we do this...
also is there any need to put an acl in there I see in the command refrence it talks of using mpls-exp so I guess we don't need and acl here, however if this works than that is fine.
I don't really want to get into port specification just allow the packets through if RTP packet has the ef header...
Thanks very much for your help, this is really very useful.
This message was edited by pete52 on 3-22-09 @ 11:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2009 01:22 PM
03-23-2009 01:22 PM
Re: 3040
Sorry can you just answer that last question thanks, we currently have an acl 3000 setup to allow udp and ip packets through for our DVPN ,
so can we use another acl such as I set out in my example...
acl 3001
also I don;t want to specify ports so as again in my example can we ignor port info ??
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2009 10:01 AM
03-24-2009 10:01 AM
Re: 3040
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2009 10:25 AM
03-24-2009 10:25 AM
Re: 3040
The router looks for this doesn't it the header in the rtp packet and then prioritizes on that ?
You asked me if the type of packet was RTP and you mention it in your example...
other routers just look for the EF in the header and prioritise on this... Maybe the 3040 does not ? so we need to prioritise just on UDP port number ? That is fine if we have to.... but it would be easier if we could just look at the data packets for EF and use that....
Sorry Just trying to get a simple setup sorted out...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2009 03:04 PM
03-24-2009 03:04 PM
Re: 3040
OUr Asterisk server and all the phones already mark the RTP packets with EF / 46 so we do not need to identify these packets by port number they are already marked....
I think that is where we have misunderstood each other...
So as the packets are already marked we just need to prioritise thoose RTP packets marked with EF / 46 in the header....
Thanks,
Hoping this is where we have been talking at cross purposes...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2009 10:23 AM
03-25-2009 10:23 AM
Re: 3040
Surely taht is possible ??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2009 10:45 AM
03-25-2009 10:45 AM
Re: 3040
rule 0 permit ip source x.x.x.x 0 dscp ef
#
traffic classifier Test_A operator and
if-match acl 3000
#
traffic behavior Test_A
queue ef bandwidth 640 cbs 8000
#
qos policy Example
classifier Test_A behavior Test_A
#
interface Serial0/0
qos apply policy Example outbound
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2009 11:01 AM
03-25-2009 11:01 AM
Re: 3040
acl 3000
rule 0 permit udp source x.x.x.x 0 dscp ef
#
traffic classifier Test_A operator and
if-match acl 3000
#
traffic behavior Test_A
queue ef bandwidth 640 cbs 8000
#
qos policy Example
classifier Test_A behavior Test_A
#
interface Serial0/0
qos apply policy Example outbound
does x.x.x.x signify any ip or do we just leave that out if it is any ip address UDP souce... ?
like this...
acl 3000
rule 0 permit udp source x.x.x.x 0 dscp ef
or could we use...
acl 3000
rule 0 permit udp 0 dscp ef
or
acl 3000
rule 0 permit udp dscp ef
anyway thanks I think we nearly have it, I have 11 of these things and I just need to get this working if I can then I will be buying lots more as they work great as a router never go down and provide excellent VPN for our clients....
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2009 01:16 PM
04-20-2009 01:16 PM
Re: 3040
I need both outbound and inbound traffic to be prioritised...
acl number 3000
rule 1 permit ip source x.x.x.x 0 dscp ef
^
% Wrong parameter found at '^' position.
#
traffic classifier Test_A operator and
if-match acl 3000
#
traffic behavior Test_A
queue ef bandwidth 640 cbs 8000
#
qos policy Example
classifier Test_A behavior Test_A
#
interface Ethernet1/0
qos apply policy Example outbound
qos apply policy Example inbound
CBQ: can be enabled as output feature only
save
This message was edited by pete52 on 4-20-09 @ 1:25 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2009 12:18 PM
04-22-2009 12:18 PM
Re: 3040
#
acl number 3001 match-order auto
description VoIP
rule 2 permit udp destination-port range 16384 32764
#
traffic classifier RTP_classifier operator or
if-match acl 3001
#
traffic behavior RTP_behavior
remark dscp ef
#
qos policy RTP
classifier RTP_classifier behavior RTP_behavior
#
interface atm2/0
qos apply policy RTP inbound
qos apply policy RTP outbound
Still confused, the rtp packets are already marked but never mind this does the trick...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2009 12:07 PM
05-03-2009 12:07 PM
Re: 3040
You really seem to know these toys so i apologise for butting in on your post but having some serious issues with port forwarding on a 3040 ADSL router.
Cant seem to do it without a static ip.
Do you possible have any sample config i could take a look at?
Would be most appreciated.
Cheers,
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2009 03:43 PM
05-03-2009 03:43 PM
Re: 3040
To be honest I am very happy with the help here but 3Com's documentation is so poor I think I will just buy Zyxel routers from now on.
I have one client who has 11 of these so I have to continue to use them.
3Com is very very bad at documentation and what should be a simple configuration is neither explained well or documented properly.
When I first bought these routers I studied the documentation for 2 weeks and found it was both incorrect and the examples were useless for 99 % of installation situations.
I made a big fuss and put in a massive complaint honestly even the support people could not do the simplest things like set up the atm template for ADSL ....
Anyway people here have been very helpful...
I'll look if I have time, but post a new topic I am sure someone will help...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2009 10:04 PM
05-03-2009 10:04 PM
Re: 3040
Thanks for getting back to me.
I did consider doing the static port mapping but that would be a last resort.
I was hoping to get the port forwarding sorted out and i havent given up yet.
Seems very strange though, it is such a simple thing. 3Coms most basic home use ADSL routers do it at the click of 2 buttons.
Oh well, thanks again for your help.
Cheers,
Paul