Friday 06 May 2005 03:24, You wrote:
> I want to setup a STANDARD VIPA and use ZEBRA for OSPF dynamic routing.
> I am using two  OSA ports, on two different cards.
> Interface eth0 is on one subnet and eth1 is on another subnet... and I
> have VIPA defined in another subnet.

If you can _use_ VSWITCH!

> What I need info on is HOWTO setup ZEBRA for this STANDARD VIPA.

http://www.zebra.org/

> I've searched the Net, Share, Expo and Linux-390 and I find no HOWTO's on
> this. I find z/OS presentations, but none for zLinux.

there are no difference that I know between zlinux configuration and linux
conf.

> Does anyone have a HOWTO or SCRIPT for this config?
> Or, can anyone share their zebra.conf and ospf.conf for a STANDARD VIPA
> setup?

don't use zebra for interface configuration, linux do it:

zlinux1:~ # cat /etc/sysconfig/network/ifcfg-eth0
BOOTPROTO='static'
STARTMODE='onboot'
IPADDR='10.2.11.100'
MTU='1500'
NETMASK='255.255.255.0'
NETWORK='10.2.11.0'
BROADCAST='10.2.11.255'

zlinux1:~ # cat /etc/sysconfig/network/ifcfg-eth1
BOOTPROTO='static'
STARTMODE='onboot'
IPADDR='10.2.12.100'
MTU='1500'
NETMASK='255.255.255.0'
NETWORK='10.2.11.0'
BROADCAST='10.2.11.255'

zlinux1:~ # cat /etc/sysconfig/network/ifcfg-dummy0
BOOTPROTO="static"
STARTMODE="onboot"
IPADDR="10.3.3.100"
NETMASK="255.255.255.255"


zlinux1:~ # cat /etc/zebra/zebra.conf
! -*- zebra -*-
!
! zebra sample configuration file
!
! $Id: zebra.conf.sample,v 1.14 1999/02/19 17:26:38 developer Exp $
!
hostname zlinux1
password zebra
enable password zebra
!
log file /var/log/zebra.log


zlinux1:~ # cat /etc/zebra/ospfd.conf
! -*- ospf -*-
!
! OSPFd sample configuration file
!
!
hostname zlinux1
password zebra
enable password zebra
interface lo
  ip ospf hello-interval 10
  ip ospf dead-interval 40
!
interface eth0
  ip ospf hello-interval 10
  ip ospf dead-interval 40
!
interface eth1
  ip ospf hello-interval 10
  ip ospf dead-interval 40
!
interface dummy0
  ip ospf hello-interval 10
  ip ospf dead-interval 40
!
!
router ospf
  ospf router-id 10.3.3.100
  area 1.1.1.1 stub
  redistribute connected
  passive-interface lo
  network 10.2.11.100/24 area 1.1.1.1
  network 10.2.12.100/24 area 1.1.1.1
  network 10.3.3.100/32 area 1.1.1.1
!
log file /var/log/ospfd.log

----------------------------------------------------------------------
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

Reply via email to