- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- N-Class server & Network Duplicate IP Address
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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-04-2000 08:20 AM
12-04-2000 08:20 AM
The problem was caused by a dumb terminal having the same IP address as the main N-Class server, the terminal had been swapped by an engineer & re-configured correctly. It took us 2.5 hours to find the duplicate after tracing routes etc.
My question is how do I combat this again - is there a way to stop the network from crashing and affecting the main servers if a piece of kit has the same IP ?
Any suggestions/comments welcome.
Simon
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2000 06:30 PM
12-04-2000 06:30 PM
Re: N-Class server & Network Duplicate IP Address
If you aren't using DHCP for granting IP addresses it should be fairly easy to set up some kind of policy to prevent this in the future. Even if you were using DHCP, there are ways around having duplicate IPs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 06:25 AM
12-05-2000 06:25 AM
Re: N-Class server & Network Duplicate IP Address
First, I recommend that servers be on a separate subnet than workstations with totally separate networking equipment. In this case, a person applying a duplicate IP has the chance of hosing the local subnet, but not your servers. If he/she duplicates the server IP nothing happens where the configured IP does not match the subnet that it's connected to and the router should stop any traffic.
DHCP and a Windows system policy locking out user networking configuration are the next line of defense. If the machine needs to have a static IP address, let DHCP handle this with a reservation instead of configuring it locally on the workstation.
All of this is more expensive to implement, but how much did that 2+ hour outage cost? Many end users have learned enough to be dangerous these days, and corporate policies removing IT types from the field does not help. Add to this the criticality of inter-machine server communications and you've probably justified the expenditure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 06:55 AM
12-05-2000 06:55 AM
SolutionIn the programming world it is standard to require that TWO, repeat, TWO digits of a critical number be different to prevent mistyped digits from causing major problems.
I myself prefer all three numbers of a segment to be different, thus reducing the possibility of an error by a factor of 1000.
Example:
138.84.101.xxx
138.84.854.xxx
In the above example none of the digits in the segments in the class B address above (101 versus 854) are the same. It would require some effort to mistype three numbers and thus cause a problem.
Of course YMMV and the world is constantly designing and improving faster, dumber idiots to get around our efforts at making things idiotproof.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 09:44 AM
12-05-2000 09:44 AM
Re: N-Class server & Network Duplicate IP Address
certainly though, it would not be a complete solution - there could still be problems with connections initiated from the server with the stolen IP address.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 01:30 PM
12-05-2000 01:30 PM
Re: N-Class server & Network Duplicate IP Address
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2000 04:56 AM
12-06-2000 04:56 AM
Re: N-Class server & Network Duplicate IP Address
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2000 05:42 PM
12-08-2000 05:42 PM
Re: N-Class server & Network Duplicate IP Address
On all critical servers I hardcode the ARP table.
I.E.
DNS server,
NFS servers,
App servers.
Build a table of
IP MAC-ADDRESS
I made a little boot script that looks at a control file (/etc/rc.config.d/hardarp)
The boot script then does this...
if [ "${LOAD_ARP_TABLE}" == "1" ] ; then
if [ -f "${ARP_TABLE}" ] ; then
/etc/arp -f "${ARP_TABLE}"
echo "Caution ARP table loaded from $ARP_TABLE"
sleep 1
fi
fi
While it may not affect clients, at least my servers never loose communication....
Regards,
Shannon