Author |
Message
|
tanglp |
Posted: Thu Jun 02, 2011 11:26 pm Post subject: BlockIP2 Default Log Size for iSeries |
|
|
Newbie
Joined: 02 Jun 2011 Posts: 5
|
Hi all,
I'm using BlockIP2 for securing the channel on our iSeries server.
I've searched and read the manual that the default log size is 200KB before switching to next log.
However, some of the configuration mentioned in the manual does not apply for iSeries. The configuration like LogCount and LogSize does not apply.
I've continued testing and now the log grows to 10MB and it's still not switching.
Any pointers will be greatly appreciated.
/Patrick |
|
Back to top |
|
 |
zpat |
Posted: Thu Jun 02, 2011 11:36 pm Post subject: |
|
|
 Jedi Council
Joined: 19 May 2001 Posts: 5866 Location: UK
|
If you read the source, you will see the log cycle code is conditionally used according to the platform. It's not applicable to i-Series.
So you need to implement some sort of houskeeping process. |
|
Back to top |
|
 |
tanglp |
Posted: Thu Jun 02, 2011 11:41 pm Post subject: |
|
|
Newbie
Joined: 02 Jun 2011 Posts: 5
|
zpat wrote: |
If you read the source, you will see the log cycle code is conditionally used according to the platform. It's not applicable to i-Series.
So you need to implement some sort of houskeeping process. |
Thanks zpat.
I've done some scripting and not particularly good at reading C language.
Looks like I have to bring this up to the stakeholder as I initially thought there's no housekeeping needed.
/Patrick |
|
Back to top |
|
 |
fundoo |
Posted: Wed Feb 01, 2012 5:24 am Post subject: BLOCKIP2 for iseries |
|
|
Novice
Joined: 04 May 2005 Posts: 13
|
Where can we download BLOCKIP2 for iseries. |
|
Back to top |
|
 |
zpat |
Posted: Wed Feb 01, 2012 6:06 am Post subject: |
|
|
 Jedi Council
Joined: 19 May 2001 Posts: 5866 Location: UK
|
There is only one BlockIP2 source module for all platforms.
You can then compile it for i-Series. |
|
Back to top |
|
 |
bruce2359 |
Posted: Wed Feb 01, 2012 7:09 am Post subject: Re: BLOCKIP2 for iseries |
|
|
 Poobah
Joined: 05 Jan 2008 Posts: 9469 Location: US: west coast, almost. Otherwise, enroute.
|
fundoo wrote: |
Where can we download BLOCKIP2 for iseries. |
Search google for 'wmq+download+blockip' _________________ I like deadlines. I like to wave as they pass by.
ב''ה
Lex Orandi, Lex Credendi, Lex Vivendi. As we Worship, So we Believe, So we Live. |
|
Back to top |
|
 |
fundoo |
Posted: Thu Feb 23, 2012 2:52 am Post subject: |
|
|
Novice
Joined: 04 May 2005 Posts: 13
|
can someone throw light on steps required to setup and test blockip2 in iseries, like:
The location to put the compiled blockip2 exit in iseries and relevant iseries specific mq commands that needs to be run.
i am not a iseries guy and need to provide guidance to iseries team to test this out.
Thanks. |
|
Back to top |
|
 |
mqjeff |
Posted: Thu Feb 23, 2012 3:07 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
fundoo wrote: |
i am not a iseries guy and need to provide guidance to iseries team to test this out. |
Exits are a very advanced topic in MQ admin.
I personally wouldn't even claim I could assist with installing an exit on iSeries unless I knew that the exit came with a very specific set of instructions for installtion on iSeries. But that's because I know I'm not an iSeries guy...
So make sure that BlockIP doesn't have instructions that can be helpful. If it *does* have instructions, review them yourself a few times and then go through them with the iseries team. They will understand at least how some of it relates to their site config.
If it *doesn't* have instructions... go through the info center very carefully and look at the sample exits a few times and look for dev works articles... And then cross your fingers that someone who has installed exits on iSeries is in a good mood and adds additional commentary here... |
|
Back to top |
|
 |
zpat |
Posted: Wed Mar 07, 2012 8:45 am Post subject: |
|
|
 Jedi Council
Joined: 19 May 2001 Posts: 5866 Location: UK
|
Commands used to compile the BlockIP2 source on i5 host
CRTCMOD MODULE(xxx/BLOCKIP2) SRCSTMF('/home/xxx/BlockIP2.c')
OUTPUT(*PRINT) OPTION(*GEN) TERASPACE(*YES *TSIFC)
INCDIR('/QIBM/ProdData/mqm/inc') SYSIFCOPT(*IFSIO) DEFINE(OS400 HNLUP)
CRTPGM PGM(xxx/BLOCKIP2) MODULE(xxx/BLOCKIP2)
BNDSRVPGM(QMQM/LIBMQM_R) ACTGRP(*CALLER) OPTION(*GEN) DETAIL(*FULL) |
|
Back to top |
|
 |
|