Access Control Policy to be configured with IPv6

karlapudiravi
Participant III

Hi All,

I have to configure the Access control policy with IPv6. i am providing the configuration as below:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<AccessControl async="false" continueOnError="false" enabled="true" name="AccessControl.RestrictIP">

<DisplayName>AccessControl.RestrictIP</DisplayName>

<Properties/>

<IPRules noRuleMatchAction="DENY">

<MatchRule action="ALLOW">

<SourceAddress mask="64">2a03:1e80:ffb:801</SourceAddress>

</MatchRule>

</IPRules>

</AccessControl>

with the above i am getting schema validation failed, invalid IP address.

can you please tell me how to configure the IPv6 match rule?

Regards,

Ravi.

Solved Solved
0 1 330
1 ACCEPTED SOLUTION

karlapudiravi
Participant III

Got it, the format provided above is wrong and it should be as below:

<MatchRule action="ALLOW">

<SourceAddress mask="64">2a03:1e80:ffb:801:0:0:0:0</SourceAddress>

</MatchRule>

View solution in original post

1 REPLY 1

karlapudiravi
Participant III

Got it, the format provided above is wrong and it should be as below:

<MatchRule action="ALLOW">

<SourceAddress mask="64">2a03:1e80:ffb:801:0:0:0:0</SourceAddress>

</MatchRule>