Skip to content

WLS10.3.6 - multiple ConnectionFilterRule entries #326

Closed
@53d117460ec63d70

Description

@53d117460ec63d70

I'm trying to configure multiple ConnectionFilterRule entries which would appear in config.xml as:

    <connection-filter-rule>0.0.0.0/0 * * allow http https</connection-filter-rule>
    <connection-filter-rule>0.0.0.0/0 * * allow t3 t3s</connection-filter-rule>

I have tried comma delimited string:

    SecurityConfiguration:
        ConnectionFilterRule: '0.0.0.0/0 * * allow http https,0.0.0.0/0 * * allow t3 t3s'

A semi-colon delimited string:

    SecurityConfiguration:
        ConnectionFilterRule: '0.0.0.0/0 * * allow http https;0.0.0.0/0 * * allow t3 t3s'

And a comma separated list:

    SecurityConfiguration:
        ConnectionFilterRule: [
          '0.0.0.0/0 * * allow http https',
          '0.0.0.0/0 * * allow t3 t3s'
        ]

All three methods produce a single rule with the whole string as the value including the delimiter, eg:

    <connection-filter-rule>0.0.0.0/0 * * allow http https,0.0.0.0/0 * * allow t3 t3s</connection-filter-rule>

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions