Skip to content

Commit

Permalink
fix ESM formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Jandacek <[email protected]>
  • Loading branch information
janan07 committed Nov 8, 2024
1 parent 2bc69af commit dce055c
Showing 1 changed file with 53 additions and 40 deletions.
93 changes: 53 additions & 40 deletions docs/user-guide/configure-zos-system.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,47 +66,60 @@ Define or check the following configurations depending on whether ICSF is alread
- Create CKDS, PKDS, TKDS VSAM data sets.
- Define and activate the CSFSERV class:

- If you use RACF, issue the following commands:
```
RDEFINE CSFSERV profile-name UACC(NONE)
```
```
PERMIT profile-name CLASS(CSFSERV) ID(tcpip-stackname) ACCESS(READ)
```
```
PERMIT profile-name CLASS(CSFSERV) ID(userid-list) ... [for
userids IKED, NSSD, and Policy Agent]
```
```
SETROPTS CLASSACT(CSFSERV)
```
```
SETROPTS RACLIST(CSFSERV) REFRESH
```
- If you use ACF2, issue the following commands (note that `profile-prefix` and `profile-suffix` are user-defined):
```
SET CONTROL(GSO)
```
```
INSERT CLASMAP.CSFSERV RESOURCE(CSFSERV) RSRCTYPE(CSF)
```
```
F ACF2,REFRESH(CLASMAP)
```
```
SET RESOURCE(CSF)
```
```
RECKEY profile-prefix ADD(profile-suffix uid(UID string for tcpip-stackname) SERVICE(READ) ALLOW)
```
```
RECKEY profile-prefix ADD(profile-suffix uid(UID string for IZUSVR) SERVICE(READ) ALLOW)
```
(repeat for userids IKED, NSSD, and Policy Agent)
<details>
<summary>Click here for command details for RACF.</summary>

If you use RACF, issue the following commands:
```
RDEFINE CSFSERV profile-name UACC(NONE)
```
```
PERMIT profile-name CLASS(CSFSERV) ID(tcpip-stackname) ACCESS(READ)
```
```
PERMIT profile-name CLASS(CSFSERV) ID(userid-list) ... [for
userids IKED, NSSD, and Policy Agent]
```
```
SETROPTS CLASSACT(CSFSERV)
```
```
SETROPTS RACLIST(CSFSERV) REFRESH
```

</details>

<details>
<summary>Click here for command details for ACF2.</summary>

If you use ACF2, issue the following commands (note that `profile-prefix` and `profile-suffix` are user-defined):
```
SET CONTROL(GSO)
```
```
INSERT CLASMAP.CSFSERV RESOURCE(CSFSERV) RSRCTYPE(CSF)
```
```
F ACF2,REFRESH(CLASMAP)
```
```
SET RESOURCE(CSF)
```
```
RECKEY profile-prefix ADD(profile-suffix uid(UID string for tcpip-stackname) SERVICE(READ) ALLOW)
```
```
RECKEY profile-prefix ADD(profile-suffix uid(UID string for IZUSVR) SERVICE(READ) ALLOW)
```
(repeat for userids IKED, NSSD, and Policy Agent)

```
F ACF2,REBUILD(CSF)
```

</details>


```
F ACF2,REBUILD(CSF)
```
- If you use Top Secret, issue the following command (note that `profile-prefix` and `profile-suffix` are user defined):
```
TSS ADDTO(owner-acid) RESCLASS(CSFSERV)
Expand Down

0 comments on commit dce055c

Please sign in to comment.