HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

csrutil — Manage the System Integrity Protection configuration. More information: <https://keith.github.io/xco

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandintegrityprotectionclimanagecsrutilsystem
macos

Problem

How to use the csrutil command: Manage the System Integrity Protection configuration. More information: <https://keith.github.io/xcode-man-pages/csrutil.8.html>.

Solution

csrutil — Manage the System Integrity Protection configuration. More information: <https://keith.github.io/xcode-man-pages/csrutil.8.html>.

Display the System Integrity Protection status:
csrutil status


Disable the System Integrity Protection:
csrutil disable


Enable the System Integrity Protection:
csrutil enable


Display the list of allowed NetBoot sources:
csrutil netboot list


Add an IPv4 address to the list of allowed NetBoot sources:
csrutil netboot add {{ip_address}}


Reset the System Integrity Protection status and clear the NetBoot list:
csrutil clear

Code Snippets

Display the System Integrity Protection status

csrutil status

Disable the System Integrity Protection

csrutil disable

Enable the System Integrity Protection

csrutil enable

Display the list of allowed NetBoot sources

csrutil netboot list

Add an IPv4 address to the list of allowed NetBoot sources

csrutil netboot add {{ip_address}}

Context

tldr-pages: osx/csrutil

Revisions (0)

No revisions yet.