OpenNetAdmin

Track. Automate. Configure.

Home About Features Community Develop
Download this project as a tar.gz file

config_diff oddness

tmyoungjr

27-04-2009 12:07:00

so if you note below - im using config_diff - but the synopsis mention config_display

and it also states that if no ida or idb is included it'll grab the most recent.

but when i run it - all that happens is what is seen. i verified that the host id is accurate (but i did try it with the hostname too) and i get no output - just the help again.

something perhaps pointing incorrectly?

[tyoung@ipplan dcm-v1.17]$ perl dcm.pl -r config_diff host=26
Use of uninitialized value in numeric eq (==) at /usr/lib/perl5/vendor_perl/5.8.8/IO/Socket/SSL.pm line 1185.

config_diff-v1.00
Displays the difference between selected archive entries

Synopsis: config_display [KEY=VALUE] ...

Required:
host=ID or NAME[.DOMAIN] display most recent config for specified host
type=TYPE type of config to display -
usually "IOS_VERSION" or "IOS_CONFIG"
Optional:
ida=ID First config ID to compare against idb
idb=ID Second config ID to compare against ida

Note:
If you don't pass any IDs you will get the two most recent configs
related to the host/type you provide.

Matt

27-04-2009 12:43:04

First off, I'll fix the name in the help output to config_diff as it should be...

Second it looks like it is failing due to no type option. Host and type are both required options.



On a side note:

The SSL.pm related perl error you are getting could be disabled by adjusting the dcm.conf file appropriately. Depending on how you have your environment you can get the SSL stuff working fully, or if you dont need it you could adjust some of the following options as needed for your environment:


'ssl' => 0, ## Did the uri specify http or https?
'sslAvailable' => 0, ## Does this perl installation support SSL?
'sslWarning' => 1, ## Warn on STDERR when connection is insecure


These weren't really documented much so I figured I'd mention them here.

tmyoungjr

27-04-2009 13:03:52

shite - i hate missing easy stuff!

its a monday eh?

tmyoungjr

27-04-2009 13:06:50

ahh heres a problem :

ERROR => This command requires the xdiff pecl module, which is not installed, please see http://pecl.php.net/package/xdiff

time to go rectify that!

as for the SSL stuff above - that error doesn't bother me any - and i can certainly go take care of it :)

Matt

27-04-2009 14:17:16

Yes, yes it is a Monday.. :)

Good deal the check worked to see if xdiff was there or not. It should be fairly easy to get installed.

Yea I figured the SSL stuff was not an issue for you. I usually leave it alone on most of my boxes as well. Figured I'd throw the comment in about it just in case someone else wanted to know how to get rid of it.

Later....

tmyoungjr

27-04-2009 14:46:09

Yes, yes it is a Monday.. :)

Good deal the check worked to see if xdiff was there or not. It should be fairly easy to get installed.

Yea I figured the SSL stuff was not an issue for you. I usually leave it alone on most of my boxes as well. Figured I'd throw the comment in about it just in case someone else wanted to know how to get rid of it.

Later....


interesting. installed xdiff - but still doesn't see it. php -m sure does.

its gotta be looking in the wrong place (although i'd assume it'd basically just check php -m for 'xdiff')

Matt

27-04-2009 14:57:13

PHP is a fun one sometimes. When you do a php -m at the CLI it is invoked right then and there and would probably show correctly (it even can parse a different php.ini file than the web server does)

I think the issue is that you need to restart apache. Apache loads up those php modules etc on startup so even though it is installed and the CLI sees it, Apache wont until the restart. Apache is involved because the code that runs via DCM is really just the php code on the web server.

Thats my guess for now.. give it a shot.

tmyoungjr

28-04-2009 06:44:02

yep the restarting of httpd did the trick in regards to xdiff.