- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- NIC's naming standard - Suggestions
Operating System - Linux
1823415
Members
2419
Online
109655
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
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
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
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
тАО02-18-2011 07:07 AM
тАО02-18-2011 07:07 AM
Looking for standards in naming NIC's
for a host with hostname myhost the DNS entry would typically be
myhost
myhost-mgt
myhost-nas
myhost-ebr
myhost: the primary access to the server, it can be a bonded interfaces with redundant connections or a single interface.
myhost-mgt: the remote management console: DRAC, - always a single 100/Full connection
myhost-nas: the newly required, bonded with primary/redundant 1000/full connection for NAS.
myhost-ebr: the generally single 1000/full connection for backup traffic, may require routing to master/media servers unless on same subnet.
For each of these groups, if there are multiple non-floating IPs add an instance number added to the end
ie if there is a need for multiple EBR connections:
1st: myhost-ebr <-primary ebr connection and what all server with start out with
2nd: myhost-ebr1
3rd: myhost-ebr2
Thanks
Joe.
for a host with hostname myhost the DNS entry would typically be
myhost
myhost-mgt
myhost-nas
myhost-ebr
myhost: the primary access to the server, it can be a bonded interfaces with redundant connections or a single interface.
myhost-mgt: the remote management console: DRAC, - always a single 100/Full connection
myhost-nas: the newly required, bonded with primary/redundant 1000/full connection for NAS.
myhost-ebr: the generally single 1000/full connection for backup traffic, may require routing to master/media servers unless on same subnet.
For each of these groups, if there are multiple non-floating IPs add an instance number added to the end
ie if there is a need for multiple EBR connections:
1st: myhost-ebr <-primary ebr connection and what all server with start out with
2nd: myhost-ebr1
3rd: myhost-ebr2
Thanks
Joe.
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-18-2011 03:47 PM
тАО02-18-2011 03:47 PM
Re: NIC's naming standard - Suggestions
When I see "naming NICs" I usually think of deciding which NIC should be eth0, which eth1 etc. :)
As for naming conventions, for names to be mapped to IP addresses associated with services, I'm not familiar with any particular standard. It is really up to you to pick a convention and stick with it.
I should also point-out that by default, linux takes a very strong interpretation of following the "weak end system model" and considers IP addresses a property of the system rather more than of any one NIC. As such, any interface in the system is happy to receive traffic for any IP assigned to that system. And that extends to responding to ARP requests - any of the interfaces in the same broadcast domain will respond to an ARP request for any of the system's IP addresses.
You will probably want to address that - look into things like "arp_ignore" settings and the like.
As for naming conventions, for names to be mapped to IP addresses associated with services, I'm not familiar with any particular standard. It is really up to you to pick a convention and stick with it.
I should also point-out that by default, linux takes a very strong interpretation of following the "weak end system model" and considers IP addresses a property of the system rather more than of any one NIC. As such, any interface in the system is happy to receive traffic for any IP assigned to that system. And that extends to responding to ARP requests - any of the interfaces in the same broadcast domain will respond to an ARP request for any of the system's IP addresses.
You will probably want to address that - look into things like "arp_ignore" settings and the like.
there is no rest for the wicked yet the virtuous have no pillows
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2011 07:18 AM
тАО02-21-2011 07:18 AM
Re: NIC's naming standard - Suggestions
Rick
Thanks for the reply. Could you please expand on your statement? I am very familiar with HP-UX networking NIC's etc but rather new to RHEL.
Thanks
Joe.
Thanks for the reply. Could you please expand on your statement? I am very familiar with HP-UX networking NIC's etc but rather new to RHEL.
Thanks
Joe.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-22-2011 02:35 PM
тАО02-22-2011 02:35 PM
Solution
I'd suggest some web searching on strong vs weak end system model. It has to do with whether an IP address is considered a property of the system (towards weak end system model) or if it is considered a property of the interface (towards strong end system model). HP-UX tends towards the stronger end of the end system model. If you have two physical interfaces connected to the same broadcast domain (eg what can be reached via layer 2) in HP-UX when the ARP request is received via both of them, only the one on which the requested IP address is assigned will have a reply go out.
In Linux, any interface receiving an ARP request for any IP assigned to the system can and will respond to the request. So, it becomes something of a crap shoot as to which MAC the remote system will think belongs to the desired IP.
So, if you have partitioned the work among several IP addresses, but the interfaces involved are connected to the same broadcast domain, by default, traffic will come and go through any of them for any of the IP addresses.
While you are searching, you might also lookup information on "udev" as you may need to deal with that - Linux's device name persistence heuristics are not quite the same as those of HP-UX.
In Linux, any interface receiving an ARP request for any IP assigned to the system can and will respond to the request. So, it becomes something of a crap shoot as to which MAC the remote system will think belongs to the desired IP.
So, if you have partitioned the work among several IP addresses, but the interfaces involved are connected to the same broadcast domain, by default, traffic will come and go through any of them for any of the IP addresses.
While you are searching, you might also lookup information on "udev" as you may need to deal with that - Linux's device name persistence heuristics are not quite the same as those of HP-UX.
there is no rest for the wicked yet the virtuous have no pillows
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
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP