Pages

Thursday, June 23, 2011

RHEL Virtual Guest Network Connection

 I liked to use a network bridge to virtual machines direct access to real network, without using the default virtbr0(NATed) networking.  I did following to change the host and Virtual Machine configurations


First, I choose em3 of the quad ports NIC for bridging.


--ifcfg-em3--

DEVICE="em3"
HWADDR="84:2B:2B:73:B2:53"
NM_CONTROLLED="no"
ONBOOT="yse"
BRIDGE=br0

--ifcfg-br0

DEVICE=br0
TYPE=Bridge
BOOTPROTO=none
ONBOOT=yes
DELAY=0
--



#iptables -I FORWARD -m physdev --physdev-is-bridged -j ACCEPT
# service iptables save# service iptables restart


# service network restart

#virsh edit vm_system_name
Change interface type='network' to interface type='bridge'.
Change source network='default' to source bridge='br0'.


Or in virtual machine manager, go into Hardware tab to remove NIC and add a new NIC. 


This all worked out right.


Than, I thought of using the first two NICs that had been setup with bonding to do the bridging.


I changed to ifcfg-bond0 with all IP info remarked ,and added "BRIDGE=br0", and moved IP address info into ifcfg-br0.  Again, it worked.  This is what I liked since it has redundancy.





Tuesday, June 21, 2011

RedHat 6.1 Changes to Network Interface Bonding Configuration

--ifcfg-bond0-

DEVICE=bond0
IPADDR=xxx.xxx.xxx.xxx
NETMASK=xxx.xxx.xxx.xxx
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
BONDING_OPTS="miimon=100 mode=1"
---

Parameters for the bonding kernel module must be specified as a space-separated list in the BONDING_OPTS="<bonding parameters>" directive in the ifcfg-bond<N> interface file. Do not specify options for the bonding device in /etc/modprobe.d/<bonding>.conf, or in the deprecated/etc/modprobe.conf file.



For a channel bonding interface to be valid, the kernel module must be loaded. To ensure that the module is loaded when the channel bonding interface is brought up, create a new file as root named <bonding>.conf in the/etc/modprobe.d/ directory. Note that you can name this file anything you like as long as it ends with a .confextension. Insert the following line in this new file:
alias bond<N> bonding

Monday, June 20, 2011

some redhat commands and info

www.redhat.com/dell/activate, to activate Dell Server with RedHat installation

dmidecode - really cool command
Dmidecode reports information about your system's hardware as described in your system BIOS according to the SMBIOS/DMI standard (see a sample output). This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. This will often include usage status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory module slots, and the list of I/O ports (e.g. serial, parallel, USB).


bonding

  • modprobe.conf 
    • alias bond0 bonding
    •         options bonding miimon=100 mode=1 (mode=802.3ad or 4 for port-channel)
  • ifcfg-bond0
    • DEVICE=bond0
    • USERCTL=no
    • ONBOOT=yes
    • BOOTPROTO=static
    • BROADCAST=xxx.xxx.xxx.xxx
    • IPADDR=xxx.xxx.xxx.xxx
    • NETMASK=xxx.xxx.xxx.xxx
    • NETWORK=xxx.xxx.xxx.xxx
    • GATEWAY=xxx.xxx.xxx.xxx
  • ifcfg-eth(n)
    • DEVICE=eth(n)
    • ONBOOT=yes
    • BOOTPROTO=none
    • MASTER=bond0
    • SLAVE=yes
  • VLAN taging
    • ifcfg-bond0 need to remove all IP address info.
    • ifcfg-bond.(vlan_id)
      • DEVICE=bond0.(vlan_id)
      • ONBOOT=yes
      • VLAN=yes
      • BOOTPROTO=none (or static with ip info below)