Welcome to GeekyFacts
AIX Networking Tips Print E-mail
Written by geekyB   
Thursday, 18 December 2008 17:21

This document has some AIX networking tips and commands.

  • List all network interface cards on the AIX server :  The "lsdev" command displays devices in the system and their characteristics. Use the below command to just list the NIC.

bash-3.00# lsdev | grep -i ether | grep -i Available
en0        Available 03-08         Standard Ethernet Network Interface
bash-3.00#

  • Check network interface speed and duplex settings :  "entstat" command shows the details of the interface.

bash-3.00# entstat -d ent0 | grep 'Media Speed Running:'
Media Speed Running: 100 Mbps Full Duplex
bash-3.00#

Last Updated on Monday, 22 December 2008 08:36
Read more...
 
Linux network bonding : howto Print E-mail
Written by geekyB   
Wednesday, 17 December 2008 05:14

What is bonding?

 

Linux networking allows you to combine together or bind together multiple network interfaces into a single interface. This bond interface can be used for interface failover purposes or link aggregation. This GeekyFacts document shows you how to create network bonding in Linux.  We have tested this on Redhat Enterprise Linux & CentOS.

 

The bonding module:

 

Most of the Linux variants now already has the bonding module available with it. If not you can download it.  Redhat & CentOS bonding supports 7 possible "modes" for bonded interfaces. These modes determine the way in which traffic sent out of the bonded interface is actually dispersed over the real interfaces. Modes 0, 1, and 2 are by far the most commonly used among them. We have used mode “1” – that is “active-backup” failover configuration.

Last Updated on Monday, 22 December 2008 08:37
Read more...
 
LDOM(1.0.2) quick setup guide Print E-mail
Written by geekyS   
Monday, 15 December 2008 06:39

Terminalogy

Hypervisor

Hypervisor is a thin firmware layer that provides a stable virtualized machine architecture to which an operating system can be written.
It resides in the flas PROM of the motherboard and act as interface between operating system and the hardware.
It provides a set of support fuctions to the operating system, so that the OS does not need to know intimate details of how to
perform fuctions with the hardware.

Logical Domain

Logical domain is a discrete logical grouping with its own operating system, resources and identity within a single computer system.
Each logical domain can be created, destroyed, reconfigured, and rebooted independently, without requiring a power cycle of the
server. We can run a variety of applications software in different logical domains and keep them independent of performance
and security purposes.

Last Updated on Monday, 22 December 2008 09:44
Read more...
 
How to add drivers in solaris x86 mini root Print E-mail
Written by geekyS   
Tuesday, 16 December 2008 11:04

This Geekyfacts article explains the steps to prepare Solaris x86 miniroot with additional device driver,                               

1) Copy the x86.miniroot from iso image or from jumpstart stage area to temp location

 

[root@geekyfacts]#cp /jumpstart-location/boot/x86.miniroot /tmp/x86.miniroot

 

2)Unpack the miniroot in /var/tmp/miniroot

 

[root@geekyfacts]#/boot/solaris/bin/root_archive  unpack /tmp/x86.miniroot  /var/tmp/miniroot

 

3) Install the required device drivers in /var/tmp/miniroot

 

[root@geekyfacts]#pkgadd -R /var/tmp/miniroot -d

 

4) Packing the miniroot after installing driver

Last Updated on Wednesday, 07 January 2009 15:06
Read more...
 
iSCSI in ZFS Print E-mail
Written by geekyS   
Sunday, 14 December 2008 15:09

This geekyfacts article explains the steps to create iSCSI volume in ZFS and the procedure to mount the iSCSI device in Linux and Solaris client. This article is presented under the assumption that reader has basic knowledge of ZFS terminologies and open-iscsi,


ZFS volumes can be shared as iSCSI target Lun’s over the network. All the features of ZFS filesystem like snapshot, compression, clone etc applies for ZFS volumes too. We are going to create ZFS volume, share it as iSCSI target device and mount it in Linux & Solaris client.

Creating ZFS Volume

# zfs create -s -V 1gb testpool/iscsivol

 

# zfs list
NAME USED AVAIL REFER MOUNTPOINT
testpool 12.4G 50G 30.5K /testpool
testpool/iscsivol 22.5K 50G 22.5K -
#

Last Updated on Monday, 22 December 2008 08:37
Read more...
 
<< Start < Prev 1 2 3 4 5 Next > End >>

Page 4 of 5