Sponsored Content
Operating Systems AIX Configure VIOS SEA w. load sharing Post 302680969 by bakunin on Thursday 2nd of August 2012 01:43:46 PM
Old 08-02-2012
Just coming back from work: we had success and figured it out. It works.

I will post the setup with a step-by-step tomorrow, when i get back to the office (and the documentation). For now i just wanted to announce the success before falling into bed, so stay tuned.

For reference: i have a couple of p795 to work with (yes: yummy ;-)) and in each one i configure one VIOS-pair. Most of the LPARs we migrate onto these frames will be HACMP-Nodes (so that one node resides in the left and one in the right frame), but we still want partition mobility to have at least a chance to get one of the frames free, even if this means giving up redundancy temporarily.

bakunin
This User Gave Thanks to bakunin For This Post:
 

9 More Discussions You Might Find Interesting

1. IP Networking

sharing of IP address for load sharing avoiding virtual server & redirection machine

I have RedHat 9.0 installed on three of my servers (PIII - 233MHz) and want that they share a common IP address so that any request made reaches each of the servers. Can anyone suggest how should I setup my LAN. I'm new to networking in Linux so please elaborate and would be thankful for a timely... (2 Replies)
Discussion started by: Rakesh Ranjan
2 Replies

2. Shell Programming and Scripting

Need help in wrting Load Script for a Load-Resume type of load.

hi all need your help. I am wrting a script that will load data into the table. then on another load will append the data into the existing table. Regards Ankit (1 Reply)
Discussion started by: ankitgupta
1 Replies

3. AIX

VIOS SEA on LHEA doesn't work

I am trying to create a SEA on a LHEA port and it gives me error lsdev -Cc adapter: ent0 logical host ethernet port (l-hea) ent1 virtual I/O ethernet adapter mkvdev -sea ent0 -vadapter ent1 -default ent1 -defaultid 199 method error (/usr/lib/methods/cfgsea): Failed to configure SEA... (0 Replies)
Discussion started by: filosophizer
0 Replies

4. AIX

VIOS SEA Creation

Hi Guys, I'm getting the below error while trying to create a SEA adapter in VIOS $ mkvdev -sea ent0 -vadapter ent2 -default ent2 -defaultid 1 ... (4 Replies)
Discussion started by: kkeng808
4 Replies

5. AIX

How to set 4 SEA on single VIOS

Hi experts, i got a 4-port Adapter card on VIOS and would like to configure 4SEA for 4 difference segment IP client's LPAR use, first SEA succeed to be configured on ent0 but once second SEA configured, first SEA fail to be connected. Any issues i need to be concerned in order to configure 4 SEA on... (8 Replies)
Discussion started by: polar
8 Replies

6. AIX

VIOS IP address - separate vlan for vios servers ?

Hello, Lets say for simplicity that I do not use any vlan config inside my server - one lpar group use hea physical port1, another group hea physical port2. Physical port1 configured as vlan1 on external switch, physical port2 as vlan2. What is the common practice - should I isolate my vios... (0 Replies)
Discussion started by: vilius
0 Replies

7. AIX

How to configure iSCSI TOE w/ load balancing?

Sorry guys but let me start off by saying I am an AIX noob! I am running AIX 6.1 and recently purchased two iSCSI TOE cards. The plan is to connect these two cards to a Dell EqualLogic SAN and that has two volumes configured for logs and data. The point of the two cards is to do load balancing... (21 Replies)
Discussion started by: cbrinker
21 Replies

8. Shell Programming and Scripting

Checking running process status using "grep" on multiple servers in load sharing system.

Suppose i have 3 different servers say x,y and z. Im running some process say ABC and 40 instances for the same is being created. In load sharing suppose on server x, 20 instances are running server y, 10 instances are running server z, 10 instances are running. While checking the... (1 Reply)
Discussion started by: ankitknit
1 Replies

9. AIX

VIOS entstat versus seastat for SEA

Hello, I found that the packet counts given by entstat -d SEA is not the same as the total of the packet counts given by seastat -d SEA for the same interval of time. Do anyone have an explanation for the difference. We recently got a recommendation that the throughput on an SEA should not... (5 Replies)
Discussion started by: N8R
5 Replies
IEEE80211_OUTPUT(9)					   BSD Kernel Developer's Manual				       IEEE80211_OUTPUT(9)

NAME
ieee80211_output -- software 802.11 stack output functions SYNOPSIS
#include <net80211/ieee80211_var.h> int M_WME_GETAC(struct mbuf *); int M_SEQNO_GET(struct mbuf *); struct ieee80211_key * ieee80211_crypto_encap(struct ieee80211_node *, struct mbuf *); void ieee80211_process_callback(struct ieee80211_node *, struct mbuf *, int); DESCRIPTION
The net80211 layer that supports 802.11 device drivers handles most of the work required to transmit frames. Drivers usually receive fully- encapsulated 802.11 frames that have been classified and assigned a transmit priority; all that is left is to do crypto encapsulation, pre- pare any hardware-specific state, and push the packet out to the device. Outbound frames are either generated by the net80211 layer (e.g. management frames) or are passed down from upper layers through the ifnet(9) transmit queue. Data frames passed down for transmit flow through net80211 which handles aggregation, 802.11 encapsulation, and then dispatches the frames to the driver through it's transmit queue. There are two control paths by which frames reach a driver for transmit. Data packets are queued to the device's if_snd queue and the driver's if_start method is called. Other frames are passed down using the ic_raw_xmit method without queueing (unless done by the driver). The raw transmit path may include data frames from user applications that inject them through bpf(4) and NullData frames generated by net80211 to probe for idle stations (when operating as an access point). net80211 handles all state-related bookkeeping and management for the handling of data frames. Data frames are only transmit for a vap in the IEEE80211_S_RUN state; there is no need, for example, to check for frames sent down when CAC or CSA is active. Similarly, net80211 han- dles activities such as background scanning and power save mode, frames will not be sent to a driver unless it is operating on the BSS chan- nel with ``full power''. All frames passed to a driver for transmit hold a reference to a node table entry in the m_pkthdr.rcvif field. The node is associated with the frame destination. Typically it is the receiver's entry but in some situations it may be a placeholder entry or the ``next hop station'' (such as in a mesh network). In all cases the reference must be reclaimed with ieee80211_free_node() when the transmit work is completed. The rule to remember is: net80211 passes responsibility for the mbuf and ``node reference'' to the driver with each frame it hands off for transmit. PACKET CLASSIFICATION
All frames passed by net80211 for transmit are assigned a priority based on any vlan tag assigned to the receiving station and/or any Diff- serv setting in an IP or IPv6 header. If both vlan and Diffserv priority are present the higher of the two is used. If WME/WMM is being used then any ACM policy (in station mode) is also enforced. The resulting AC is attached to the mbuf and may be read back using the M_WME_GETAC() macro. PAE/EAPOL frames are tagged with an M_EAPOL mbuf flag; drivers should transmit them with care, usually by using the transmit rate for manage- ment frames. Multicast/broadcast frames are marked with the M_MCAST mbuf flag. Frames coming out of a station's power save queue and that have more frames immediately following are marked with the M_MORE_DATA mbuf flag. Such frames will be queued consecutively in the driver's if_snd queue and drivers should preserve the ordering when passing them to the device. FRAGMENTED FRAMES
The net80211 layer will fragment data frames according to the setting of iv_fragthreshold if a driver marks the IEEE80211_C_TXFRAG capabil- ity. Fragmented frames are placed in the devices transmit queue with the fragments chained together with m_nextpkt. Each frame is marked with the M_FRAG mbuf flag, and the first and last are marked with M_FIRSTFRAG and M_LASTFRAG, respectively. Drivers are expected to process all fragments or none. TRANSMIT CALLBACKS
Frames sent by net80211 may be tagged with the M_TXCB mbuf flag to indicate a callback should be done when their transmission completes. The callback is done using ieee80211_process_callback() with the last parameter set to a non-zero value if an error occurred and zero otherwise. Note net80211 understands that drivers may be incapable of determining status; a device may not report if an ACK frame is received and/or a device may queue transmit requests in its hardware and only report status on whether the frame was successfully queued. SEE ALSO
bpf(4), ieee80211(9), ifnet(9) BSD
March 29, 2010 BSD
All times are GMT -4. The time now is 02:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy