HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Ethernet interface configuration
Operating System - OpenVMS
1828208
Members
2127
Online
109975
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2006 09:43 AM
12-20-2006 09:43 AM
Ethernet interface configuration
I have 4 NICs on an ES80. One is configured as WE0. $TCPIP SHOW INTERFACE just shows this one:
TCPIP> show interface we
Packets
Interface IP_Addr Network mask Receive Send MTU
WE0 10.171.2.7 255.255.255.0 299903 345728 1500
TCPIP>
How do I configure another one to be used as failSAFE IP? Do I need to plug it into network first?
When I use the approach as described in the Chapter 5 of the TCPIP Services for OpenVMS Management nothing seems to work as advertised.
When I go
TCPIP> set interface WE1 /HOST=10.171.2.7
the show interface command and the "show interface we" give different outputs:
TCPIP> show interface
Packets
Interface IP_Addr Network mask Receive Send MTU
LO0 127.0.0.1 255.0.0.0 96198 96198 4096
WE0 10.171.2.7 255.255.255.0 300603 346593 1500
WE1 0 0 1500
TCPIP> show interface we
Packets
Interface IP_Addr Network mask Receive Send MTU
WE0 10.171.2.7 255.255.255.0 300637 346617 1500
TCPIP>
I'd appreciate step-by-step instructions, if possible, since I already read the manual, to no avail.
Thanks!
Ziggy
TCPIP> show interface we
Packets
Interface IP_Addr Network mask Receive Send MTU
WE0 10.171.2.7 255.255.255.0 299903 345728 1500
TCPIP>
How do I configure another one to be used as failSAFE IP? Do I need to plug it into network first?
When I use the approach as described in the Chapter 5 of the TCPIP Services for OpenVMS Management nothing seems to work as advertised.
When I go
TCPIP> set interface WE1 /HOST=10.171.2.7
the show interface command and the "show interface we" give different outputs:
TCPIP> show interface
Packets
Interface IP_Addr Network mask Receive Send MTU
LO0 127.0.0.1 255.0.0.0 96198 96198 4096
WE0 10.171.2.7 255.255.255.0 300603 346593 1500
WE1 0 0 1500
TCPIP> show interface we
Packets
Interface IP_Addr Network mask Receive Send MTU
WE0 10.171.2.7 255.255.255.0 300637 346617 1500
TCPIP>
I'd appreciate step-by-step instructions, if possible, since I already read the manual, to no avail.
Thanks!
Ziggy
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2006 11:58 PM
12-20-2006 11:58 PM
Re: Ethernet interface configuration
better,you run sys$manager:tcpip$config.com and and then go to core components interface option.You have four interface WE0,WE1,WE2,WE3. After configuring WE0 interface it prompts for failSafe ip and enter the interface you want to configure as failSAFE for eg. WE1 ,then you can also configure WE2 interfce and WE3 as its failSAFE IP .
For example if u configure we1 as failsafe ip of we0 and we3 as failsafe ip of we2 it looks liks as follows...
TCPIP>show int
Interface IP_addr Network Mask Receive send MTU
we0 10.192.0.23 255.255.0.0 123426 89756 1500
we1 0 0 1500
we2 10.192.1.23 255.255.255.0 35678 87547 1500
we3 0 0 1500
For example if u configure we1 as failsafe ip of we0 and we3 as failsafe ip of we2 it looks liks as follows...
TCPIP>show int
Interface IP_addr Network Mask Receive send MTU
we0 10.192.0.23 255.255.0.0 123426 89756 1500
we1 0 0 1500
we2 10.192.1.23 255.255.255.0 35678 87547 1500
we3 0 0 1500
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 04:16 AM
12-21-2006 04:16 AM
Re: Ethernet interface configuration
Ziggy,
when playing around with interface alias entries and failSAFE IP, it's more convenient to use the ifconfig commands:
$ @SYS$MANAGER:TCPIP$DEFINE_COMMANDS
$ ifconfig -a ! show interfaces
$ ifconfig ie0 alias 10.20.30.205 netmask 255.255.255.0
$ ifconfig ie0 -alias 10.20.30.205
Volker.
when playing around with interface alias entries and failSAFE IP, it's more convenient to use the ifconfig commands:
$ @SYS$MANAGER:TCPIP$DEFINE_COMMANDS
$ ifconfig -a ! show interfaces
$ ifconfig ie0 alias 10.20.30.205 netmask 255.255.255.0
$ ifconfig ie0 -alias 10.20.30.205
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 08:41 AM
12-21-2006 08:41 AM
Re: Ethernet interface configuration
Thank you guys: I'm closing this thread since I want to open a new one with more specific description of the problem.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP