Certificaciones

Certificaciones
Certificaciones

jueves, 22 de enero de 2015

Configuración de Equivalencias SSH de Usuarios Nodo A y Nodo B


Configuración de Equivalencias SSH de Usuarios Nodo A y Nodo B


En Ambos nodos(Nodo A y Nodo B) se ejecutó:

cd $HOME
mkdir .ssh
chmod 700 .ssh
cd .ssh
ssh-keygen -t rsa
ssh-keygen -t dsa

cat *.pub >> authorized_keys.<NodoX> (NodoX es el nombre del Nodo)

Se Copió el archivo authorized_keys.NodoA a NodoB

scp authorized_keys.NodoA user@NodoB:/~/.ssh/

Se Copió el archivo authorized_keys.NodoB a NodoA

scp authorized_keys.NodoB user@NodoA:/~/.ssh/

En Ambos Nodos Ejecutar:

cd $HOME/.ssh
cat *.Nodo* >> authorized_keys
chmod 600 authorized_keys

Ejecutar Pruebas 

ssh NodoA date
ssh NodoB date

martes, 20 de enero de 2015

Configuración IPMP con Vlan Tag en Solaris 10


Configuración IPMP con Vlan Tag en Solaris 10:


Interfaces de Red a Utilizar:



OS Interface
PCI Slot/Port
VLAN trunk
Comments
nxge-0
XAUI 1
2,10
VPN and ClInterconnect vlans
nxge-1
XAUI 2
200,15
Backup and Public vlans
ixgbe-0
PCI/ETH 0
200,15
Backup and Public vlans
Ixgbe-1
PCI/ETH 1
2,10
VPN and ClInterconnect vlans
 


Redes a Configurar:



1.1.1.   VPN - Private Network

Hostname
FO IP-Address
1st NIC
Vlan 2
IP-Address
2nd NIC
Vlan 2
IP-Address
IPMP Group
test-1
10.1.51.1
nxge2000
10.1.51.11
ixgbe2001
10.1.51.21
vpn
test-2
10.1.51.2
nxge2000
10.1.51.12
ixgbe2001
10.1.51.22
vpn
test-3
10.1.52.1
nxge2000
10.1.52.11
ixgbe2001
10.1.52.21
vpn

1.1.2.   PUB - Public Network

Hostname
FO IP-Address
1st NIC
Vlan 15
IP-Address
2nd NIC
Vlan 15
IP-Address
IPMP Group
test-1-pub
172.28.10.103
nxge15001
172.28.10.104
ixgbe15000
172.28.10.105
pub
test-2-pub
172.28.10.106
nxge15001
172.28.10.107
ixgbe15000
172.28.10.108
pub
test-3-pub
172.28.10.109
nxge15001
172.28.10.110
ixgbe15000
172.28.10.111
pub

1.1.3.   BAK - Backup Network

Hostname
FO IP-Address
1st NIC
Vlan 200
IP-Address
2nd NIC
Vlan 200
IP-Address
IPMP Group
test-1-bak
10.2.51.1
nxge200001
10.2.51.11
ixgbe200100
10.2.51.21
bak
test-2-bak
10.2.51.2
nxge200001
10.2.51.12
ixgbe200100
10.2.51.22
bak
test-3-bak
10.2.52.1
nxge200001
10.2.52.11
ixgbe200100
10.2.52.21
bak
 

Se dejó el mismo Archivo /etc/host en todos los nodos:




# Red Priv
10.1.51.1           test-1 test-1. SYB_LIC
10.1.51.11          test-1-nxge0  test-1-nxge0.2    test-1-nxge2000
10.1.51.21          test-1-ixgbe1 test-1-ixgbe1.2   test-1-ixgbe2001
10.1.51.2           test-2 test-2.   
10.1.51.12          test-2-nxge0  test-2-nxge0.2    test-2-nxge2000
10.1.51.22          test-2-ixgbe1 test-2-ixgbe1.2   test-2-ixgbe2001
10.1.52.1           test-3 test-3.
10.1.52.11          test-3-nxge0  test-3-nxge0.2    test-3-nxge2000
10.1.52.21          test-3-ixgbe1 test-3-ixgbe1.2   test-3-ixgbe2001

# Red public
172.28.10.103       test-1-pub
172.28.10.104       test-1-pub-nxge1  test-1-pub-nxge1.15     test-1-pub-nxge15001
172.28.10.105       test-1-pub-ixgbe0 test-1-pub-ixgbe0.15    test-1-pub-ixgbe15000
172.28.10.106       test-2-pub
172.28.10.107       test-2-pub-nxge1  test-2-pub-nxge1.15     test-2-pub-nxge15001
172.28.10.108       test-2-pub-ixgbe0 test-2-pub-ixgbe0.15    test-2-pub-ixgbe15000
172.28.10.109       test-3-pub
172.28.10.110       test-3-pub-nxge1  test-3-pub-nxge1.15     test-3-pub-nxge15001
172.28.10.111       test-3-pub-ixgbe0 test-3-pub-ixgbe0.15    test-3-pub-ixgbe15000

# Red backup
10.2.51.1           test-1-bak
10.2.51.11          test-1-bak-nxge1  test-1-bak-nxge1.200    test-1-bak-nxge200001
10.2.51.21          test-1-bak-ixgbe0 test-1-bak-ixgbe0.200   test-1-bak-ixgbe200000
10.2.51.2           test-2-bak
10.2.51.12          test-2-bak-nxge1  test-2-bak-nxge1.200    test-2-bak-nxge200001
10.2.51.22          test-2-bak-ixgbe0 test-2-bak-ixgbe0.200   test-2-bak-ixgbe200000
10.2.52.1           test-3-bak
10.2.52.11          test-3-bak-nxge1  test-3-bak-nxge1.200    test-3-bak-nxge200001
10.2.52.21          test-3-bak-ixgbe0 test-3-bak-ixgbe0.200   test-3-bak-ixgbe200000
 


Configuración IPMP en cada nodo:

Nodo test-1:





1.1.1.   IPMP Configuration

/etc/hostname.nxge2000
group priv
set test-1 netmask + broadcast + up
addif test-1-nxge2000 netmask + broadcast + -failover deprecated up

/etc/hostname.ixgbe2001
group priv
set test-1-ixgbe2001 netmask + broadcast + -failover deprecated up
standby

/etc/hostname.nxge200001
group bak
set test-1-bak netmask + broadcast + up
addif test-1-nxge200001 netmask + broadcast + -failover deprecated up

/etc/hostname.ixgbe200000
group bak
set test-1-ixgbe200000 netmask + broadcast + -failover deprecated up
standby

/etc/hostname.nxge15001
group pub
set test-1-pub netmask + broadcast + up
addif test-1-nxge15001 netmask + broadcast + -failover deprecated up

/etc/hostname.ixgbe15000
group pub
set test-1-ixgbe15000 netmask + broadcast + -failover deprecated up
standby

/etc/init.d/ipmp.targets
# To install:
# 1) cp ipmp.targets /etc/init.d
# 2) perform edits on the script as required (e.g: add TARGETS)
# 3) chmod 744 /etc/init.d/ipmp.targets
# 4) chown root:sys /etc/init.d/ipmp.targets
# 5) ln /etc/init.d/ipmp.targets /etc/rc2.d/S70ipmp.targets

# cat /etc/init.d/ipmp.targets
# /bin/sh

# Edit the following IPMP test TARGETS to suit your needs.
# To install:
# 1) cp ipmp.targets /etc/init.d
# 2) perform edits on the script as required (e.g: add TARGETS)
# 3) chmod 744 /etc/init.d/ipmp.targets
# 4) chown root:sys /etc/init.d/ipmp.targets
# 5) ln /etc/init.d/ipmp.targets /etc/rc2.d/S70ipmp.targets
#

# default targets for SCP's
TARGETS="test-1 test-3 test-2 ccp-1 test-1-pub test-3-pub test-2-pub ccp-m1-pub"

HOSTNAME=`hostname`
echo "Will add static routes for host $HOSTNAME"
if [ $HOSTNAME = "ccp-m1" ]; then
        TARGETS="dp-1 test-3 test-2 test-1-pub test-3-pub test-2-pub"
fi
if [ $HOSTNAME = "test-1" ]; then
        TARGETS="test-3 test-2 ccp-1 ccp-m1-pub test-3-pub test-2-pub"
fi
if [ $HOSTNAME = "test-2" ]; then
        TARGETS="test-1 test-3 ccp-1 test-1-pub ccp-m1-pub test-3-pub"
fi
if [ $HOSTNAME = "test-3" ]; then
        TARGETS="test-1 test-2 ccp-1 test-1-pub ccp-m1-pub test-2-pub"
fi

case "$1" in
    'start')
        /usr/bin/echo "Adding static routes for use as IPMP targets"
        for target in $TARGETS; do
                /usr/sbin/route add -host $target $target
        done
        ;;
    'stop')
        /usr/bin/echo "Removing static routes for use as IPMP targets"
        for target in $TARGETS; do
                /usr/sbin/route delete -host $target $target
        done
        ;;
esac

# nevala - Saturday January 27 23:36:25 GMT 2007
ifconfig nxge15001 netmask 255.255.255.0
ifconfig ixgbe15001 netmask 255.255.255.0



 # ifconfig -a

lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
ixgbe2001: flags=269040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER,STANDBY,INACTIVE,CoS> mtu 1500 index 4
    inet 10.1.51.21 netmask ffe00000 broadcast 10.31.255.255
    groupname priv
    ether 0:10:e0:58:73:8e
ixgbe15000: flags=269000842<BROADCAST,RUNNING,MULTICAST,IPv4,NOFAILOVER,STANDBY,INACTIVE,CoS> mtu 0 index 2
    inet 0.0.0.0 netmask 0
    groupname pub
    ether 0:10:e0:58:73:8e
ixgbe20001: flags=201008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4,CoS> mtu 1500 index 8
    inet 172.16.0.67 netmask ffffffc0 broadcast 172.16.0.127
    ether 0:10:e0:58:73:8e
ixgbe200000: flags=269000842<BROADCAST,RUNNING,MULTICAST,IPv4,NOFAILOVER,STANDBY,INACTIVE,CoS> mtu 0 index 3
    inet 0.0.0.0 netmask 0
    groupname bak
    ether 0:10:e0:58:73:8e
nxge2000: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 6
    inet 10.1.51.1 netmask ffe00000 broadcast 10.31.255.255
    groupname priv
    ether 0:10:e0:58:73:8e
nxge2000:1: flags=9040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER> mtu 1500 index 6
    inet 10.1.51.11 netmask ffe00000 broadcast 10.31.255.255
nxge2000:2: flags=1001040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,FIXEDMTU> mtu 1500 index 6
    inet 10.1.51.101 netmask ffe00000 broadcast 10.31.255.255
nxge2000:3: flags=1001040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,FIXEDMTU> mtu 1500 index 6
    inet 10.1.51.102 netmask ffe00000 broadcast 10.31.255.255
nxge10000: flags=201008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4,CoS> mtu 1500 index 9
    inet 172.16.0.131 netmask ffffffc0 broadcast 172.16.0.191
    ether 0:10:e0:58:73:8e
nxge15001: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 5
    inet 172.28.10.16 netmask ffffffc0 broadcast 172.28.10.63
    groupname pub
    ether 0:10:e0:58:73:8e
nxge15001:1: flags=1000842<BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 5
    inet 0.0.0.0 netmask 0
nxge15001:2: flags=1001040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,FIXEDMTU> mtu 1500 index 5
    inet 172.28.10.30 netmask ffffffc0 broadcast 172.28.10.63
nxge15001:3: flags=1001040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,FIXEDMTU> mtu 1500 index 5
    inet 172.28.10.6 netmask ffffffc0 broadcast 172.28.10.63
nxge15001:4: flags=1001040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,FIXEDMTU> mtu 1500 index 5
    inet 172.28.10.37 netmask ffffffc0 broadcast 172.28.10.63
nxge200001: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 7
    inet 10.2.51.1 netmask fffff800 broadcast 10.2.55.255
    groupname bak
    ether 0:10:e0:58:73:8e
nxge200001:1: flags=201000842<BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 7
    inet 0.0.0.0 netmask 0
usbecm0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 10
    inet 169.254.182.77 netmask ffffff00 broadcast 169.254.255.255
    ether 2:21:28:57:47:17
clprivnet0: flags=1008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4> mtu 1500 index 11
    inet 172.16.2.3 netmask ffffff00 broadcast 172.16.2.255
    ether 0:0:0:0:0:3


Nodo test-2:



1.1.1.   IPMP Configuration

/etc/hostname.nxge2000
group priv
set test-2 netmask + broadcast + up
addif test-2-nxge2000 netmask + broadcast + -failover deprecated up

/etc/hostname.ixgbe2001
group priv
set test-2-ixgbe2001 netmask + broadcast + -failover deprecated up
standby

/etc/hostname.nxge200001
group bak
set test-2-bak netmask + broadcast + up
addif test-2-nxge200001 netmask + broadcast + -failover deprecated up

/etc/hostname.ixgbe200000
group bak
set test-2-ixgbe200000 netmask + broadcast + -failover deprecated up
standby

/etc/hostname.nxge15001
group pub
set test-2-pub netmask + broadcast + up
addif test-2-nxge15001 netmask + broadcast + -failover deprecated up

/etc/hostname.ixgbe15000
group pub
set test-2-ixgbe15000 netmask + broadcast + -failover deprecated up
standby

/etc/init.d/ipmp.targets
# To install:
# 1) cp ipmp.targets /etc/init.d
# 2) perform edits on the script as required (e.g: add TARGETS)
# 3) chmod 744 /etc/init.d/ipmp.targets
# 4) chown root:sys /etc/init.d/ipmp.targets
# 5) ln /etc/init.d/ipmp.targets /etc/rc2.d/S70ipmp.targets

# cat /etc/init.d/ipmp.targets
# /bin/sh

# Edit the following IPMP test TARGETS to suit your needs.
# To install:
# 1) cp ipmp.targets /etc/init.d
# 2) perform edits on the script as required (e.g: add TARGETS)
# 3) chmod 744 /etc/init.d/ipmp.targets
# 4) chown root:sys /etc/init.d/ipmp.targets
# 5) ln /etc/init.d/ipmp.targets /etc/rc2.d/S70ipmp.targets
#

# default targets for SCP's
TARGETS="test-1 test-3 test-2 ccp-1 test-1-pub test-3-pub test-2-pub ccp-m1-pub"

HOSTNAME=`hostname`
echo "Will add static routes for host $HOSTNAME"
if [ $HOSTNAME = "ccp-m1" ]; then
        TARGETS="dp-1 test-3 test-2 test-1-pub test-3-pub test-2-pub"
fi
if [ $HOSTNAME = "test-1" ]; then
        TARGETS="test-3 test-2 ccp-1 ccp-m1-pub test-3-pub test-2-pub"
fi
if [ $HOSTNAME = "test-2" ]; then
        TARGETS="test-1 test-3 ccp-1 test-1-pub ccp-m1-pub test-3-pub"
fi
if [ $HOSTNAME = "test-3" ]; then
        TARGETS="test-1 test-2 ccp-1 test-1-pub ccp-m1-pub test-2-pub"
fi

case "$1" in
    'start')
        /usr/bin/echo "Adding static routes for use as IPMP targets"
        for target in $TARGETS; do
                /usr/sbin/route add -host $target $target
        done
        ;;
    'stop')
        /usr/bin/echo "Removing static routes for use as IPMP targets"
        for target in $TARGETS; do
                /usr/sbin/route delete -host $target $target
        done
        ;;
esac

# nevala - Saturday January 27 23:36:25 GMT 2007
ifconfig nxge15001 netmask 255.255.255.0
ifconfig ixgbe15001 netmask 255.255.255.0



# ifconfig -a

lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
ixgbe2001: flags=269040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER,STANDBY,INACTIVE,CoS> mtu 1500 index 4
    inet 10.1.51.22 netmask ffe00000 broadcast 10.31.255.255
    groupname priv
    ether 0:10:e0:58:75:46
ixgbe15000: flags=269000842<BROADCAST,RUNNING,MULTICAST,IPv4,NOFAILOVER,STANDBY,INACTIVE,CoS> mtu 0 index 2
    inet 0.0.0.0 netmask 0
    groupname pub
    ether 0:10:e0:58:75:46
ixgbe20001: flags=201008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4,CoS> mtu 1500 index 8
    inet 172.16.0.66 netmask ffffffc0 broadcast 172.16.0.127
    ether 0:10:e0:58:75:46
ixgbe200000: flags=269000842<BROADCAST,RUNNING,MULTICAST,IPv4,NOFAILOVER,STANDBY,INACTIVE,CoS> mtu 0 index 3
    inet 0.0.0.0 netmask 0
    groupname bak
    ether 0:10:e0:58:75:46
nxge2000: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 6
    inet 10.1.51.2 netmask ffe00000 broadcast 10.31.255.255
    groupname priv
    ether 0:10:e0:58:75:46
nxge2000:1: flags=209040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER,CoS> mtu 1500 index 6
    inet 10.1.51.12 netmask ffe00000 broadcast 10.31.255.255
nxge10000: flags=201008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4,CoS> mtu 1500 index 9
    inet 172.16.0.130 netmask ffffffc0 broadcast 172.16.0.191
    ether 0:10:e0:58:75:46
nxge15001: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 5
    inet 172.28.10.53 netmask ffffffc0 broadcast 172.28.10.63
    groupname pub
    ether 0:10:e0:58:75:46
nxge15001:1: flags=201000842<BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 5
    inet 0.0.0.0 netmask 0
nxge200001: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 7
    inet 10.2.51.2 netmask fffff800 broadcast 10.2.55.255
    groupname bak
    ether 0:10:e0:58:75:46
nxge200001:1: flags=201000842<BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 7
    inet 0.0.0.0 netmask 0
usbecm0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 10
    inet 169.254.182.77 netmask ffffff00 broadcast 169.254.255.255
    ether 2:21:28:57:47:17
clprivnet0: flags=1008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4> mtu 1500 index 11
    inet 172.16.2.2 netmask ffffff00 broadcast 172.16.2.255
    ether 0:0:0:0:0:2


Nodo test-3:



1.1.1.   IPMP Configuration

/etc/hostname.nxge2000
group priv
set test-3 netmask + broadcast + up
addif test-3-nxge2000 netmask + broadcast + -failover deprecated up

/etc/hostname.ixgbe2001
group priv
set test-3-ixgbe2001 netmask + broadcast + -failover deprecated up
standby

/etc/hostname.nxge200001
group bak
set test-3-bak netmask + broadcast + up
addif test-3-nxge200001 netmask + broadcast + -failover deprecated up

/etc/hostname.ixgbe200000
group bak
set test-3-ixgbe200000 netmask + broadcast + -failover deprecated up
standby

/etc/hostname.nxge15001
group pub
set test-3-pub netmask + broadcast + up
addif test-3-nxge15001 netmask + broadcast + -failover deprecated up

/etc/hostname.ixgbe15000
group pub
set test-3-ixgbe15000 netmask + broadcast + -failover deprecated up
standby

/etc/init.d/ipmp.targets
# To install:
# 1) cp ipmp.targets /etc/init.d
# 2) perform edits on the script as required (e.g: add TARGETS)
# 3) chmod 744 /etc/init.d/ipmp.targets
# 4) chown root:sys /etc/init.d/ipmp.targets
# 5) ln /etc/init.d/ipmp.targets /etc/rc2.d/S70ipmp.targets

# cat /etc/init.d/ipmp.targets
# /bin/sh

# Edit the following IPMP test TARGETS to suit your needs.
# To install:
# 1) cp ipmp.targets /etc/init.d
# 2) perform edits on the script as required (e.g: add TARGETS)
# 3) chmod 744 /etc/init.d/ipmp.targets
# 4) chown root:sys /etc/init.d/ipmp.targets
# 5) ln /etc/init.d/ipmp.targets /etc/rc2.d/S70ipmp.targets
#

# default targets for SCP's
TARGETS="test-1 test-3 test-2 ccp-1 test-1-pub test-3-pub test-2-pub ccp-m1-pub"

HOSTNAME=`hostname`
echo "Will add static routes for host $HOSTNAME"
if [ $HOSTNAME = "ccp-m1" ]; then
        TARGETS="dp-1 test-3 test-2 test-1-pub test-3-pub test-2-pub"
fi
if [ $HOSTNAME = "test-1" ]; then
        TARGETS="test-3 test-2 ccp-1 ccp-m1-pub test-3-pub test-2-pub"
fi
if [ $HOSTNAME = "test-2" ]; then
        TARGETS="test-1 test-3 ccp-1 test-1-pub ccp-m1-pub test-3-pub"
fi
if [ $HOSTNAME = "test-3" ]; then
        TARGETS="test-1 test-2 ccp-1 test-1-pub ccp-m1-pub test-2-pub"
fi

case "$1" in
    'start')
        /usr/bin/echo "Adding static routes for use as IPMP targets"
        for target in $TARGETS; do
                /usr/sbin/route add -host $target $target
        done
        ;;
    'stop')
        /usr/bin/echo "Removing static routes for use as IPMP targets"
        for target in $TARGETS; do
                /usr/sbin/route delete -host $target $target
        done
        ;;
esac

# nevala - Saturday January 27 23:36:25 GMT 2007
ifconfig nxge15001 netmask 255.255.255.0
ifconfig ixgbe15001 netmask 255.255.255.0


 # ifconfig -a

lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
ixgbe2001: flags=269040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER,STANDBY,INACTIVE,CoS> mtu 1500 index 4
    inet 10.1.52.21 netmask ffe00000 broadcast 10.31.255.255
    groupname priv
    ether 0:10:e0:58:27:26
ixgbe15000: flags=269000842<BROADCAST,RUNNING,MULTICAST,IPv4,NOFAILOVER,STANDBY,INACTIVE,CoS> mtu 0 index 2
    inet 0.0.0.0 netmask 0
    groupname pub
    ether 0:10:e0:58:27:26
ixgbe20001: flags=201008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4,CoS> mtu 1500 index 8
    inet 172.16.0.65 netmask ffffffc0 broadcast 172.16.0.127
    ether 0:10:e0:58:27:26
ixgbe200000: flags=269000842<BROADCAST,RUNNING,MULTICAST,IPv4,NOFAILOVER,STANDBY,INACTIVE,CoS> mtu 0 index 3
    inet 0.0.0.0 netmask 0
    groupname bak
    ether 0:10:e0:58:27:26
nxge2000: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 6
    inet 10.1.52.1 netmask ffe00000 broadcast 10.31.255.255
    groupname priv
    ether 0:10:e0:58:27:26
nxge2000:1: flags=9040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER> mtu 1500 index 6
    inet 10.1.52.11 netmask ffe00000 broadcast 10.31.255.255
nxge2000:2: flags=1001040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,FIXEDMTU> mtu 1500 index 6
    inet 10.1.52.105 netmask ffe00000 broadcast 10.31.255.255
nxge2000:3: flags=1001040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,FIXEDMTU> mtu 1500 index 6
    inet 10.1.52.101 netmask ffe00000 broadcast 10.31.255.255
nxge10000: flags=201008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4,CoS> mtu 1500 index 9
    inet 172.16.0.129 netmask ffffffc0 broadcast 172.16.0.191
    ether 0:10:e0:58:27:26
nxge15001: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 5
    inet 172.28.10.46 netmask ffffffc0 broadcast 172.28.10.63
    groupname pub
    ether 0:10:e0:58:27:26
nxge15001:1: flags=1000842<BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 5
    inet 0.0.0.0 netmask 0
nxge15001:2: flags=1001040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,FIXEDMTU> mtu 1500 index 5
    inet 172.28.10.49 netmask ffffffc0 broadcast 172.28.10.63
nxge15001:3: flags=1001040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,FIXEDMTU> mtu 1500 index 5
    inet 172.28.10.42 netmask ffffffc0 broadcast 172.28.10.63
nxge200001: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 7
    inet 10.2.52.1 netmask fffff800 broadcast 10.2.55.255
    groupname bak
    ether 0:10:e0:58:27:26
nxge200001:1: flags=201000842<BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 7
    inet 0.0.0.0 netmask 0
clprivnet0: flags=1008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4> mtu 1500 index 10
    inet 172.16.2.1 netmask ffffff00 broadcast 172.16.2.255
    ether 0:0:0:0:0:1
usbecm0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 11
    inet 169.254.182.77 netmask ffffff00 broadcast 169.254.255.255
    ether 2:21:28:57:47:17