How do I configure a security zone to enable an IP range. What is the syntax? Or do I have to assign a security zone to every individual IP address in the range? I cannot find examples anywhere for setting up a range of IPs in one security zone configuration. We have a range of IPs for access to our SAP system and they will be accessing via API. This is the range I've been given: 158.52.0.0/16 - 159.41.0.0/16
Solved! Go to Solution.
from the server config files:
serverConf.xml or config-<instance>.xml file just add the CIDR
<
subNetwork
id
=
"SAP1"
mask
=
"158.52.0.0/16 "
name
=
"SAP1"
/>
<!--SAP CIDR-->
<
subNetwork
id
=
"SAP2"
mask
=
"159.41.0.0/16 "
name
=
"SAP2"
/>
<!--SAP CIDR-->
Some details about these ranges.
CIDR Range | 158.52.0.0/16 |
---|---|
Netmask | 255.255.0.0 |
Wildcard Bits | 0.0.255.255 |
First IP | 158.52.0.0 |
Last IP | 158.52.255.255 |
Total Host | 65536 |
CIDR Range | 159.41.0.0/16 |
---|---|
Netmask | 255.255.0.0 |
Wildcard Bits | 0.0.255.255 |
First IP | 159.41.0.0 |
Last IP | 159.41.255.255 |
Total Host | 65536 |
Are you on ACC or ACS
I'm on Adobe campaign classic. The guys from sap gave me that "range" of two CIDRs and I am not sure there is an actual range of CIDRs. I have set up CIDRs as individual security zones before. I haven't been given a range of CIDRs formatted like that before. I am going to clarify with the sap team.
Views
Replies
Total Likes
from the server config files:
serverConf.xml or config-<instance>.xml file just add the CIDR
<
subNetwork
id
=
"SAP1"
mask
=
"158.52.0.0/16 "
name
=
"SAP1"
/>
<!--SAP CIDR-->
<
subNetwork
id
=
"SAP2"
mask
=
"159.41.0.0/16 "
name
=
"SAP2"
/>
<!--SAP CIDR-->
Some details about these ranges.
CIDR Range | 158.52.0.0/16 |
---|---|
Netmask | 255.255.0.0 |
Wildcard Bits | 0.0.255.255 |
First IP | 158.52.0.0 |
Last IP | 158.52.255.255 |
Total Host | 65536 |
CIDR Range | 159.41.0.0/16 |
---|---|
Netmask | 255.255.0.0 |
Wildcard Bits | 0.0.255.255 |
First IP | 159.41.0.0 |
Last IP | 159.41.255.255 |
Total Host | 65536 |
Views
Likes
Replies