Sponsored Content
Operating Systems AIX VIOS requirement for FC and ethernet Post 303043026 by zxmaus on Thursday 16th of January 2020 01:59:09 AM
Old 01-16-2020
On the VIOS, don't allocate an IP address to the adapter
configure the SEA, then create virtual adapter on the vios and add the IP to the virtual adapter.
For the fibre, are you saying you are booting the VIOS from SAN? No internal disks on the frame that you could use instead?
How many client VMs are you going to serve with the VIOS - will you have another VIOS on the same frame for redundancy ?
 

8 More Discussions You Might Find Interesting

1. AIX

SPOT requirement

Hey May be a dumb question Can I use a SPOT which is at 5.3 TL6 to boot an LPAR (with 5.3 TL8) in to maintenance mode? Will it work ? Is it mandatory that SPOT should be of same or higher version in such case? Bala (1 Reply)
Discussion started by: balaji_prk
1 Replies

2. Shell Programming and Scripting

Requirement

I am trying to script and came up with a conclusion that I need a do while loop in my statement. I am stuck with the do while syntax. I need to use it alongwith the if then else statement. Can I use it is a big question? I actually need to get all the files that are there from within run_dt to... (1 Reply)
Discussion started by: aronmelon
1 Replies

3. Shell Programming and Scripting

URGENT REQUIREMENT

1.Write an automated shell program(s) that can create, monitor the log files and report the issues for matching pattern. (i) Conditions for creating log files. Log file is created with date (example 2010_03_27.log). If the log file size is 10 Mb for a particular day then automatically the log... (3 Replies)
Discussion started by: praveen12
3 Replies

4. AIX

vio server ethernet to vio client ethernet(concepts confusing)

Hi In the vio server when I do # lsattr -El hdisk*, I get a PVID. The same PVID is also seen when I put the lspv command on the vio client partition. This way Im able to confirm the lun using the PVID. Similarly how does the vio client partition gets the virtual ethernet scsi client adapter... (1 Reply)
Discussion started by: newtoaixos
1 Replies

5. 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

6. AIX

AIX VIOS IVM Ethernet problem

Hi All, I have a p520 box running 3 LPARs, 1 x VIOS, 1 x AIX 6.1 and 1 x AIX 7.1 and no HMC, all configuration is performed via VIOS/IVM Until recently the box did not have the AIX7.1 LPAR and everything was fine with the box. We needed to use AIX 7.1 for a new project, so I created a... (11 Replies)
Discussion started by: KevB
11 Replies

7. Shell Programming and Scripting

UNIX - requirement

Hi All, I have a source file with data Name ~ Groups Muni~abc,was,USA_ax,123 Chaitanya~USA_12,was Balaji~123,xyz,was Ramu~123,xyz From the second column i want to extract only the groups that matches the pattern 'USA_%' or if the group = 'was', and ignore any other columns. ... (8 Replies)
Discussion started by: morbid_angel
8 Replies

8. UNIX for Dummies Questions & Answers

Script requirement

Please help in creating script for below requirement. I will be running 1 command and will get below entries in a text file say file44.txt ******************************* DFDL1005 06:30 00:05 ABFL2003 10/22 01:10 CFTL1256 10/24 00:10 10/25 09:20 PM ******************************** .... (3 Replies)
Discussion started by: Vinay_3308
3 Replies
mfa(7)							 Miscellaneous Information Manual						    mfa(7)

NAME
mfa - DEMFA FDDI Network Interface SYNOPSIS
config_driver mfa DESCRIPTION
The mfa interface is a high speed XMI adapter to a 100 Mbit/second Fiber Distributed Data Interface (FDDI) timed token ring network adapter. The mfa interface allows the host system to be an FDDI single attachment station. The host's Internet address is specified at boot time with an SIOCSIFADDR ioctl. The mfa interface employs the address resolution protocol described in arp(7) to map dynamically between Internet and FDDI addresses on the local network. The maximum frame size for the mfa interface is 4500 bytes, which is substantially larger that the 1500 bytes maximum packet size of the Ethernet interfaces. The mfa interface does not support the BSD trailer encapsulation, which is specific to the VAX architecture. The SIOCRPHYSADDR ioctl can be used to read the physical address of the DEMFA adapter. The physical address of the DEMFA adapter can be changed by use of the SIOCSPHYSADDR ioctl. The SIOCADDMULTI and SIOCDELMULTI ioctls can be used to add or delete multicast addresses. The DEMFA supports up to 15 multicast addresses. The SIOCRDCTRS ioctl can be used to read the FDDI driver counters. The DEMFA adapter status and characteristics can also be read through this ioctl by providing a FDDISTATUS flag . The argument to this ioctl is a pointer to a counter or status structure, ctrreq, found in <net/if.h>. The SIOCENABLBACK and SIOCDISABLBACK ioctls can be used to enable and disable the interface loopback mode, respectively. The SIOCIFRESET ioctl can be used to reset the adapter. EXAMPLES
To obtain the physical address of the adapter, use the SIOCRPHYSADDR ioctl as in the following program example: #include <stdio.h> /* standard I/O */ #include <errno.h> /* error numbers */ #include <sys/socket.h> /* socket definitions */ #include <sys/ioctl.h> /* ioctls */ #include <net/if.h> /* generic interface structures */ main() { int s,i; static struct ifdevea devea; /* Get a socket */ s = socket(AF_INET,SOCK_DGRAM,0); if (s < 0) { perror("socket"); exit(1); } strcpy(devea.ifr_name,"mfa0"); if (ioctl(s,SIOCRPHYSADDR,&devea) < 0) { perror(&devea.ifr_name[0]); exit(1); } printf("Address is "); for (i = 0; i < 6; i++) printf("%X ", devea.default_pa[i] & 0xff); printf(" "); close(s); } To reset the adapter, use the SIOCIFRESET ioctl as in the following program example: #include <stdio.h> /* standard I/O */ #include <errno.h> /* error numbers */ #include <sys/socket.h> /* socket definitions */ #include <sys/ioctl.h> /* ioctls */ #include <net/if.h> /* generic interface structures */ main() { int s; struct ifreq data; /* Get a socket */ s = socket(AF_INET,SOCK_DGRAM,0); if (s < 0) { perror("socket"); exit(1); } strcpy(data.ifr_name,"mfa0"); if (ioctl(s,SIOCIFRESET,&data) < 0) { perror("SIOCIFRESET:"); exit(1); } close(s); } ERRORS
Diagnostic error messages contain information provided by the mfa driver. For example: The DEMFA adapter did not pass the power-up selftest during autoconfiguration. The DEMFA is unable to allocate system memory or cluster mbufs for device initialization. The DEMFA cannot transition to the initialized state. An interrupt has been received with no packets found. An internal command to the device has failed to complete on time. An internal command to the device has returned an error. The DEMFA has received an unknown type of unsolicited interrupt about the FDDI ring state. The DEMFA has received an unsolicited interrupt, the FDDI ring state has been changed. The DEMFA was unable to change FDDI characteristics and restart. An attempt was made to add more than 15 multicast addresses to the device. The DEMFA has failed internal self test during a reset operation. The DEMFA has failed to re-initialize after a reset operation. The DEMFA has encountered a hard error which should cause the device to reset. RELATED INFORMATION
netstat(1), arp(7), inet(7), intro(7), fddi_config(8) delim off mfa(7)
All times are GMT -4. The time now is 01:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy