catalog/INDEX010064400000000000000000000013220775723251000132670ustar00rootroot00000000000000distribution layout_version 1.0 data_model_revision 2.40 uuid 727d8ff2-1ba2-11d8-9908-0060b0ebbbda mod_time 1069364552 create_time 1069364552 path_max 255 name_max 100 media sequence_number 1 vendor tag Benny title "bennyvision.com" end product tag NRPE data_model_revision 2.40 instance_id 1 control_directory NRPE revision 2.0 title "NRPE 2.0" mod_time 1069364552 create_time 1069364552 architecture HP-UX_11.00_700/800 machine_type 9000/[78]* os_name HP-UX os_release ?.11.* os_version ? vendor_tag Benny directory / all_filesets NRPE is_locatable false fileset tag NRPE data_model_revision 2.40 instance_id 1 control_directory NRPE size 264821 title "NRPE" mod_time 1069364552 create_time 1069364552 state available catalog/dfiles/INDEX010064400000000000000000000003010775723251000145310ustar00rootroot00000000000000distribution layout_version 1.0 data_model_revision 2.40 uuid 727d8ff2-1ba2-11d8-9908-0060b0ebbbda mod_time 1069364552 create_time 1069364552 path_max 255 name_max 100 media sequence_number 1 catalog/dfiles/INFO010064400000000000000000000002120775723251000144160ustar00rootroot00000000000000control_file path INDEX size 193 mode 0444 mtime 1069364552 tag INDEX control_file path INFO size 198 mode 0444 mtime 1069364552 tag INFO catalog/NRPE/pfiles/INDEX010044400000000000000000000005560775723251000153230ustar00rootroot00000000000000vendor tag Benny title "bennyvision.com" end product tag NRPE data_model_revision 2.40 instance_id 1 control_directory NRPE revision 2.0 title "NRPE 2.0" mod_time 1069364552 create_time 1069364552 architecture HP-UX_11.00_700/800 machine_type 9000/[78]* os_name HP-UX os_release ?.11.* os_version ? vendor_tag Benny directory / all_filesets NRPE is_locatable false catalog/NRPE/pfiles/INFO010044400000000000000000000002120775723251000151740ustar00rootroot00000000000000control_file path INDEX size 366 mode 0444 mtime 1069364552 tag INDEX control_file path INFO size 198 mode 0444 mtime 1069364552 tag INFO catalog/NRPE/NRPE/INDEX010044400000000000000000000002430775723251000145760ustar00rootroot00000000000000fileset tag NRPE data_model_revision 2.40 instance_id 1 control_directory NRPE size 264821 title "NRPE" mod_time 1069364552 create_time 1069364552 state available catalog/NRPE/NRPE/INFO010044400000000000000000000010040775723251000144560ustar00rootroot00000000000000control_file path INDEX size 163 mode 0444 mtime 1069364552 tag INDEX control_file path INFO size 576 mode 0444 mtime 1069364552 tag INFO file path /opt/nrpe/README type f size 6642 cksum 1138950880 mode 0555 uid 0 gid 0 owner root group root mtime 1069364382 file path /opt/nrpe/bin/check_nrpe type f size 112736 cksum 374361107 mode 0555 uid 0 gid 0 owner root group root mtime 1069364383 file path /opt/nrpe/bin/nrpe type f size 144704 cksum 227858799 mode 0555 uid 0 gid 0 owner root group root mtime 1069364383 NRPE/NRPE/opt/nrpe/README010055500000000000000000000147620775723223600152340ustar00rootroot000037777777777*********** NRPE README *********** Purpose ------- The purpose of this addon is to allow you to execute Nagios plugins on a remote host in as transparent a manner as possible. Contents -------- There are two pieces to this addon: 1) NRPE - This program runs as a background process on the remote host and processes command execution requests from the check_nrpe plugin on the Nagios host. Upon receiving a plugin request from an authorized host, it will execute the command line associated with the command name it received and send the program output and return code back to the check_nrpe plugin 2) check_nrpe - This is a plugin that is run on the Nagios host and is used to contact the NRPE process on remote hosts. The plugin requests that a plugin be executed on the remote host and wait for the NRPE process to execute the plugin and return the result. The plugin then uses the output and return code from the plugin execution on the remote host for its own output and return code. Compiling --------- The code is very basic and may not work on your particular system without some tweaking. I just haven't put a lot of effort into this addond. Most Linux users should be able to compile NRPE and the check_nrpe plugin with the following commands... ./configure make all The binaries will be located in the src/ directory after you run 'make all' and will have to be installed manually somewhere on your system. NOTE: Since the check_nrpe plugin and nrpe daemon run on different machines (the plugin runs on the Nagios host and the daemon runs on the remote host), you will have to compile the nrpe daemon on the target machine. Installing ---------- The check_nrpe plugin should be placed on the Nagios host along with your other plugins. In most cases, this will be in the /usr/local/nagios/libexec directory. The nrpe program and the configuration file (nrpe.cfg) should be placed somewhere on the remote host. Note that you will also have to install some plugins on the remote host if you want to make much use of this addon. Running Under INETD or XINETD ----------------------------- If you plan on running nrpe under inetd or xinetd and making use of TCP wrappers, you need to do the following things: 1) Add a line to your /etc/services file as follows (modify the port number as you see fit) nrpe 5666/tcp # NRPE 2) Add entries for the NRPE daemon to either your inetd or xinetd configuration files. Which one your use will depend on which superserver is installed on your system. Both methods are described below. NOTE: If you run nrpe under inetd or xinetd, the server_port and allowed_hosts variables in the nrpe configuration file are ignored. ***** INETD ***** If your system uses the inetd superserver WITH tcpwrappers, add an entry to /etc/inetd.conf as follows: nrpe stream tcp nowait /usr/sbin/tcpd -c --inetd If your system uses the inetd superserver WITHOUT tcpwrappers, add an entry to /etc/inetd.conf as follows: nrpe stream tcp nowait -c --inetd - Replace with the name of the user that the nrpe server should run as. Example: nagios - Replace with the path to the nrpe binary on your system. Example: /usr/local/nagios/nrpe - Replace with the path to the nrpe config file on your system. Example: /usr/local/nagios/nrpe.cfg ***** XINETD ***** If your system uses xinetd instead of inetd, you'll probably want to create a file called 'nrpe' in your /etc/xinetd.d directory that contains the following entries: # default: on # description: NRPE service nrpe { flags = REUSE socket_type = stream wait = no user = server = server_args = -c --inetd log_on_failure += USERID disable = no only_from = ... } - Replace with the name of the user that the nrpe server should run as. - Replace with the path to the nrpe binary on your system. - Replace with the path to the nrpe config file on your system. - Replace the fields with the IP addresses of hosts which are allowed to connect to the NRPE daemon. This only works if xinetd was compiled with support for tcpwrappers. 3) Restart inetd or xinetd will the following command (pick the on that is appropriate for your system: /etc/rc.d/init.d/inet restart /etc/rc.d/init.d/xinetd restart 4) Add entries to your /etc/hosts.allow and /etc/hosts.deny file to enable TCP wrapper protection for the nrpe service. This is optional, although highly recommended. Configuring Things On The Nagios Host --------------------------------------- Examples for configuring the nrpe daemon are found in the sample nrpe.cfg file included in this distribution. That config file resides on the remote host(s) along with the nrpe daemon. The check_nrpe plugin gets installed on the Nagios host. In order to use the check_nrpe plugin from within Nagios, you'll have to define a few things in the host config file. An example command definition for the check_nrpe plugin would look like this: define command{ command_name check_nrpe command_line /usr/local/nagios/libexec/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ } In any service definitions that use the nrpe plugin/daemon to get their results, you would set the service check command portion of the definition to something like this (sample service definition is simplified for this example): define service{ host_name someremotehost service_description someremoteservice check_command check_nrpe!yourcommand ... etc ... } where "yourcommand" is a name of a command that you define in your nrpe.cfg file on the remote host (see the docs in the sample nrpe.cfg file for more information). Questions? ---------- If you have questions about this addon, or problems getting things working, first try searching the nagios-users mailing list archives. Details on searching the list archives can be found at http://www.nagios.org If all else fails, you can email me and I'll try and respond as soon as I get a chance. -- Ethan Galstad (nagios@nagios.org) NRPE/NRPE/opt/nrpe/bin/check_nrpe010055500000000000000000003341400775723223700171440ustar00rootroot000037777777777@@pL3T pGj(R@@  92453-07B11.30?5C 92453-07B11.16.01> D=@(#)$Revision: 92453-07 linker linker crt0.o B.11.37 030623 $ @9HASH 1.0 LbJ0PLvl8g9z=H0sJVO1F=VXJibl=HH+Zpsc8keCVLXd8CQ7 @9HASH 1.0 u5yfgtGOlrWhoJO61H4Go7F8OANoi6hdLREypVOU3wpmbRoj 92453-07B11.16.01>ޕ TN@(#)HP92453-02A.11.00 HP-UX SYMBOLIC DEBUGGER (END.O ILP32) $Revision: 75.04 $@ `PX"@  LX ItX!J44X \O\X 8]X HhbhX IbX Xb(>(@`>(@<>( @P>(@h>(T@Tt>(&h@h >('x@x>((@>(R@h000x@n!Pl!P (;h(;Y @R? @>@ $PRIVATE$$DLT$$PLT$ $SHLIB_DATA$$TEXT$ $SHLIB_INFO$ $DATA_START$ $MILLICODE$$CODE$$LIT$$UNWIND_START$$UNWIND$MILLICODE$$UNWIND$ $UNWIND_END$$RECOVER_START$$RECOVER$MILLICODE$ $RECOVER$ $RECOVER_END$ $PFA_COUNTER$$PFA_COUNTER_END$$DATA$ $SHORTDATA$$GLOBAL$ $SHORTBSS$$BSS$$DEBUG$$HEADER$$GNTT$$LNTT$$SLT$$VT$$LINES$00$ 08@0D@0 T@0` @0 l @0P 8 0  @0  @0  @    U@  8  @,UX 0 @0 @!  80 P@0 @ D0 @0 (@0 8@0 H]0 \bh0 lb0 b0 @0 @0 @0@0 @0  @0  @0  @0 @0, @ P` lO x@'C   @ A @& O Q ?0< @0P @0d @0t @0@0@0`@0@ O @&C @&c @'c @& $@&@@@00@0$@04@0b04@!0d @0x @0 @0 @ 4(  H( X@& d@' p@'# |@' @' @' @'U& @ P`(? P ) A)O P Q+0@0@0@ , ,  @ U(&( $@.0 |@. 4@.0 @.0 @!0 @0 @0  @0 0 @0 D @(0 P @0 ` @0 t @0 @0 A@/s0 A @6 4QU . @ @(0 @IU .0 @:0 @9  @dU .U .0 Q @=3U 4(/0 @ @@<U X/(0 A d@:0 Q x@FUd8/@0 U @GU H/X L8\ \7h l7x |7 7 7 8 8  8@ 8PU 6U 64 P 0U 6LU 6d 0U6|U 6U 6 (@ 8Y TYUl0;Uxx;Up;U ;U;U@; ` @0 U@=0 A@@U=|U@=U=U0=U =@$;U4h@UD @4UP@LU`@dUp@| 0 @0 @E;UEU`FU8F0 A@HUPHdUH| x @h  @0@0 @0 @0 KUJUJ0@0 @0 U @K0 0@K0D @0\ @0t @0 P@L/0 Q@LC0 @MO0 @0 @M0 @M; Ml0 @M < H T d p |   0 @ 0 @0b0@0@!0(@KK /p /pD;(<l:;: /p< ;4;:x:: /p 0 X/p; 0; 0 0`;; ;P; p;0 0 /p<  0: 4/p;d/p;0 A@/p.0 8@ %0 @990 Q@L@Jmain __text_start ___stack_zero __data_startcrt0.oPA-RISC 2.0 Assembler HP92453-03 UX.11.01.24../mapdld.c /CLO/Components/LINKER/Src/csu/CRT_RELEASE ccom options = -ESlit -DA1.1 -DS1.1 -Oq02,al,ag,cn,Lm,sz,Ic,vo,lc,Mf,Po,es,rs,sp,in,vc,Pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,Lu,lb,uj,dp,Fs,bp,wp,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! +k -AeHPC HP92453-01 W111107../maptsd.c /CLO/Components/LINKER/Src/csu/CRT_RELEASE ccom options = -ESlit -DA1.1 -DS1.1 -Oq02,al,ag,cn,Lm,sz,Ic,vo,lc,Mf,Po,es,rs,sp,in,vc,Pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,Lu,lb,uj,dp,Fs,bp,wp,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! +k -Aeset_tpL$0007L$0002L$0004L$0001 __map_dldL$0005__do_thread_initL$0008$real_mcount_ptr_nullerrorC$16writestrlen _crt_errnoitoa__exit S$18DD$itoamemcpyC$43$__map_dld _crt_open _crt_readlseek _crt_mmap _crt_close _crt_syserrorsyserroropenclosereadlwp_setprivatelwp_getprivatemmap_utssys BS$maptsdC$10 S$12DD$itoainvoke_init_fini invoke_fini L$plab_start__set_tp__get_tp$global$$START$$ARGV_environ _fp_status _CPU_REVISION_CPU_KEYBITS_1 _FPU_MODEL_start $$dyncall __tool_init_mcount_real_mcount_ptr_clear_counters _sr4export__d_trap $UNWIND_START $UNWIND_END$RECOVER_START $RECOVER_END __dld_flags __dld_hook __dld_list __SYSTEM_ID _SYSTEM_ID _FPU_REVISIONenviron __d_trap_fptr $PFA_C_START $PFA_C_END ___init_start ___fini_start ___init_len ___fini_len__islwp__cxperf_dld_hook __profil_size __dld_loc __dld_path__ismt_ktepv_tepv__tdsize _thread_init __tls_init__tls_prealloc_dtv_etext_end __init_start __fini_start __init_len __fini_len__errno __tdata_addr __tdata_sztaddr __sys_atexit%check_nrpe.c /tmp_mnt/home/benny/temp/nrpe-2.0/src ccom options = -g -Oq00,al,ag,cn,Lm,sz,Ic,vo,lc,mf,Po,es,rs,sp,in,vc,pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,lu,lb,uj,dp,fs,bp,wp,cl,mo,xn,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! -ESconstlit -Ae driver_command = cc -g -DHAVE_CONFIG_H -lnslB111108C$33M$32 $0000001F $00000020 $00000021 $00000022 $00000023 $00000024 $00000025 $00000026 $00000027 $00000028$L4sd server_port server_name command_namesocket_timeoutquery show_help show_license show_versionuse_sslprocess_argumentsprintfdisplay_licenseexitgenerate_crc32_table alarm_handlersignalalarmmy_tcp_connectbzerorandomize_bufferstrncpycalculate_crc32sendallrecvallstrcmpsnprintfgetoptoptargatoistrdupoptindstrcatstrncat utils.c /tmp_mnt/home/benny/temp/nrpe-2.0/src ccom options = -g -Oq00,al,ag,cn,Lm,sz,Ic,vo,lc,mf,Po,es,rs,sp,in,vc,pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,lu,lb,uj,dp,fs,bp,wp,cl,mo,xn,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! -ESconstlit -Ae driver_command = cc -g -DHAVE_CONFIG_H -lnslBS$utilsS$24$randomize_bufferC$26M$25fopenfgetcfclosetimesrandrand my_connect my_inet_aton gethostbynamegetprotobynamesocketconnecterrno __SB_masks_isdigitisascii _isxdigit_islower_isspace$$mulUstripsendrecvsleep my_strsepstrchrstrpbrkend.c /CLO/Products/XDB/debug ccom options = -g -DA1.0 -DS1.1 -Oq00,al,ag,cn,Lm,sz,Ic,vo,lc,mf,Po,es,rs,sp,in,vc,pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,lu,lb,uj,dp,fs,bp,wp,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! -ESconstlit -Ae driver_command = /CLO/BUILD_ENV/opt/ansic/bin/cc -DCPLUSPLUS -DDIS2 -DSCREEN_SPEEDUP -DREG_NAMES -DCore8 -DDEBUG_DYNAMLOAD -DDYNSYM -DTEMPLATES -DNESTED_CLASS_30 -DNESTED_CLASSES -DXSW -DCORE -DIMAGE_DEBUG -DEXCEPTION_HANDLING -DSHLIB -DDYNSYM -D_HPUX_SOURCE -DNLS -DKSH -DADOPT -DSYSIIIOS -DSYSVHDRS -DPTRACE_SYNC -D__HP_CURSES -DSPECTRUM -Wp,-H256000 -DPA89 -DTIMEX -g -I../include -I../debug +DA1.0 +DS1.1 DS$endcSD$endc __d_syserror__buffer_bufMax__d_pid __rtc_d_trap sigprocmask sigismember__shldp__shlib_funcptr __d_shl_get __d_plt_call__d_eh_catch_throw__d_eh_catch_catch__d_eh_suspend_ad __d_eh_break__d_eh_notify_callback __d_getpid__eh_callback_fptr_end___d_ldsp__wdb_call_dummymulUUX.11.01.06 (ROSE)$loop$return$shmcand$addtmp$two$endloop$fiftnxdyncallUnoshlibs$$dyncall_external$$dyncall_external_20__tdsizeetextedataend_etext_edata_end __SYSTEM_ID _fp_status __profil_sizeLXt>B>B>>/=Xt>B>>/?Xt>B45 (?5A>zx  (?5B>zx>ޔ8w lXt>ޕXt$6T6TXt$6UK6UKy|4/lz x - pHO;A8v˚vY;'Y;hů8&@XFN 4L'-(KwVL!x!xry 4u RmT!xT/}kthhv!xg6eQ0@֘6u-xhŠ !x/P'6//] / gy ƿkY6-˚v8vhů;An bltD8rP.7D7%7744z#!74444@h@7D7%77+4>#)74444+H8 7D7%77+`4!H6 Ȇ 24744447#0&74k?7+`4?K @ 7K?Y@7?@@ 7K?@ @@@@k?ok? k?(7%k?!74#4y4@04 @HK?!K?!7@4 0@@474@4 r+4?K @@7?4y4@p4@7?7?7@@44y4@ 4+47@J @K>K?K? @O? 44@CW?7_7?7@7 "6/'7?7747?'I'G9 8ࢋ1DN1dN3'2 009%G' Z0N1N3! ' 2  :7`1@1@ 9eG'Z0N1$N;J'J:K 66`9@9@9eG'Z0N1N3! ' 2  U6`1@1@ 9eG'Z0N1$N;J'J:K 6`9@9@9eG' Z0N1N3! ' 2   6s`1@1@ 9eG'Z0N1$N;J'J:K 7`9@9@9eG'Z0N1N3! ' 2  7Z`1@1@ 9eG'X0N1$N1:J'J97!`8G ' J <7=`6?@7?7\7W 7?]P6?7=6t7967Z?7_6s`j 78676@k?ok< k<k<k4`@ 5z4` @G> *(4<47_4+4-I K>)K>A@ 0K>YK>i4ߟ444k?K>945k?5@`4 $(7 Jk?4?4k?44@4$7  k?K>Q_ k?45@4 7(48kQ45k?4@4#h75z@ @k>I +4*k>C>+3 4k>4!k?)46 +k>֓ c>44Ka?k>46Ka?k?1647k>6 Ka?k>5B 4=k>7+`K>k? ֠ 49k>7?X+k?!4 48k>6+`k?7 4"H_k?+`4<Kpk?+`4-k?9+`5k?Q4!4=!xk?Ypk?A(43k<6z4_m47=(4:k<7Z4_%4G=(4<kak?q (K>1k?64"k?4A k? }+`k>4&4 k?y+`4$h07>7>k>444? -7K;KKs> k?Ku=!Ks=) k?  4 "@@@@  4 "@R@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4 "@@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4& "@@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4r "@@@@k?7_@K?Y@7?+4!4! @ <4?@@k?ok? k?( 7%k?!74#4yP4_4 @HK?!K?!7_u4 0@@474_54 r+4?K @@7?4y`4_4@7?7?7_44yp4_4+47_uJ @K>K?K? @O? 44@CW?7_7?7@7 " 60/'7?7747?'I'G9 8ࢋ1DN1dN3'2 009%G' Z0N1N3! ' 2  :7`1@1@ 9eG'Z0N1$N;J'J:K 66`9@9@9eG'Z0N1N3! ' 2  U6`1@1@ 9eG'Z0N1$N;J'J:K 6`9@9@9eG' Z0N1N3! ' 2   6s`1@1@ 9eG'Z0N1$N;J'J:K 7`9@9@9eG'Z0N1N3! ' 2  7Z`1@1@ 9eG'X0N1$N1:J'J97!`8G ' J <7=`6?@7?7\7W 7?]P6?7=6t7967Z?7_6s`j 78676@k?ok? +4?+497 (74 j@X@+7?4:``07_ 8 7_4?K?YK?@O?+47+486 7 K?YK?Y+456 0 `7_4c=K?Yk?7_M4K?Y@7?k?o_4+4=7 (@+476 x@+`43+48+`4#h`(h`7 4hu6wh@h+`446hs  hw!k?4?4k?74_4$+`46k?j!H7_u@Hx !@K?HZ_EHyK>+44k?_UJ ]+`h` 4?ha+`4<Kp+`47+`49k 4x>j44477K>@O?( 4:k?!7Y7Z_}4K>@z@@`@@K?@ @Ku>Ks> k?Ku=Ks= k?KuKs>  k?Ku?AKs?I k?Ku=aKs=i k?k?ok.k.K.K.# -7g/QG/Q? B+H3 Xb *+H4 P +H5 H!rG/Q "# 7#-`7"b 6z#-`7" 6#-`7" 60#-`7" 6+49 #-`7 " 4:+49 #-`7# 7#-`7"b 6z#-`7G/Qҕ +H6 X#* " 4:p#-`7# 7#-`7"b 6z0#-`7" 6P#-`7" 64,D#-`7" 6`4#-`7 " 4:#-`7# 7#-`7"b 6z P#-`7" 6 #-`7" 6#-`7" 6 #-`7 " 4: #-`7# 7 0#-`7"b 6z #-`7" 6 #-`7" 6 0#-`7" 6 #-`7 " 4:p#-`7# 7#-`7+H3 Pb ##X7G/Qҕ B+H6 X *+H! P" +H? H 4#-7#0$(74+H9 x#-7+H: `#-7+H: p+H9 x+`48 #0*`7g/QG/Qt%7/a4#. 77/a4#0( 74g/a4g/e7/u+49 4#.P7c7sk/i7/a4#0%7k/IK/Ik/i4k?+H3 @` :+`H: 7/a7?#,(7k/YK/Y Z" 6#-`7+`H: #.7X44k?+H! @ J+`H: 77y7?+H7 `#. 7k/Y4#-7+`H: #.7K/Y`:"b 6z #-`7P4K/Y :" 6#-`74ZK?46B# 7@K?4#-`74K7k/Ak777y4#0%7k/IK/AK/I Z" 6#-`7+`H: #.74G7y? Z"b 6z0#-`7+`H: #.7`4G7}ҕ Z" 6#-`7+`H: #.74G7g/Qc?77# 7 #.7 *"b 6z0#-`7*" 677#-`74#-7G/Qң4|K.@O/Ku>QKs>Y k?Ku>!Ks>) k?Ku?Ks?  k?Ku>AKs>I k?Ku>Ks> k?Ku=Ks= k?Ku>Ks> k?k?ok.k.k?4k?4k?K.` `4?7/4+48 0# ,87K.K.7/# ,h7k?K? K? RK?6?4? " 4? `@4+h4 X4+h5 H4+h6 PKa?H:# ,7+h< `+H! ` @ 4?:Ka?H:# ,7+h< x+H? x@ X4?Ka?H:# ,7+h< pKa?H:# ,7+h< hRKa?H3k?2+h @4?@G+4: 4+48 P+H4 h +47 `+H7 h# ,87+` K?ARK?6?k?K?K.A"+4: # ,74 6?k?K? @+4: # 7# -(7+4: K.K?t K?# -X7+` K?6k?K?K.^@+H3 p R+H4 X :+H5 H "+H6 P 4?44|K.@O/@ @K?@ @k?7k?9 " 4:+H9 `#-`74#-7K?Y@7?@@7 $4?@k?k?K?4A*K?k?4k?K? @K?4  *K?ҶK?6k?K?tk?K?6?k?K? _m@K?K?+`440 K?6k?K?4^@@7?7k?9k?14?k?k?K?K?1@K?9K? ? tk?K?Ҷ?6K?K? t4 +`440 k?K?4?k?K?K?1_5@K?4? 7@7?Ku=1Ks=9 k?Ku=Ks= k?Ku=Ks= k?Ku?Ks? k?Ku=Ks= k?Ku=QKs=Y k?k?7k>9k>1 "04:0#07P#0'7k?K? JK?#0'07k?K?#0'`7"4#0'7k?K?#0'7k?K?K>1@#0'7k>7>&0"060,!0N#070.q0n9D7>&DK>6`ҶK?K>9?vK?6k?K?K>16_@K>Y@7>k?7k?9k?1k?)K?9K?1K?)+47 #0+7k?K?7K?Y@7?Ku>qKs>y k?Ku?QKs?Y k?Ku>1Ks>9 k?Ku?1Ks?9 k?Ku>Ks> k?k?ok? k>k>k>k>7?a4 #. 74g?aK>g?eK>7?i#!(7 K>#0*7k?K? :"06`K>#-`747?iK?J H9K?K#0+(7K>#0+X7 @k?"b06zK>#-`7H44K>"06#.704K?J4#0+7K>K>H?`2"b06z#-`7h4K>J7?a4 #0+7k?K?a Ka?H64ނ "4܂ B4ʂ b"06 #-`7"06`#-`7R"06#-`7" "04:#-`7444|K>K? @O?Ku=Ks= k?Ku=Ks= k?Ku>Ks> k?Ku>aKs>i k?Ku>Ks> k?k?ok? k?k?k>k>7?qk?K>Btҕc?iKa?H6 :C?i?Ka?H3 4 0 C?i# 877` 4k?Q4k?YC?i4` K>6k>B?c?iC?it4 C?i4 B4 k?YK>6k>Bc?i4k?YC?iz# h7!Ka?H4 :C?iҶKa?H! 6 4 0 C?iҚ# 877 K?YK?Q#0#@C?iҶ6?=k?QK>6tk>BҶc?iK?Y4 !C?iz# h7!Ka?H4 :C?iҶKa?H! 6 40 C?iҚ# 77!K?QԕC?i4%Ka?H? :C?itKa?H5 406C?i# 77 4 e Uk?QK>6k>@?c?iC?iҕ4\ K?7? x4K?6tk?K?QuK>6k>@?c?i_C?iҕ C?i# h7 Ka?H! :C?iKa?H4 40 C?i:# 77 4K?7?q RU6Ҷ6k?aK?a聚!䀊 *  j4RK?Q֟ `4K?q K?Q _k?QK?Q֟ 4K?q K?y  SK?Q tUk?QK?Q46 4K?q K?yִ  VK?  SK?Q tUk?Q@K> K>K?Q ?44|K>K?K?K? @O?k?7k?9K?9# ,7k?K?baK?6?k?K?9K? 4@ rK?9K? ? JK?9K?t Ҷ "K?9K? ? t "K?K?9  *K?7?k?K?~@K?Y@7?Ku>Ks> k?k?7k?9k?1k?)k?K?)Jk?k?K?K?)Ka@K?K?1 K?96K?4#+7k?K?? bK?K? k?K?K? k?K?K?)Jt_-@K?)K?K?<74?7K?Y@7?Ku=Ks= k?Ku=AKs=I k?k?7k>k>k>k>k?qK>Kk?yk?K>K>J#. 77?#0'7K?qK>J5ArK?qK> K>6K?y4#-7k?K? Ka?H6 r7?#0'7K?K? K>`4#-7RK?@bK?qK?6k?qK?yK? k?yK?qK>H?^@K>K?qtK?@ K?K?q67K>@7?Ku=qKs=y k?Ku>Ks> k?k?ok>k>K>H?k?K? 4K>BҶ K>@?` K>BҶc?C?? k?K?BtҕC?5 K?Hk?K?6t6C?ҹ# 7k?*K?K># 7k?K? :K?4?k? K>K?tK>K?4|K>@O?@k?7"060#-`7 "04:#-`7#07P#-`7"b06z#-`7"06p#-`7"06#-`7"06P#-`7 "04:#-`7#07 `#-`7"b06z #-`7"06 @#-`7"06 #-`7"06 P#-`7K?Y@7?@@K?@ @Kuk>k>k>47?Q4#%77?Q4 #%7 BK>K>K>K>K>k?#0)7K>@X @@7?k?7k?9k?1k?)k?!+`H?0K?9 JK?1K?)K?!K?K?k?#0%7k?K?7K?Y@7?@k?7+`H6x#0%77K?Y@7?k?k?k?@@k?ok?9k?1k?)+H6 @4"#*7+H! < "+h 4K?9 Z +H3 ` *K?9K?1K?)#(X7Z+H4 *K?9K?1K?)#(X7 @+H# 4|K?Y@O?@@74k?@7?@ @@  4( "@@@@Ka?4! <4?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@? /usr/lib/dld.slcrt0: errno: ERROR couldn't open ERROR reading ERROR bad magic number/system id for ERROR bad hpux aux header for ERROR: mmap failed for dld (text) (bss) (data)? crt0: errno: ERROR: mmap failed for TSD tsd8\7h8\8\8\8\8\8\8\8\88\8\8\8\8\8\8\8\8\8\8\8\8\7x8\8\8\8\8\8\8\8\8\8\8@8\8 8\8\8\8\7h8\8\8\78\8P8\78\8\8\7Incorrect command line arguments supplied NRPE Plugin for Nagios Copyright (c) 1999-2003 Ethan Galstad (nagios@nagios.org) Version: %s Last Modified: %s License: GPL with exemptions (-l for more info) Usage: check_nrpe -H [-p ] [-t ] [-c ] [-a ] Options: = The address of the host running the NRPE daemon [port] = The port on which the daemon is running (default=%d) [timeout] = Number of seconds before connection times out (default=%d) [command] = The name of the command that the remote daemon should run [arglist] = Optional arguments that should be passed to the command. Multiple arguments should be separated by a space. If provided, this must be the last option supplied on the command line. Note: This plugin requires that you have the NRPE daemon running on the remote host. You must also have configured the daemon to associate a specific plugin command with the [command] option you are specifying here. Upon receipt of the [command] argument, the NRPE daemon will run the appropriate plugin command and send the plugin output and return code back to *this* plugin. This allows you to execute plugins on remote hosts and 'fake' the results to make Nagios think the plugin is being run locally. CHECK_NRPE: Error sending query to host. CHECK_NRPE: Error receiving data from daemon. CHECK_NRPE: Received 0 bytes from daemon. Check the remote server logs for error messages. CHECK_NRPE: Receive underflow - only %d bytes received (%d expected). CHECK_NRPE: Response packet had invalid CRC32. CHECK_NRPE: Invalid packet version received from server. CHECK_NRPE: Invalid packet type received from server. CHECK_NRPE: No output returned from daemon. %s !CHECK_NRPE: Socket timeout after %d seconds. @R@/dev/urandomrInvalid host name '%s' Cannot map "%s" to protocol number udpSocket creation failed Connection refused by host Timeout while attempting connection Network is unreachable Connection refused or timed out This program is released under the GPL (see below) with the additional exemption that compiling, linking, and/or using OpenSSL is allowed. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @X 8 <  % @%% @&@&\&`&|&&&&&&&&''' '<'@'\'`'|''''''''((( (8(<)))(),)H)L++, ,,,,,,,.`.d......./p6699::::;|<=,=0=x=@@E4E8EFFGH`HIIJKKKKKL(L,L<L@MMM0M8MHMLMhMlMMO  % & . . 06 *9 ; $=| @ E F Hd J J @Z@b2.009-08-2003H:c:a:t:p:nhl%s_NRPE_CHECK@jHP92453-02A.11.00 HP-UX SYMBOLIC DEBUGGER (END.O ILP32) $Revision: 75.04 $ "tcp@r@hJJ..@4&(;F;/XHdF@;;;.6/(E64=6d6@d=|=@L&@|6|6.H|6L;/=/@=%9J@@@00@;?4</p6`[/6 69699:9:'::,: :^:;|L:;t<=,< =$=0=x=D=l=@>@!@E4@EVE8ECEDEyFFOF(FGH`qG(HTHIHIIJIJ6KK%K(KRKK&KKoKL(&5LLL,L<'L8L8L@M'LTMMM0(5M$M,;/p:&:J5KM0Π/p::JB KM0B  n#     (a)0I +!B"n#$%& '+(D)a*z+,-M.f/H0]1253M4c556789:Q [`C;/p /p6 ? g؀@l A<@q @~ @@ @ @ @ @ E< n#a)0I+Bn+DzMfH]5c5Q 6 69  g؀l ` @@@ @ @    n  # a0I+n+Dz !"M#f$H%]&'c()*+Q ,9 9: - 02 34n56#789:a;0<=>?I@AB+CnDEFzGHIMJfKHL]MNcOPQRS T UVnWXYZ#[\]^_`a(bacd)ef0ghijklmInopqrs+tBunvwxy z+{D|a}z~MfH]5Mc5`     @"Q ,: ::@A @E @ @J *' n#a)0I+Bn+DzMfH]5c5Q Ld: :;|\  ܀ca@A @h @r πfр^ n#a0I+n+DzMfH]cQ < <=,\  ܀2 @@ @  n#  a 0  I+nzMfH]c !Q "=0 =0=x &Ԁ  ܀ʀ#@ &( )*n+,#-./a001234I567+8n9:;M<f=H>]?@cABCQ D= =@ Ѐ &Ԁ ܀E@ L @  @Ā@ fh ijnkl#mnoap0qrsItuv+wnxyzM{f|H}]~cQ (@ @E4 +؀$ 0܀'%@ @3 @8 @` 3 @:5 @@Ȁ9 *! n#I+nMfH]cQ CZE8 E8E ܀Y@ @I ݀\߀V n#I+nfHcQ OF FF WԀ| [؀}_ @a @g @8 y #     InfHcQ qG GH`y  WԀ [؀_ @a @g @8 @Ġ@Ƞ 02 34#56789I:;<n=>f?H@AcBC DQ EHHI ؀ ܀ӀF@@ĀK@ R Y[ \]#^_`abIcdenfgfhHijcklmQ nI IJo ~ #InfHc   @ !1"!1#@!1##$X$$X$%$%Z!1"!1#@!1##$$X$!1"!1#$$X$Q%AK KK% % 9% ;% =% ?@% C€6!1"!1#$$X$Q&_K KK& & U& W& Y&! [&% ]@&1 рaӀR!1"!1$$X$Q&5K KL( ro!1"!1$$&BQ'L, L,L<' ' 'ܠ= !1"!1$$&BQ'L@ L@M( ( 'ܠ=   !1"!1$&BQ(5M MM0@ !#$!1%$&&B'() =EN V _@g@py          # -7AINY `h `  ޠ   ` @ @@`   `   ` @@` @    Ġ ` @ @ @   `?     8x@p$H`&O@# (V " *\ ,.b0@ 33  68@:  =?@àA . E  "I 8G JL DNKOT @ R Q ` V cXtU Z`T \@P ^ ` bdѠf  i k m o` q"@ s* u1 wy 8{; C ~@JS@@\@h s |     ʠ  C @S@@\@  @   @H  Q @Z}@       ` @       @@@`"          @ ^  n u @  J@ S  ^ `e `z@  @``   D ``P @   !#%'` ) +-/'1R@@Z@@3b@@@5j@@7r@@9z@@;@@@=@@?@@A@@C@@@E@@G@@I@@K@@@M@@O@@Q@@S@@@U@@W@@Y@@[@@@] @@_@@a@@c@@@e%@@g,@@i3@@k:@@@mA@@oqHsWuf q w| y {` }@       ` @        !  ,  7  B`  M@  X  c  n  y      `  @              `  @        )  4  ?  J`  T@  ^  h  r  |      `  @          `  @      ' 6` @ E  Q  ]@ j@ r@ z@ @@  @  @  @ @@ @ @ @ @@ @ @ @ @@! @# @% @' @@)  @+ @-  @/  @@1 # @3 0@5 =@7 J@@9 W@; _@= g@? m@@A u@C }@E @G @@I @K @M @O @@Q @S @U @W @@Y @[ @] @_ @@a @c @e @g @@i @k @m @o '@@q .@s 5@u <@w B@@y I@{} U ]` @ `   E  Q  ]@ g  r  }        `  @          `  @   ) 3 = G Q ` [ @ e o y     `  @        `  @   ' 2 = H S ` ^ @ i y     ` @         '`  2@  = H S \ e p {` @    ! # % ' )` +@ -  / 1 3  5 7  9+` ;6@ =A  ?L AW Cb Em Gx I` K@ M  O Q S U W Y` [@ ]  _ a c  e g! i+` k5@ m?  oI qS s] ug wp yy` {@ } I@   j`  r@  z            `  @              `  @              #`  0@  =  J  W  _  g  m  u`  }@              `  @              `  @           '  .`  5@  <  B Ǡv `      $!!.# ;@  & g% (*`C,K.S$vL3 ^ /`i 254 79;` > % =% B% D$@F0$HJ&3@ O @ R T (Q UW    2Z7Y \^@A`K  U  gd eg@`i@ l i@ r ozn qs`u  x z |` ~@   `    ph`+@ 4 ? @JX@$$^@%@fo((u@N&^@*{( =        Ơ       ` @    @%` +@ 1  7 =       \@ f  o x    ` @     `    \ f` @         W  _  "@f $` ` '  )` + - / 1` 3P 5@ 70 9  ;! =+ ?5  A?  CF  EQ  GX Ib Km` Mw@ O Q S U W Y [p ]` _P a@ c  e g i@ kX    o p r@ t  v   y` {@ x }     4 >  E      { ` @        ` @    ֠     ` @        @    `    '@ 0 :  `A     p` w@ ~    `  @ 0     @Ϡ       `  @    ' 1 x  `  P @       `ՠ  0@  0@  0 @ܠ "0@ 0&@! ` @ )0)@( +0/@ 09@ 0F@ 0S@  0@ 70@ 0@ ` @ >@ @@ B D F H J 0@ M`  P0@ R0@ 0@  ! (=EN V  0  : _@g@p by c   E R `  l  y        b b! c! c!! _!) c!X  ^!^ _!f c  ]  ]!n ^!w b ! _! c! ! ^! b ! _!  c! !ڠ ^! b  ^! ^ ^ ^! ^  ] ]   _! ^"# ^ - 7 ^A I ^N _" _" cY " "&`h "- "4 "9"@"F"M _"T"Z"a ^"h "p "x " g" f" ^"Ġ _"Π g"ڠ g" _" _" " \# _# ]`  à f     # ` @  @ @ # # #  ` @ @ @    #& #/ #4 ^#:  ^`?      #l #t ^0#~@ .   " 8   D K T @     `  c t ` @     Ѡ #  # #  # " $ # & $ $( ( $3 * $< , $D . 0 $M 2  4   8  :  6 < >  @  A C@ ^ G  H n u L N@  J@ S S T^ R V X`e Z`z P@ \ J ^ E@ ` b``  e D g  d` i`  k@ m o q s u w`  y  { } ' R@@Z@@ b@@@ j@@ r@@ z@@ @@@ @@ @@ @@ @@@ @@ @@ @@ @@@ @@ @@ @@ @@@ @@ @@ @@ @@@  @@ @@ @@ @@@ %@@ ,@@ 3@@ :@@@ A@@  H W f q |  ` @       ` @        !  ,  7  B`  M@  X  c  n  y      `  @              `  @        )  4  ?  J`  T@  ^ ! h # r % | '  )  + ` - @ /  1  3 5 7 9 ; ` = @ ?  A  C E ' G 6 I`  K c@ E _  Q _ O ]@ M Q j c@ S r c@ U z c@ W @ c@ Y  c@ [ c@ ] c@ _ @ c@ a c@ c c@ e c@ g @ c@ i c@ k c@ m c@ o @ c@ q c@ s c@ u c@ w @ c@ y  c@ { c@ }  c@   @ c@  # c@  0 c@  = c@  J@ c@  W c@  _ c@  g c@  m@ c@  u c@  } c@   b@  @ b@   b@   b@   b@  @ b@   b@   b@   b@  @ b@   b@   b@   b@  @ b@   b@   b@   b@  @ b@   b@   b@   b@  '@ b@  . b@  5 b@  < b@  B@ b@  I b@   U  ] ` @ Ӡ _ `   E  Q  ]@  g  r  }        `  @          `  @   ) 3 = G Q ` [ @ e o y     `  @   ! # % ' ) ` + @ - / 1' 32 5= 7H 9S ` ;^ @ =i ?y A C E G I` K@ M O Q S  U W Y'` [2@ ]= _H aS c\ ee _ gp _ i{` _ k@ _ m _ o _ q _ s _ u _ w _ y` _ {@ _ } _  _  _   _  _   _ +` _ 6@ _ A _ L _ W _ b _ m _ x _ ` _ @ _  _  _  _  _  _  _ ` _ @ _  _  _  _   _  _ ! _ +` _ 5@ _ ? _ I _ S _ ] _ g _ p _ y` _ @ _  I @       j`  r@  z            `  @              `  @              #`   0@   =   J  W  _  g  m  u`  }@       !  #  %  ' ` ) @ +  -  /  1  3  5  7 ` 9 @ ;  =  ?  A  C E ' G .` I 5@ K < M B OQSǠU$  J XZ` ]  ace_f\h j VlW np$!r.t ;@  w gv y{`C}KSuv ^ `i  $`  % % % $$&$ @  @   (     7 @AK ; C @J$ U  g @`@  i@ r z `    ` @   %3`    ph`+@ 4 ? @J%BX@u$^@%@fo( xu@&^@  *{ x %R%*%%@*`  %*%*"$%*&(+%*0%@ @ / %1@ 3 0%@5 &G &Y8: &k<&} & >&@@@@&@@B&@@D&@@F&@@@H&@@J& L&@@N&@@@P&@@R&@@T& V& X&` Z'@ \'  ^' `' b'" d'* f'2 h':` j'B@ l'I n'P p'W r'^ t'e v'l x's` z'y@ |' ~' '0'@ 0'@ 0'@ @  0("@ : K3@ " $ [ ? V Yf.)6'0g; 3!"+#_$U% &T' (π)**+,t-b.9/]0$123475:67?8&9:7;07QÀ7i5a[VӀ2,Ȁ;&yJ)0P99`À:`=%PIJsJtMj6b\W]Ӏ<€'3zK+` : K3@"$[?V Yf.)6'0g;3+_ U   T   π*tb9]$7:?&#(&0('P(*,: -:,.:</:D0:T1:d3:|/:5:-:8:`839:`94;567N8<9ր:J;7<@=(>i?@&A߀B5C4DEF6GhH4IJ2K`LYMUNЀO0P+QRfS:TU%VWNXY?Z['\=]0=^P=fB:D:E;F;D;LI;h`ImJ;t`Jn<opqOrsEt-umvwax>yQzÀ{|7}i~5a[VӀ2,Ȁ;&yJ)N0NPN^< _<@`4R]y.NNk7 cX =ۀ(4{L,{0{P{>>$>,>4>L>`>h>>>>>>?,?8?L?T?t?|????????????@`@`?: S  ^  |Ol8%d]>)5|M. 0!P*@@@@AAAA$A4ALAlAAAAB B<BCC4C<CLCXC`CtCCDD D,DLDLDTDTDXDXDdDlD D D D D DDDDDDEE E`<E`=A>??@UAB_CDEFXGmH9I&JeKbL~M?NO*PCQRSS0TU0VP\!ED"E`#El$E&E!E)E`)a*E`*bBcDde[fg`hijkflnm:n(ofpcqrs+tuTv2w.x0.yP./F(0F,1F84F<7FL:Fx;F>F?F4FCFFF`FGF`GGJago;gg ,Y3K0KPKLG(MG,NG8SG<UGTXGd[Gt^G_G`GaGbGcGgGhGkGlH XHpH0sH<`stHT`tHSbhp<h -]5y0yPy|H}H~HHPHHHIII(`IPIhIpIII`߀I`NYcۀiqAi .^70PIIIIJJJ0JDJXJlJJJJ`J`O_djrBj?_``  . V6-rRK/-1ՀACD.-7 W!<"9#u$[%&A'<()H*O+9,X-B.:/v0F1{2Q3l4]50]6P_CkK(oK@pKXxK\`xFyK`yGYHII;JwKdLƀM]NxO|PQ0RPaKK`dK`eZfXg<hyiHjakl~mn0oPrL`€sL`Àt[u^v=wzxyz{|ʀ}Ѐ~0ЀPԀL8`ՀL8`ր]c?|ˀ؀0؀P܀LTL`LlPLL`LPLLLLLLLLLL`M`M`^h@΀0PM$`!!M,`!cn`check_nrpe.c<<>>/usr/include/sys/_inttypes.hint16_tuint16_tint32_tuint32_tint64_tuint64_tintmax_tuintmax_tintptr_tuintptr_t/usr/include/sys/types.hdev_tino_tmode_tnlink_tfpos_toff_tblkcnt_tpid_tgid_tuid_tssize_t__site_t__cnode_ttime_tsize_tclock_t__daddr_t__caddr_t__swblk_tcaddr_tid_tuseconds_trlim_tu_shortu_int/usr/include/machine/vmtypes.hr_physadrval_quadlbl_sflbl_sslbl_slbl_splbl_rplabel_tlk_padlk_flagslk_namelkinfo/usr/include/sys/_fd_macros.h__fd_maskfds_bitsfd_set/usr/include/stdio.h__fileH__fileL__flag__base__ptr__cntFILE__unused__smbuf__newbase__bufendp__va_listva_list/usr/include/stdlib.hremquotdiv_tldiv_t/usr/include/sys/_wchar_t.hwchar_t/usr/include/sys/wait.h/usr/include/sys/sigevent.h__sival_ptr__svi_int__svi_int_ssigvalsigval_tpthread_attr_t__sigev_reserved__sigev_notify_attributes__sigev_notify_function__sigev_value__sigev_signo__sigev_notifysigevent/usr/include/sys/time.htm_isdsttm_ydaytm_wdaytm_yeartm_montm_mdaytm_hourtm_mintm_sectmtv_nsectv_sectimespecit_valueit_intervalitimerspecRTTIMER1RTTIMER0CLOCK_PROFILECLOCK_VIRTUALCLOCK_REALTIMECLOCK_INVALID__clockid_tclockid_ttimer_ttv_usectimevalitimervaltz_dsttimetz_minuteswesttimezonelohi__cycles/usr/include/sys/_rlimit_body.hrlim_maxrlim_currlimit/usr/include/sys/resource.hru_nivcswru_nvcswru_nsignalsru_msgrcvru_msgsndru_iochru_oublockru_inblockru_nswapru_majfltru_minfltru_isrssru_idrssru_ixrssru_maxrssru_stimeru_utimerusage/usr/include/sys/siginfo.h__pad__dev_id__lockpage__addr__gfault__band__fd__file__fault__status__SIGCLD__uid__kill__pdata__pid__proc__datasi_valuesi_errnosi_codesi_signo__siginfosiginfo_t/usr/include/sys/newsig.hsigset__sigset_tsigset_t/usr/include/machine/save_state.hss_fp31ss_fp30ss_fp29ss_fp28ss_fp27ss_fp26ss_fp25ss_fp24ss_fp23ss_fp22ss_fp21ss_fp20ss_fp19ss_fp18ss_fp17ss_fp16ss_fp15ss_fp14ss_fp13ss_fp12ss_fp11ss_fp10ss_fp9ss_fp8ss_fp7ss_fp6ss_fp5ss_fp4ss_fp3ss_fp2ss_fp1ss_fp0__fp_dbl_blockfp_dbl_block_tss_fp31_loss_fp31_hiss_fp30_loss_fp30_hiss_fp29_loss_fp29_hiss_fp28_loss_fp28_hiss_fp27_loss_fp27_hiss_fp26_loss_fp26_hiss_fp25_loss_fp25_hiss_fp24_loss_fp24_hiss_fp23_loss_fp23_hiss_fp22_loss_fp22_hiss_fp21_loss_fp21_hiss_fp20_loss_fp20_hiss_fp19_loss_fp19_hiss_fp18_loss_fp18_hiss_fp17_loss_fp17_hiss_fp16_loss_fp16_hiss_fp15_loss_fp15_hiss_fp14_loss_fp14_hiss_fp13_loss_fp13_hiss_fp12_loss_fp12_hiss_fp11_loss_fp11_hiss_fp10_loss_fp10_hiss_fp9_loss_fp9_hiss_fp8_loss_fp8_hiss_fp7_loss_fp7_hiss_fp6_loss_fp6_hiss_fp5_loss_fp5_hiss_fp4_loss_fp4_hiss_fpexcept7ss_fpexcept6ss_fpexcept5ss_fpexcept4ss_fpexcept3ss_fpexcept2ss_fpexcept1ss_fpstat__fp_int_blockfp_int_block_tss_newcksumss_oldcksumss_reserved2ss_cr27ss_cr26ss_cr25ss_cr24ss_cr13ss_cr12ss_cr10ss_cr9ss_cr8ss_cr0ss_sr7ss_sr6ss_sr5ss_sr3ss_sr2ss_sr1ss_sr0ss_sr4ss_cpustatess_cr22ss_cr21ss_cr20ss_cr19ss_cr15ss_pcsq_tailss_pcoq_tailss_pcsq_headss_pcoq_headss_cr11ss_gr31ss_spss_ret1ss_ret0ss_dpss_arg0ss_arg1ss_arg2ss_arg3ss_gr22ss_gr21ss_gr20ss_gr19ss_gr18ss_gr17ss_gr16ss_gr15ss_gr14ss_gr13ss_gr12ss_gr11ss_gr10ss_gr9ss_gr8ss_gr7ss_gr6ss_gr5ss_gr4ss_gr3ss_rpss_gr1ss_reserved__reg64__reg64_tss_cr27_loss_cr27_hiss_cr26_loss_cr26_hiss_cr25_loss_cr25_hiss_cr24_loss_cr24_hiss_cr13_loss_cr13_hiss_cr12_loss_cr12_hiss_cr10_loss_cr10_hiss_cr9_loss_cr9_hiss_cr8_loss_cr8_hiss_cr0_loss_cr0_hiss_sr7_loss_sr7_hiss_sr6_loss_sr6_hiss_sr5_loss_sr5_hiss_sr3_loss_sr3_hiss_sr2_loss_sr2_hiss_sr1_loss_sr1_hiss_sr0_loss_sr0_hiss_sr4_loss_sr4_hiss_cpustate_loss_cpustate_hiss_cr22_loss_cr22_hiss_cr21_loss_cr21_hiss_cr20_loss_cr20_hiss_cr19_loss_cr19_hiss_cr15_loss_cr15_hiss_pcsq_tail_loss_pcsq_tail_hiss_pcoq_tail_loss_pcoq_tail_hiss_pcsq_head_loss_pcsq_head_hiss_pcoq_head_loss_pcoq_head_hiss_cr11_loss_cr11_hiss_gr31_loss_gr31_hiss_sp_loss_sp_hiss_ret1_loss_ret1_hiss_ret0_loss_ret0_hiss_dp_loss_dp_hiss_arg0_loss_arg0_hiss_arg1_loss_arg1_hiss_arg2_loss_arg2_hiss_arg3_loss_arg3_hiss_gr22_loss_gr22_hiss_gr21_loss_gr21_hiss_gr20_loss_gr20_hiss_gr19_loss_gr19_hiss_gr18_loss_gr18_hiss_gr17_loss_gr17_hiss_gr16_loss_gr16_hiss_gr15_loss_gr15_hiss_gr14_loss_gr14_hiss_gr13_loss_gr13_hiss_gr12_loss_gr12_hiss_gr11_loss_gr11_hiss_gr10_loss_gr10_hiss_gr9_loss_gr9_hiss_gr8_loss_gr8_hiss_gr7_loss_gr7_hiss_gr6_loss_gr6_hiss_gr5_loss_gr5_hiss_gr4_loss_gr4_hiss_gr3_loss_gr3_hiss_rp_loss_rp_hiss_gr1_loss_gr1_hi__reg32__reg32_tss_mpsfu_ovfloss_mpsfu_low__ss_narrow__ss_narrow_tss_32ss_64ss_widess_xorfpintfpdblss_fpblockss_padss_narrowss_flags__save_statesave_state_tss_size__stackstack_tmcontext_t__uc_stack__uc_sigmask__ucontext__uc_link__sub_ctxtuc_subcontextuc_reserved_flagsuc_created_by_getcontextuc_sparesuc_mcontextucontext_t/usr/include/sys/signal.hsa_flagssa_mask__sa_handler__sa_sigaction__handlersigactionpthread_tss_onstacksigstacksv_flagssv_masksv_handlersigvec/usr/include/machine/frame.hfm_pspfm_epfm_clupfm_slfm_crpfm_erpfm_esr4fm_edpframe_markersm_argsm_rval2sm_rval1sm_errorsm_eosyssm_syscall_actionsm_omasksm_onstacksm_syscallsiglocal_miscsl_sssl_miscsiglocalsl_sisl_ucsiglocalxsi__paddingsc__xsiP_ALLP_CIDP_GIDP_UIDP_SIDP_PGIDP_PIDidtype_tkeepcostfordblksuordblksfsmblksusmblkshblkhdhblkssmblksordblksarenamallinfoword4word3word2word1long_double/usr/include/pwd.hpw_audflgpw_audidpw_shellpw_dirpw_gecospw_commentpw_agepw_gidpw_uidpw_passwdpw_namepasswds_passwd/usr/include/errno.h/usr/include/sys/errno.h../common/config.hu_int32_t/usr/include/string.h/usr/include/strings.h/usr/include/utime.hmodtimeactimeutimbuf/usr/include/sys/unistd.h/usr/include/syslog.h/usr/include/sys/_stat_body.hst_spare4st_gidst_uidst_spareshortst_basemodest_realdevst_fstypest_netsitest_rcnodest_cnodest_netinost_netdevst_remotest_aclst_sysVaclst_padst_blocksst_blksizest_spare3st_ctimest_spare2st_mtimest_spare1st_atimest_sizest_rdevst_reserved2st_reserved1st_nlinkst_modest_inost_devstat/usr/include/sys/stat.h/usr/include/sys/_flock_body.h/usr/include/sys/fcntl.h/usr/include/time.hhrtime_t/usr/include/sys/ioctl.h/usr/include/sys/uio.hiov_leniov_baseiovec/usr/include/sys/socket.hsocklen_tmsg_accrightslenmsg_accrightsmsg_iovlenmsg_iovmsg_namelenmsg_namemsghdr/usr/include/netinet/in.hin_addr_ts_addrin_addr/usr/include/arpa/inet.h/usr/include/netdb.hh_addr_listh_lengthh_addrtypeh_aliasesh_namehostentn_netn_addrtypen_aliasesn_namenetents_protos_ports_aliasess_nameserventp_protop_aliasesp_nameprotoentr_numberr_aliasesr_namerpcent/usr/include/ctype.h/usr/include/grp.hgr_memgr_gidgr_passwdgr_namegroup/usr/include/sys/dirent.hd_named_namlend_reclend_inodirent__dd_unused__dd_buf__dd_bsize__dd_entno__dd_bbase__dd_size__dd_loc__dd_fd__dirdescDIR/usr/include/inttypes.h/usr/include/stddef.h/usr/include/wchar.hwint_twctype_t../common/common.hbufferresult_codecrc32_valuepacket_typepacket_versionpacket_structpacketutils.hserver_portserver_namecommand_namesocket_timeoutsdqueryshow_helpshow_licenseshow_versionuse_sslmain_MAIN_argvargcpacket_crc32calculated_crc32resultrcsend_packetreceive_packetbytes_to_sendbytes_to_recvoptargoptindprocess_argumentsoptcharsargindexcialarm_handlersigutils.ccrc32_tablegenerate_crc32_tablecrcpolyjcalculate_crc32buffer_sizethis_charcurrent_indexrandomize_bufferfpxseedmy_tcp_connectporthost_nameerrnosin_zerosin_addrsin_portsin_familysockaddr_inmy_connectprotoservaddrhpptrp__SB_masksmy_inet_atonaddrcpbasenpartsppstripindexsendalllenbufstotalbytesleftrecvalltimeoutstart_timecurrent_timemy_strsepdelimstringpbeginendchdisplay_licenseend.c__sccsid__buffer_bufMax__d_pid/CLO/BUILD_ENV/usr/include/sys/_inttypes.hint8_tuint8_tintfast_tuintfast_tint_least8_tuint_least8_tint_fast8_tuint_fast8_tint_least16_tuint_least16_tint_fast16_tuint_fast16_tint_least32_tuint_least32_tint_fast32_tuint_fast32_tint_least64_tint_fast64_tuint_least64_tuint_fast64_tptr32_tptr64_t/CLO/BUILD_ENV/usr/include/sys/types.hmqd_tino32_tino64_tfpos32_tfpos64_tfsblkcnt32_tfsblkcnt64_tfsblkcnt_toff32_toff64_tfsfilcnt32_tfsfilcnt64_tfsfilcnt_tblkcnt32_tblkcnt64_tlwpid_ttid_tkey_t__ushortrlim32_trlim64_tsite_tu_charu_longuintushortubit8ubit16ubit32sbit8sbit16sbit32swblk_tdaddr_tcnode_t/CLO/BUILD_ENV/usr/include/machine/vmtypes.hpaddr_tpage_tpgcnt_tphyspfn_tiophyspfn_tpgaddr_tspace_tprot_tulong_tcnt_tcdno_tuse_tphysadrquadspu_tcpu_tlkinfo_tpl_taid_tsid_t/CLO/BUILD_ENV/usr/include/sys/_fd_macros.hfd_maskdir_off_t__dld_loc/CLO/BUILD_ENV/usr/include/sys/sigevent.hsigevent_t__SIGEV_THREAD__SIGEV_SIGNAL__SIGEV_NONE__sigev_types/CLO/BUILD_ENV/usr/include/sys/siginfo.hSI_MESGQSI_ASYNCIOSI_TIMERSI_USERSI_QUEUE__si_codes/CLO/BUILD_ENV/usr/include/sys/newsig.h/CLO/BUILD_ENV/usr/include/machine/save_state.hssflags_t__sub_ctxt_t/CLO/BUILD_ENV/usr/include/sys/signal.hsig_atomic_ttimestruc_t/CLO/BUILD_ENV/usr/include/machine/frame.hframe_marker_tsiglocal_misc_t__xsi_t/CLO/BUILD_ENV/usr/include/machine/sys/sigcontext.hsc_sfmsc_argssxslsc_ctxtsigcontext__rtc_d_trapfifthfourththirdsecondfirstoset__shldp__fp__shlib_funcptr__d_shl_get_a5_a4_a3_a2_a1_dld_offsetret__d_plt_calleh.h__EH_NOTIFY_CATCH__EH_NOTIFY_THROW__eh_notificationjb_ext_dpjb_rp_primejb_fr21jb_fr20jb_fr19jb_fr18jb_fr17jb_fr16jb_savejb_fr15jb_fr14jb_fr13jb_fr12jb_sr3jb_gr19jb_gr18jb_gr17jb_gr16jb_gr15jb_gr14jb_gr13jb_gr12jb_gr11jb_gr10jb_gr9jb_gr8jb_gr7jb_gr6jb_gr5jb_gr4jb_gr3jb_osjb_smjb_spjb_rplocal_jump_buffer__d_eh_catch_throw__d_eh_catch_catch__d_eh_suspend_ad__d_eh_breakeh_arg_flageh_argeh_type__d_eh_notify_callbackflagtgt_addr__eh_callback_fptr_end_NRPE/NRPE/opt/nrpe/bin/nrpe010055500000000000000000004325000775723223700160060ustar00rootroot000037777777777@#5|@pL? x%%E|G($P@ d   92453-07B11.30?5= 92453-07B11.16.01> D=@(#)$Revision: 92453-07 linker linker crt0.o B.11.37 030623 $ @9HASH 1.0 mLmUc2HgoNnCVhNYNkFILu4steCIbsKLp98dN9q2vkWZYA50 @9HASH 1.0 u5yfgtGOlrWhoJO61H4Go7F8OANoi6hdLREypVOU3wpmbRoj 92453-07B11.16.01>ޕ TN@(#)HP92453-02A.11.00 HP-UX SYMBOLIC DEBUGGER (END.O ILP32) $Revision: 75.04 $@ `PX"P  LX ]tX!^Y Y X xX 8ppX HPPX I X X  (>(@`>(@<>( @P>( d@ dh>(pl@p