1832510 Members
5060 Online
110043 Solutions
New Discussion

Define ELAN on ATM Card

 
SOLVED
Go to solution
David du Plessis
Occasional Advisor

Define ELAN on ATM Card

Have defined an el100 on my atm card and it works well. But now on defining a second el, say el200 that must connect to the same LECS and ELAN name, it will not work. The LEC Selector must be different than the on for el100. But when I do a netstat -in the el200 is not displayed, also with elstat -n el200 -v it says that it is not operational. Please help me!
4 REPLIES 4
Todd Whitcher
Esteemed Contributor

Re: Define ELAN on ATM Card

Hi David,

I'm not certain this will work the way you are trying to set it up. What is your goal for adding el200? If you have an ELAN going to the same LECS already what is the goal of setting up another ELAN to the same LECS? If you are just looking for another IP you can assign an additional virtual IP to el100:1 for example.


Here is the ATM documentation link if you don't have it.

http://www.docs.hp.com/hpux/netcom/index.html#ATM

Hope this helps,

Todd
David du Plessis
Occasional Advisor

Re: Define ELAN on ATM Card

Hi Todd

I can use the method you suggest but I am not sure on how to assign another IP address to and exsisting elan. If you could give me some tips I would appreciate it greatly.

Thanks
David
Todd Whitcher
Esteemed Contributor
Solution

Re: Define ELAN on ATM Card

Hi David,

I tested this on my system. All you need to do is define the virtual interface in /etc/rc.config.d/netconf file. The atm software is started prior to the netconf file is read, so adding the virtual IP to the netconf will do the trick. You dont need to put the el100 in the netconf, thats taken care of via the ATM configuration just add any additional virtual IPs you want to configure.

My Config:

netstat -in
Name Mtu Network Address Ipkts Ierrs Opkts Oerrs Coll
el101:1 1500 10.10.5.0 10.10.5.240 0 0 0 0 0
lan3 1500 15.244.16.0 15.244.16.140 2099385 0 1337819 0 0
lan1 1500 10.10.5.0 10.10.5.140 0 0 0 0 0
lo0 4136 127.0.0.0 127.0.0.1 1531 0 1531 0 0
el101 1500 10.10.21.0 10.10.21.140 0 0 0 0 0
clic1 31744 10.10.9.0 10.10.9.141 57965 0 45692 0 0
clic0 31744 10.10.9.0 10.10.9.140 0 0 0 0 0
cip101 9180 10.10.20.0 10.10.20.140 0 0 0 0 0

/etc/rc.config.d/netconf

INTERFACE_NAME[0]=lan3
IP_ADDRESS[0]=15.244.16.140
SUBNET_MASK[0]=255.255.252.0
BROADCAST_ADDRESS[0]=""
INTERFACE_STATE[0]=""
DHCP_ENABLE[0]=0

INTERFACE_NAME[3]=lan1
IP_ADDRESS[3]=10.10.5.140
SUBNET_MASK[3]=255.255.255.0
BROADCAST_ADDRESS[3]=""
INTERFACE_STATE[3]=""
DHCP_ENABLE[3]=0

# Add your virtual elan here el100:1 etc.

INTERFACE_NAME[4]=el101:1
IP_ADDRESS[4]=10.10.5.240
SUBNET_MASK[4]=255.255.255.0
BROADCAST_ADDRESS[4]=""
INTERFACE_STATE[4]=""
DHCP_ENABLE[4]=0

Hope that helps,

Todd
David du Plessis
Occasional Advisor

Re: Define ELAN on ATM Card

Hi Todd

Thanks for your help. I'am up and running again.

Thanks again
David