> For the complete documentation index, see [llms.txt](https://docs.halosecurity.com/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.halosecurity.com/api/events-archive/network-port-add.md).

# network-port-add

### Overview

* **Key:** `network-port-add`
* **Name:** New Network Port Discovered
* **Triggers when:** An open port is detected during a discovery scan on a network that was not detected on the previous scan

### Fields

| Field         | Type    | Description                                             |
| ------------- | ------- | ------------------------------------------------------- |
| network\_id   | integer | ID of the network                                       |
| network\_name | string  | Name of the network                                     |
| network       | string  | IP address of the network asset                         |
| port          | string  | List of semi-colon separated ports that were discovered |

### Example data

```json
{
    "port": "127.0.0.1:80/tcp;127.0.0.1:22/tcp",
    "network": {
        "network_id": 1234,
        "network_name": "Example",
        "network": "127.0.0.1"
    }
}
```
