Re: [cobbler] Extending cobbler

2012-06-07 Thread Ohad Levy
On Thu, Jun 7, 2012 at 3:31 AM, Daniel Ullfig da...@grmcompany.com wrote: Hello everybody: I’m new to the list, and I’m new to cobbler. I stumbled upon cobbler looking for a solution to an idea I have. I’m working on a voip server idea. Mostly a front end to FreeSwitch. I think most voip

Re: [cobbler] Extending cobbler

2012-06-07 Thread James Cammarata
Hello everybody: I’m new to the list, and I’m new to cobbler. I stumbled upon cobbler looking for a solution to an idea I have. I’m working on a voip server idea. Mostly a front end to FreeSwitch. I think most voip systems handle new phone configuration backwards. You enter configuration

Re: [cobbler] Extending cobbler

2012-06-07 Thread Greg Swift
On Thu, Jun 7, 2012 at 7:15 AM, James Cammarata j...@sngx.net wrote: Hello everybody: I’m new to the list, and I’m new to cobbler. I stumbled upon cobbler looking for a solution to an idea I have. I’m working on a voip server idea. Mostly a front end to FreeSwitch. I think most voip systems

Re: [cobbler] Extending cobbler

2012-06-07 Thread Daniel Ullfig
I'm looking further into this, and it seems that the biggest problem is detecting that what you plugged in is a phone. Assuming you have DHCP turned on on the phone, the dhcp message only contains a mac address, and a vendor code. Not sure if this is enough to reliably detect that someone

Re: [cobbler] Extending cobbler

2012-06-07 Thread Cole, Jim
Since this is phone related, why not talk to the phone guys? PBX In a Flash?!? Their EndPoint Manager might be exactly what you're looking for: http://www.pbxinaflash.com/community/index.php?threads/piaf-endpoint-manager.7097/ Some quick features: * Finding devices on the network that haven't

Re: [cobbler] Extending cobbler

2012-06-07 Thread Greg Swift
So... thats fairly doable, the following basic structure should associate the devices in a class: class myphones { match if ( ( (substring (option vendor-class-identifier, 0, 12) = ciscophone1) or (substring (option vendor-class-identifier, 0, 12) = ciscomodel2) ) and match if

Re: [cobbler] Extending cobbler

2012-06-07 Thread Greg Swift
that being said, its been a while since I did that in actual production (for a cable voip system i did)... say ~7 years. but thats what I remember it looking like. -greg On Thu, Jun 7, 2012 at 3:57 PM, Greg Swift gregsw...@gmail.com wrote: So... thats fairly doable, the following basic