
Managing Lots of IP Addresses? 97
haggisbrain asks: "I'm a Systems Administrator and I've recently started work with a new company where I'm now helping to support a much larger number of nodes than I've previously supported. We have just over 1000 nodes to support, but no efficient method to manage the IP addresses and subnets used. Previously, an Excel Spreadsheet has been sufficient enough for my needs, but now I need to find a new way. Can someone recommend a piece of software which can help me? Is there a simple way to list and view the IP addresses used on my network?"
Look@Lan (Score:5, Informative)
Re: (Score:1)
I'll venture a whirl.
Need more information (Score:3, Insightful)
When other people figure out a complex organizational scheme for a spreadsheet they often turn it into a database. If you have kept a spreadsheet for a similar task, on a smaller scale, then you should be able to identify very quickly which axes you need to expand in order to accomodate the larger task.
Re:Need more information (Score:5, Insightful)
First, some of my routers had as little as 16 megs of ram. Route aggregation is essential. So its not just assign it to customer X, its "Assign a
Second, there is the question of conservation. Today its assign a
But, see, I've been doing this for years now and customers come and go. Quite a few of the blocks assigned in my list may be dead; no longer associated with active customers. I don't want to go breaking larger blocks if there's an assigned but dead
And lets not forget reverse-DNS. Ideally I want the customer to have some sort of control over it. So now its, "Clean dead assignments from the list. Then assign a
Needless to say, a spreadsheet is not very helpful for any of this. Finding that optimal
A. Processes the cancelled customer list so it knows which assigned blocks are dead,
B. Find's the optimal
C. Sets up an appropriate delegation so the customer will be able to manage the reverse-DNS for his IP addresses but no others.
And no, I never did find a good system to do this. I used a flat file that could be used to generate a graphic representation of the assigned addresses and tagged all blocks to customer ids so I could automatically check them against the accounting system. It was better than excel but it wasn't good.
Grep, cut, sed, awk (Score:2)
Sure you could do it in C if you're familiar with the IO and text manipulations in that language--I always wanted to learn C but never devoted enough free time to it. The largest motivator to write the system from scratch in C is if the list becomes long enough that grep and awk can't process it quickly enough to keep up with
Re: (Score:2)
Re: (Score:2)
However, the relevant searching would take some time to do efficiently in a DB, and the stated number of subnets is quite small, so writing the algorithms in Perl would be easier - and as I expected there are some potentially useful CPAN modules:
- http://sea [cpan.org]
Re: (Score:2)
Modify (Score:2)
Re: (Score:1)
Re: (Score:2)
Use a database (Score:2)
http://www.postgresql.org/docs/current/static/func tions-net.html [postgresql.org]
So in theory you could have a script for "A" and "B" to automatically free up and find blocks.
And a script for "C" to actually allocate a manually decided block and set up the delegation etc.
Doesn't actually seem too hard if you start with a decent database schema, and are using sane DNS software
Of course there are super expensive off the shelf sol
Re: (Score:2, Interesting)
While I'm not managing more than a couple of /22s, that's still a lot of subnets, as we're mainly doling out /29 and /28 blocks. I've had all of parent's issues (minus router memory, so far), and I'm still doing fine with a spreadsheet.
What's the trick? Visualisation. [imageshack.us] Look at the image:
So, if a box occupies a single ro
Re: (Score:1)
Re: (Score:2)
Yeah, I was thinking that. Garbage collection, dude! It's a solved problem that just needs a GUI.
DHCP, FTW!!!! (Score:2, Funny)
Re: (Score:1)
Re: (Score:2)
Re: (Score:2)
He's not saying its hard to ASSIGN the addresses to the actual boxes, he's saying its hard to keep records straight of which server has which IPs, what their gateways are, etc. Especially if you're dealing with supernets or other more complicated real world setups.
DHCP with reservations is indeed a good way to hand out the IPs, though I've yet to see a convincing argument of why its more efficient than properly
Re: (Score:2)
The submitter had about a thousand IPs to hand out. That's either a reasonably significant server farm or client machines. In either case, I don't want to have to pull a config file from a central server every time I reimage or replace a machine; instead, I just register the MAC address with the DHCP server and put t
Re: (Score:2)
I see maybe a dozen DHCP answers already, so I'll just pick on this one. If he's asking for that large a block, DHCP almost certainly isn't an answer. Fixed IP addresses on a per server basis is important in some environments, especially managed server environments in which security is tied to specific addresses.
Using DHCP does not preclude tying certain IPs to certain machines. You simply create a MAC <-> IP mapping and your DHCP client will always get the same IP.
I make this point because a hell
Re: (Score:2)
Re: (Score:2)
The cost of managing static IP address allocations for 1,000 hosts, and keeping those hosts co
Re: (Score:2)
Re: (Score:2)
I didn't skip your last paragraph, but I did only read the first sentence, sorry.
This seems backward to me too. If you don't know which systems are running which services, how did you get the services going on those machines to beg
Re: (Score:1)
Re: (Score:2)
Re: (Score:1)
Maintenance is pretty darn trivial. Write a quick Perl script to generate and push the config files from a central database, and there basically isn't maintenance. (There is some, but nowhere near one administrator's work for a moderate- to medium-sized place.)
Furthermore, there are presumably routers somewhere holding the network together. You could use t
Re: (Score:2)
Re: (Score:1)
You said:
Re: (Score:3, Informative)
Uhhh... (Score:4, Insightful)
Re: (Score:2)
The poster did not state that the nodes are end user PC's. Ever try using DHCP to assign addresses to your load balanced application servers? Oracle servers? er, DHCP servers?
jfs
Re: (Score:2)
Don't most DHCP servers these days support assigning "static" IPs to hosts based on their MAC address? Hence if you do reconfigure the networ, all it takes is going to each server and releasing/renewing the DHCP lease on each of them, rather than trying to reconfigure the myriad of machines and IP addresses. (Plus, most OSes let yo
nmap & dhcp? (Score:3, Informative)
Then, make sure you're using dhcp to assign the addresses.
Use nmap to check for weirdness.
Re: (Score:3, Insightful)
Of course, after that I'd probably write a script to call up each router, compare their routing table
Re: (Score:1)
When we put in the app we had 16
It's a joke!!! save your mod points, really (Score:1)
IPplan (Score:4, Informative)
http://iptrack.sourceforge.net/ [sourceforge.net]
Re: (Score:2, Informative)
Re: (Score:3, Insightful)
justf'ingoogleit (Score:2)
Re: (Score:2)
Which is basically what you said, but with much less tact
Regards,
dj
Dynamic Host Configuration Protocol (Score:4, Interesting)
On top of DHCP, add Dynamic DNS and you're almost all set. Just make sure to use a DHCP and DNS server from the same producer, they're generally not 100% compatible with one-another if you don't. They might be 99% but that 1% creates a whole world of trouble.
Re: (Score:2)
Re: (Score:3, Informative)
You don't want users connecting their own systems onto the network whenever they feel like it. All PC's in our university have static IP's. And an alarm goes off whenever anyone as much as removes a single computer from the network. Even the cables from the router to the wall sockets are manually connected and disconnected. There are however, Wi-Fi areas for anyone who wishes to connect their laptops to the network, and users are free to use USB memory keys
Re: (Score:2, Funny)
>And an alarm goes off whenever anyone as much as removes a single computer from the network.
That'd be quite a bit of overhead, what with pinging every single machine constantly to check it's state. No DHCP server I've seen would do that, but with the open source DHCP servers, it wouldn't b
Re: (Score:3, Insightful)
That works fine if you only have small systems where every box has one IP. What about the webservers where you are running 20-30 websites on a single box, or application servers with a similar number of unique IPs?
We've been dealing with spreadsheet hell at the company where I work for years now, and it is only getting worse. We've got huge multi-page spreadsheets with hundreds of nonroutable network subnets in them. Worst thing about this is that ultimately, the spreadsheets cannot really be trusted bec
Re: (Score:2)
Re: (Score:2)
Re: (Score:1)
User may just turn the computer off before unplugging it. Assign its former Ip address and MAC address to their personal computer's network interface, and plug it back into the network. It doesn't matter whether you run DHCP service or not, you are just as vulnerable to attack. (Presumably if you DO run DHCP service on all your systems, you use static assignments, and if the MAC address is not registered, and assigned an address, the system does not get an IP.)
Your choice of network protocols CAN'T s
Re: (Score:1, Funny)
So, if a computer crashes hard or is turned off, you get paged? That's got to be very annoying when the number of systems is greater than 100.
Even the cables from the router to the wall sockets are manually connected and disconnected.
I've never seen an automatic cat5 cable connecting/disconnecting machine. Where can I buy one?
Re: (Score:2)
Re: (Score:1)
Just like the average ask slashdot.. (Score:1, Troll)
Re:Just like the average ask slashdot.. (Score:5, Insightful)
Asking slashdot is informative for everyone. Sure, google may turn up a few thousand hits, but there may still be some gems hidden in there that slashdot can provide links to.
Maybe people will find a new version/product that they didn't know they wanted/needed.
Re: (Score:1, Insightful)
Anyone who's had an IT position at a level slightly above Geeksquad tech would know to use DHCP/DNS. Anyone who's administered a home network I would assume knows how DHCP works.
Its questions like these that make me understand the perception on
Re: (Score:2)
Dynamic is nice if you plan to be hands-off, but it CAN be a royal pain if you need to be responsible for the environment.
Re:Just like the average ask slashdot.. (Score:5, Insightful)
"Hey Slashdot, I'm good at my job but I don't know everything.. please help me. I've already googled around for at least an hour to see what solutions exist. Being a social and intelligent human being who doesn't live in a vacuum, I'd love to have a conversation with other administrators about what solutions they have found valuable. I'm hoping that I can learn something those who have already investigated these solutions. I want to learn from your experience and leave a public record on Slashdot for other people who might have the same need in the future."
Re: (Score:1)
Managing IPs / DNS (Score:4, Informative)
The usual suspects for answers to this question are as follows:
NorthStar [brownkid.net], which is quite feature rich. "NorthStar is a system to help track and allocate blocks in an IP Network"
IPplan [sourceforge.net] which is another open source product.
And PHPip [freshmeat.net]
If you want to go commercial VitalQIP Enterprise [alcatel-lucent.com] could suit your needs quite well.
Berny
Re: (Score:2)
We rolled our own IP address management system. Postgres apparently has some IP-specific data typ
Re: (Score:2)
Northstar works for what it does, but it's abandonware. I guess the author graduated and no longer wor
Network management (Score:3, Informative)
Re: (Score:2)
One Word... (Score:1)
Ubersmith Datacetner Edition (Score:3, Informative)
ummmm.... DNS... (Score:2)
Personally I like Lucent's VitalQIP.
nmap and traceroute (Score:1)
Nmap - To see which addresses are in use and what the servers are doing.
Traceroute - To see where in your network the IP address is.
Also make sure your reverse DNS is updated when you assign an address to something important.
Cheops-NG (Score:2, Insightful)
Previous Ask Slashdot discussion (Score:3, Informative)
http://ask.slashdot.org/article.pl?sid=06/04/26/2
What's your environment like? (Score:2)
We designed some software that we use to manage our IP network, called Ganymede [utexas.edu]. It's designed to track data in a transactional object store, then turn around and re-build BIND files, NIS maps, and whatever other directory services data you care to manage with it. It's a bit unconventional, but if you need to be able to have full scripting control over your environment, it's really very powerful.
Drop me an email if you're interested in talking about it.
Using the right tool for the job (Score:3, Insightful)
Awesome. By using a spreadsheet, you can "what if?" and see what would happen if you were to change a certain node's address, as the change instantly propogates through various calculations, ultimately altering that final cell either subtly, or drastically. You can even make a pie chart that shows the addresses!
But best of all, since it's not just a spreadsheet -- it's an Excel(TM) spreadsheet! -- you have the advantage of Microsoft's advanced proprietary technology. Pity the fool who has to settle for Lotus 1-2-3 to .. um .. record a list.
Stick with a spreadsheet. It's only 1000 nodes. (Score:2)
Re: (Score:2)
The first thing you want to nail down is a consistent convention for naming and numbering. Everything will fall right into place after that.
Depends on your needs... (Score:1)
Carnegie Mellon's NetReg (Score:1)
Rather then just repeating what I said the last time the subject of IP Address Management came up on slashdot, I'll just link to it [slashdot.org].
Browse the NANOG archives (Score:1)
http://www.nanog.org/mailinglist.html [nanog.org]
We use IPPlan (Score:2)
Why IPPlan? Because the other free alternatives are even worse.
Access Database (Score:1)
Home Grown Sometimes Best (Score:2)
Big Blue Tool (Score:2)
I used to work at a certain large business machine company with their own class A. There was an internal website one could go to, "iptools". You entered info on who you were, your dept, type of machine, physical location, etc. and it would assign you an IP. It had tools for when you moved a machine from one subnet to another (like when moving buildings) as well.
There were monitoring machines that could tell when IPs were being used. If you didn't use a machine for a while (months?) you'd get an email from
IP Address Management (Score:1)
1000 nodes? (Score:2)
You could manage 1000 on the back of a napkin almost.
Alternative to excel spread sheets (Score:1)