--- title: "system.dnp.freezeAnalogs" description: "Issues an Immediate Freeze command targeting one or more analog points." --- # system.dnp.freezeAnalogs > Issues an Immediate Freeze command targeting one or more analog points. :::note The following function uses [system.dnp](appendix\scripting-functions\system-dnp\system-dnp.md) and the [DNP3 driver](ignition-modules\opc-ua\opc-ua-drivers\dnp3\dnp3-driver\dnp3-driver.md). For [system.dnp3](appendix\scripting-functions\system-dnp3\system-dnp3.md) functions and the [Legacy DNP3 driver](ignition-modules\opc-ua\opc-ua-drivers\dnp3\legacy-dnp3-driver\legacy-dnp3-driver.md), see [DNP3](ignition-modules\opc-ua\opc-ua-drivers\dnp3\dnp3.md). ::: This function is used in **Python Scripting**. ## Description ## Client Permission Restrictions This scripting function has no [Client Permission](ignition-modules\vision\vision-project-properties\vision-project-properties.md#vision-permissions-properties) restrictions. ## Syntax `system.dnp.freezeAnalogs(deviceName, indexes)` ### Parameters Type | Parameter | Description ------- | ------- | ----- String| `deviceName` | The name of the DNP3 device instance. List| `indexes` | The indices of the analog points to freeze. ### Returns Nothing. ### Scope Gateway ## Code Examples ```python title="Code Snippet" system.dnp.freezeAnalogs("Dnp3", [1, 3, 5]) ```