Network Best Performance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2014 11:28 PM - edited 03-04-2019 10:17 PM
Hi To All,
I'am Tony and would like to ask regarding on our branch office connected to the central office. for our branch office we have 6Mbps leased line connection traversing and as per my checking we used both routers and to end.
I would like to know if it is possible if we use layer instead of router for point A and B? and the gateway will be located on our Centarl office? since we are using leased line connection.
- Labels:
-
Other Routing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2014 02:29 AM
Disclaimer
The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.
Liability Disclaimer
In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.
Posting
It may be possible; it depends on your equipment and media. However if the WAN link is bandwidth constrained compared to your LAN, there's often benefit to routing across the link rather than using it as L2. This to avoid sending some traffic across the link, needlessly.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2014 10:08 AM
Hello, Antonio.
It's not a good idea to extend Layer2 over WAN.
At least this would lead to broadcast traffic wasting your bandwidth and you won't have an option to perform QoS on the link.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2014 05:44 PM
Heloo Mikh.
What if we implement Qos on that WAN link for protocol prioritization ? do you think it will help us since we have only 6Mbps Connection?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2014 11:06 PM
Hello, Antonio.
As far as your WAN link has much lower bandwidth than LAN, it could be overutilized in case of traffic bursts.
So, yes, QoS could be really useful.
The simplest what you could implement is shaping on the contracted CIR.
If you plan to run VoIP over the link, or need any kind of unfair traffic prioritization, than you need to define your classes and implement CBWFQ or LLQ.
Thanks.
PS: surely it's worth to configure QoS on both sides of the link.
PS2: it's also worth to ask your provider if they have any kind of QoS on the link.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2014 07:44 PM
Noted I'll study first the CBWFQ or LLQ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2014 07:45 PM
Since this is new to me can you give me some pointer on how to implement it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2014 05:13 AM
Hello, Antonio.
First of all you need to understand if you have any QoS options from your ISP (as you must be aligned to them).
Then define your applications and assign them per class.
For example, you want to have VoIP and Business class, then it will be like:
*******************
ip access-l ext VoIP_ACL
permit udp any any dscp ef
ip access-l ext BUSINESS_ACL
permit tcp any any eq 22
permit tcp any eq 22 any
permit icmp any any
...
class-map VoIP
match access-group name VoIP_ACL
class-map BUSINESS
match access-group name BUSINESS_ACL
policy-map QOS_POLICY
class VoIP
priority per 20
!policer could be configured as well to prevent Voice allocating more bandwidth
class BUSINESS
bandw per 60
random-detect
class class-default
bandw per 19
random-detect ! or use fair-queue
policy-map QOS_INTERFACE
class class-default
shape ave 5400000 108000 ! example for 6000000 link
service-policy QOS_POLICY
int Gx/x
service-policy out QOS_INTERFACE
*******************
Best regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2014 09:14 PM
Hi Mik,
Thank you for your swift response I'll test this.
