You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Network Session information model is aligned with the [OSSEM Network entity schema](https://github.com/OTRF/OSSEM/blob/master/docs/cdm/entities/network.md).
98
98
99
-
Network session events use the descriptors `Src` and `Dst` to denote the roles of the devices and related users and applications involved in he session. So, for example, the source device hostname and IP address are named `SrcHostname` and `SrcIpAddr`. Note that other ASIM schemas typically use `Target` instead of `Dst`.
99
+
Network session events use the descriptors `Src` and `Dst` to denote the roles of the devices and related users and applications involved in the session. So, for example, the source device hostname and IP address are named `SrcHostname` and `SrcIpAddr`. Note that other ASIM schemas typically use `Target` instead of `Dst`.
100
100
101
101
For events reported by an endpoint and for which the event type is `EndpointNetworkSession`, the descriptors `Local` and `Remote` denote the endpoint itself and the device at the other end of the network session respectively.
102
102
@@ -227,7 +227,7 @@ The descriptor 'Dvc' is used for the reporting device, which is the local system
227
227
228
228
| Field | Class | Type | Description |
229
229
|-------|-------|------|-------------|
230
-
| <aname="srcuserid"></a>**SrcUserId**| Optional | String | A machine-readable, alphanumeric, unique representation of the soruce user. For the supported format for different ID types, refer to [the User entity](normalization-about-schemas.md#the-user-entity). <br><br>Example: `S-1-12`|
230
+
| <aname="srcuserid"></a>**SrcUserId**| Optional | String | A machine-readable, alphanumeric, unique representation of the source user. For the supported format for different ID types, refer to [the User entity](normalization-about-schemas.md#the-user-entity). <br><br>Example: `S-1-12`|
231
231
| <aname="srcuseridtype"></a>**SrcUserIdType**| Optional | UserIdType | The type of the ID stored in the [SrcUserId](#srcuserid) field. For a list of allowed values and further information refer to [UserIdType](normalization-about-schemas.md#useridtype) in the [Schema Overview article](normalization-about-schemas.md). |
232
232
| <aname="srcusername"></a>**SrcUsername**| Optional | String | The source username, including domain information when available. For the supported format for different ID types, refer to [the User entity](normalization-about-schemas.md#the-user-entity). Use the simple form only if domain information isn't available.<br><br>Store the Username type in the [SrcUsernameType](#srcusernametype) field. If other username formats are available, store them in the fields `SrcUsername<UsernameType>`.<br><br>Example: `AlbertE`|
233
233
| <aname="srcusernametype"></a>**SrcUsernameType**| Optional | UsernameType | Specifies the type of the username stored in the [SrcUsername](#srcusername) field. For a list of allowed values and further information refer to [UsernameType](normalization-about-schemas.md#usernametype) in the [Schema Overview article](normalization-about-schemas.md).<br><br>Example: `Windows`|
@@ -253,7 +253,7 @@ For such events the descriptors `Local` and `Remote` denote the endpoint itself
253
253
254
254
For example, for an inbound event, the field `LocalIpAddr` is an alias to `DstIpAddr` and the field `RemoteIpAddr` is an alias to `SrcIpAddr`.
255
255
256
-
### Hostnamd and IP addresss aliases
256
+
### Hostname and IP address aliases
257
257
258
258
| Field | Class | Type | Description |
259
259
| --- | --- | --- | --- |
@@ -265,13 +265,13 @@ For example, for an inbound event, the field `LocalIpAddr` is an alias to `DstIp
265
265
266
266
The following fields are useful if the record includes information about an intermediary device, such as a firewall or a proxy, which relays the network session.
267
267
268
-
Intermidiary systems often use address translation and therefore the original address and the address observed exernally are not the same. In such cases, the primary address fields such as [SrcIPAddr](#srcipaddr) and [DstIpAddr](#dstipaddr) represent the addresses observed externally, while the NAT address fields, [SrcNatIpAddr](#srcnatipaddr) and [DstNatIpAddr](#dstnatipaddr) represent the internal address of the original device before translation.
268
+
Intermediary systems often use address translation and therefore the original address and the address observed externally are not the same. In such cases, the primary address fields such as [SrcIPAddr](#srcipaddr) and [DstIpAddr](#dstipaddr) represent the addresses observed externally, while the NAT address fields, [SrcNatIpAddr](#srcnatipaddr) and [DstNatIpAddr](#dstnatipaddr) represent the internal address of the original device before translation.
269
269
270
270
| Field | Class | Type | Description |
271
271
| --- | --- | --- | --- |
272
-
| <aname="dstnatipaddr"></a>**DstNatIpAddr**| Optional | IP address | The **DstNatIpAddr** represents either of:<br> - The original address of the destination device if network address translation was used.<br> - The IP address used by the intermidiary device for communication with the source.<br><br>Example: `2::1`|
272
+
| <aname="dstnatipaddr"></a>**DstNatIpAddr**| Optional | IP address | The **DstNatIpAddr** represents either of:<br> - The original address of the destination device if network address translation was used.<br> - The IP address used by the intermediary device for communication with the source.<br><br>Example: `2::1`|
273
273
|**DstNatPortNumber**| Optional | Integer | If reported by an intermediary NAT device, the port used by the NAT device for communication with the source.<br><br>Example: `443`|
274
-
| <aname="srcnatipaddr"></a>**SrcNatIpAddr**| Optional | IP address | The **SrcNatIpAddr** represents either of:<br> - The original address of the source device if network address translation was used.<br> - The IP address used by the intermidiary device for communication with the destination.<br><br>Example: `4.3.2.1`|
274
+
| <aname="srcnatipaddr"></a>**SrcNatIpAddr**| Optional | IP address | The **SrcNatIpAddr** represents either of:<br> - The original address of the source device if network address translation was used.<br> - The IP address used by the intermediary device for communication with the destination.<br><br>Example: `4.3.2.1`|
275
275
|**SrcNatPortNumber**| Optional | Integer | If reported by an intermediary NAT device, the port used by the NAT device for communication with the destination.<br><br>Example: `345`|
276
276
| <aname="dvcinboundinterface"></a>**DvcInboundInterface**| Optional | String | If reported by an intermediary device, the network interface used by the NAT device for the connection to the source device.<br><br>Example: `eth0`|
277
277
| <aname="dvcoutboundinterface"></a>**DvcOutboundInterface**| Optional | String | If reported by an intermediary device, the network interface used by the NAT device for the connection to the destination device.<br><br>Example: `Ethernet adapter Ethernet 4e`|
0 commit comments