Sponsored Content
Operating Systems Solaris New to Solaris IPMP (conversion from Linux) Post 302956545 by javanoob on Wednesday 30th of September 2015 11:09:16 PM
Old 10-01-2015
Hi DukeNuke2,

I have read that documentation, but it doesn't says how are the load spreading done ?

Will they be using same mac address / ip address for the multiple interfaces ?

How does the system chooses the interfaces for doing the load sharing ?
Will a single file be split over 2 interfaces for sending out ?

Regards,
Alan
 

10 More Discussions You Might Find Interesting

1. Solaris

Solaris IP Multipathing (IPMP) Help

Hello All, I work for a Health care company at a local trauma hospital. I maintain a Picture Archiving and Communication System (PAC's). Basically, any medical images (X-Ray, CT, MRI, Mammo, etc) are stored digitally on the servers for viewing and dictation from diagnostic stations. I took over... (10 Replies)
Discussion started by: mainegeek
10 Replies

2. Solaris

Does Veritas Cluster work with IPMP on Solaris 10?

Does Veritas Cluster work with IPMP on Solaris 10? If anyone has set it up do you have a doc or tips? I have heard several different statements ranging from , not working at all to Yes it works! Great How? * Test and Base IPs???? * configure the MultiNICB agent ? I can give details... (1 Reply)
Discussion started by: dfezz1
1 Replies

3. Solaris

how to configure IPMP in solaris 9

Hi friends , can anyone provide me the complete steps to configure IPMP in solaris 9 or 10 provided i have two NIC card ? regards jagan (4 Replies)
Discussion started by: jaganblore
4 Replies

4. Shell Programming and Scripting

Linux to ansi pc conversion

Hi All, I checked the old posts here. But could not find a solution for my question. I have a file created by one application in HP-UX. My client wants it to be converted into ANSI PC version. I have heard about unixtodos and have worked with it also. But I am totally unaware of of this ANSI... (0 Replies)
Discussion started by: Tuxidow
0 Replies

5. Solaris

Solaris IPMP

Can any one please explain me the concept behind IPMP in solaris clustering.Basic explanation would be really appreciated... Thanks in Advance vks (2 Replies)
Discussion started by: vks47
2 Replies

6. Solaris

Link Based IPMP on Shared IP Solaris Zone

Hi, This may have already been raised previously so sorry for the duplication. What I want to achieve is have a physical server using link based IPMP setup in the global zone (not problem doing that) and then create a zone set as Shared-IP so when the servers NIC has an issue the IP will... (0 Replies)
Discussion started by: giles.cardew
0 Replies

7. Solaris

Solaris 10 branded zone with IPMP

All. I am trying to create a 10 branded zone on a Sol 11.1 T5. The Global is using IPMP...so aggregating is out of the question. Has anyone successfully created a branded zone with IPMP? If they have can you please show me the steps you took to get this to run. Thanks (4 Replies)
Discussion started by: aeroforce
4 Replies

8. Solaris

IPMP over aggregate in Solaris 11

hi all, i start with solaris 11 and i am disapointed by the change on ip managing. i want to set a ipmp over tow aggregate but i dont find any doc and i am lost with the new commande switch1 net0 aggregate1 | net1 aggregate1 |-----| |... (1 Reply)
Discussion started by: sylvain
1 Replies

9. Solaris

Solaris 10 IPMP - failback=no

Hi all, Just a few questions -> Is an "OFFLINE" interface going back to "ONLINE" consider as a failback by IPMP ? I have "FAILBACK=no" in my /etc/default/mpathd; however when i do the following (igb0 and igb7 are in the same ipmp link based group) q1) why does "if_mpadm -r igb7" cause... (0 Replies)
Discussion started by: javanoob
0 Replies

10. Solaris

IPMP group failed on Solaris 9

Hi, I have Solaris-9 server, V240. I got alert that one of the interface on IPMP configuration, is failed. Found that two IPs (192.168.120.32 and 192.168.120.35) are not pingable from this server. These two IPs were plumbed on another server and that is decommissioned now. That is the reason,... (5 Replies)
Discussion started by: solaris_1977
5 Replies
IFRENAME(8)						     Linux Programmer's Manual						       IFRENAME(8)

NAME
ifrename - rename network interfaces based on various static criteria SYNOPSIS
ifrename [-c configfile] [-p] [-d] [-u] [-v] [-V] [-D] [-C] ifrename [-c configfile] [-i interface] [-n newname] DESCRIPTION
Ifrename is a tool allowing you to assign a consistent name to each of your network interface. By default, interface names are dynamic, and each network interface is assigned the first available name (eth0, eth1...). The order net- work interfaces are created may vary. For built-in interfaces, the kernel boot time enumeration may vary. For removable interface, the user may plug them in any order. Ifrename allow the user to decide what name a network interface will have. Ifrename can use a variety of selectors to specify how inter- face names match the network interfaces on the system, the most common selector is the interface MAC address. Ifrename must be run before interfaces are brought up, which is why it's mostly useful in various scripts (init, hotplug) but is seldom used directly by the user. By default, ifrename renames all present system interfaces using mappings defined in /etc/iftab. PARAMETERS
-c configfile Set the configuration file to be used (by default /etc/iftab). The configuration file define the mapping between selectors and interface names, and is described in iftab(5). If configfile is "-", the configuration is read from stdin. -p Probe (load) kernel modules before renaming interfaces. By default ifrename only check interfaces already loaded, and doesn't auto- load the required kernel modules. This option enables smooth integration with system not loading modules before calling ifrename. -d Enable various Debian specific hacks. Combined with -p, only modules for interfaces specified in /etc/network/interface are loaded. -i interface Only rename the specified interface as opposed to all interfaces on the system. The new interface name is printed. -n newname When used with -i, specify the new name of the interface. The list of mappings from the configuration file is bypassed, the inter- face specified with -i is renamed directly to newname. The new name may be a wildcard containing a single '*'. When used without -i, rename interfaces by using only mappings that would rename them to newname. The new name may not be a wild- card. This use of ifrename is discouraged, because inefficient (-n without -i). All the interfaces of the system need to be pro- cessed at each invocation, therefore in most case it is not faster than just letting ifrename renaming all of them (without both -n and -i). -t Enable name takeover support. This allow interface name swapping between two or more interfaces. Takeover enable an interface to 'steal' the name of another interface. This works only with kernel 2.6.X and if the other interface is down. Consequently, this is not compatible with Hotplug. The other interface is assigned a random name, but may be renamed later with 'ifrename'. The number of takeovers is limited to avoid circular loops, and therefore some complex multi-way name swapping situations may not be fully processed. In any case, name swapping and the use of this feature is discouraged, and you are invited to choose unique and unambiguous names for your interfaces... -u Enable udev output mode. This enables proper integration of ifrename in the udev framework, udevd(8) will use ifrename to assign interface names present in /etc/iftab. In this mode the output of ifrename can be parsed directly by udevd(8) as an IMPORT action. This requires udev version 107 or later. -D Dry-run mode. Ifrename won't change any interface, it will only print new interface name, if applicable, and return. In dry-run mode, interface name wildcards are not resolved. New interface name is printed, even if it is the same as the old name. Be also aware that some selectors can only be read by root, for example those based on ethtool), and will fail silently if run by a normal user. In other words, dry-run mode under a standard user may not give the expected result. -V Verbose mode. Ifrename will display internal results of parsing its configuration file and querying the interfaces selectors. Com- bined with the dry-run option, this is a good way to debug complex configurations or trivial problems. -C Count matching interfaces. Display the number of interface matched, and return it as the exit status of ifrename. The number of interfaces matched is the number of interface on the system for which a mapping was found in the config file (which is different from the number of interface renamed). AUTHOR
Jean Tourrilhes - jt@hpl.hp.com FILES
/etc/iftab SEE ALSO
ifconfig(8), ip(8), iftab(5). wireless-tools 26 February 2007 IFRENAME(8)
All times are GMT -4. The time now is 07:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy