Sponsored Content
Full Discussion: LACP Policy - Which is best?
Operating Systems Solaris LACP Policy - Which is best? Post 302581220 by BG_JrAdmin on Monday 12th of December 2011 11:39:06 AM
Old 12-12-2011
LACP Policy - Which is best?

Hello,

I have these S10 boxes with LACP using the L4 policy. Does the L4 policy create a lot more overhead as opposed to using the L2?

I'm noticing that my traffic does not seem to be very well load balanced accross the NIC's, and I am wondering if the policy I'm using has anything else to do with it?

Code:
# dladm show-aggr -s

key:1           ipackets   rbytes       opackets   obytes       %ipkts  %opkts
        Total   2734381041 2922634128   734900983  5553993929
        bge0    2710911407 697000895    138651909  1529336983     99.1    18.9
        bge2    23469634   2225633233   596249074  4024656946      0.9    81.1

key:2           ipackets   rbytes       opackets   obytes       %ipkts  %opkts
        Total   722496911  4459902805   314766444  6146321371
        bge1    274264671  1433370073   255797278  3904691423     38.0    81.3
        bge3    448232240  3026532732   58969166   2241629948     62.0    18.7

 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Policy Manager

I have searched all over the SCO website and can't seem to find an answer to this error message. Has anyone seen the following error, and if so what steps do I need to take to fix it? I don't really want to reload the entire OS if I don't have to. LOGIN: ERROR- Failed to initialize policy... (1 Reply)
Discussion started by: mikeinmi
1 Replies

2. UNIX for Advanced & Expert Users

Link Aggregation and LACP

Hi there I have a requirement to provide failover to our customer boxes in case of interface / switch failure, I have been looking at Solaris Link Aggregation with LACP and I wanted to ask a question Ive seen multiple websites that say the following Does this also mean that if the... (1 Reply)
Discussion started by: hcclnoodles
1 Replies

3. IP Networking

bonding lacp and link aggregation

Hello, I am trying to get clarity on a few things and am looking for some info. In every article I have read about link aggregation and lacp, it can be used combine physical links to create 1 logical link for increased bandwidth. But what it doesn't say is if this is limited by source/dst. ... (1 Reply)
Discussion started by: jaredo
1 Replies

4. IP Networking

LACP aggregation on separates switches

Hello, I'm working on LACP architecture. I would like to know if it's possible to aggregate two links on two separate switches. Here an example I want : Aggregation of link1 and link2 to obtain a logical 2 gbit/s link. Also have redundancy, if one of them is down, the traffic goes through the... (1 Reply)
Discussion started by: jbemonet
1 Replies

5. AIX

LACP between AIX 7.1 and HP procurve switches

Hi. On a standalone AIX server, 7.1 version, I have 3 connected gigabit ethernet ports. I made an etherchannel like this : # lsattr -El ent4 adapter_names ent1,ent2 | EtherChannel Adapters True alt_addr 0x000000000000 | Alternate EtherChannel Address True auto_recovery yes | Enable... (1 Reply)
Discussion started by: stephnane
1 Replies

6. Solaris

Delete LACP in Solaris 10 10/09 s10s_u8wos_08a SPARC

My Customer has the requirement to use IPMP instead of LACP cause of giving Switch-Management to others (Outsourcing). I deleted the aggregation with And created an IPMP-Configuration: with all Entries under /etc/hosts /etc/netmasks and /etc/defaultrouter But i end up with one interface... (3 Replies)
Discussion started by: etomer_sk
3 Replies

7. Cybersecurity

Need patch policy help

I'm working on developing a patch policy for a mid-size and quickly growing company. Patches have been at the bottom of the totem pole for years. I possess the ability and care enough to straighten it out. However I'd like some others input on the best way to handle the patch policy. From when... (1 Reply)
Discussion started by: jlouki01
1 Replies

8. Red Hat

Bonding a Bond with LACP

Does anyone know if it's possible to bond two bonds together? My situation is I have two older Cisco switches that cannot carry a LACP (bond level 4) aggregated between them, but separate aggregates can be setup on the switches themselves. In order to have redundancy of two switches I would... (0 Replies)
Discussion started by: christr
0 Replies

9. Solaris

Link Aggregation without LACP

Hi, I'm not from the Solaris world and some of these things are new to me. Can someone tell me if it is possible to configure link aggregation without using LACP? I am told etherchannel was setup without LACP. (3 Replies)
Discussion started by: techy1
3 Replies
syncstat(1M)						  System Administration Commands					      syncstat(1M)

NAME
syncstat - report driver statistics from a synchronous serial link SYNOPSIS
/usr/sbin/syncstat [-c] device [interval] DESCRIPTION
The syncstat command reports the event statistics maintained by a synchronous serial device driver. The report may be a single snapshot of the accumulated totals, or a series of samples showing incremental changes. Prior to these it prints the device name being used to query a particular device driver, along with a number indicating the channel number (ppa) under control of that driver. Event statistics are maintained by a driver for each physical channel that it supports. They are initialized to zero at the time the driver module is loaded into the system, which may be either at boot time or when one of the driver's entry points is first called. The device argument is the name of the serial device as it appears in the /dev directory. For example, zsh0 specifies the first on-board serial device. The following is a breakdown of syncstat output: speed The line speed the device has been set to operate at. It is the user's responsibility to make this value correspond to the modem clocking speed when clocking is provided by the modem. ipkts The total number of input packets. opkts The total number of output packets. undrun The number of transmitter underrun errors. ovrrun The number of receiver overrun errors. abort The number of aborted received frames. crc The number of received frames with CRC errors. isize The average size (in bytes) of input pack- ets. osize The average size (in bytes) of output pack- ets. OPTIONS
-c Clear the accumulated statistics for the device specified. This may be useful when it is not desirable to unload a particu- lar driver, or when the driver is not capable of being unloaded. interval syncstat samples the statistics every interval seconds and reports incremental changes. The output reports line utiliza- tion for input and output in place of average packet sizes. These are the relationships between bytes transferred and the baud rate, expressed as percentages. The loop repeats indefinitely, with a column heading printed every twenty lines for convenience. EXAMPLES
Example 1: Sample output from the syncstat command: example# syncstat zsh0 speed ipkts opkts undrun ovrrun abort crc isize osize 9600 15716 17121 0 0 1 3 98 89 example# syncstat -c zsh0 speed ipkts opkts undrun ovrrun abort crc isize osize 9600 0 0 0 0 0 0 0 0 In the following sample output a new line of output is generated every five seconds: example# syncstat zsh0 5 ipkts opkts undrun ovrrun abort crc iutil outil 12 10 0 0 0 0 5% 4% 22 60 0 0 0 0 3% 90% 36 14 0 0 0 1 51% 2% ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ SEE ALSO
syncinit(1M), syncloop(1M), attributes(5), zsh(7D) DIAGNOSTICS
bad interval: arg The argument arg is expected to be an interval and could not be understood. device missing minor device number The name device does not end in a decimal number that can be used as a minor device number. baud rate not set The interval option is being used and the baud rate on the device is zero. This would cause a divide-by-zero error when computing the line utilization statistics. WARNINGS
Underrun, overrun, frame-abort, and CRC errors have a variety of causes. Communication protocols are typically able to handle such errors and initiate recovery of the transmission in which the error occurred. Small numbers of such errors are not a significant problem for most protocols. However, because the overhead involved in recovering from a link error can be much greater than that of normal operation, high error rates can greatly degrade overall link throughput. High error rates are often caused by problems in the link hardware, such as cables, connectors, interface electronics or telephone lines. They may also be related to excessive load on the link or the supporting sys- tem. The percentages for input and output line utilization reported when using the interval option may occasionally be reported as slightly greater than 100% because of inexact sampling times and differences in the accuracy between the system clock and the modem clock. If the percentage of use greatly exceeds 100%, or never exceeds 50%, then the baud rate set for the device probably does not reflect the speed of the modem. SunOS 5.10 9 Mar 1993 syncstat(1M)
All times are GMT -4. The time now is 08:22 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy