Skip to content

Commit 88ed25f

Browse files
Merge pull request #217713 from Shereen-Bhar/add-extra-validations
add extra validation checks
2 parents 6d2a4d1 + b74886a commit 88ed25f

File tree

1 file changed

+69
-2
lines changed

1 file changed

+69
-2
lines changed

articles/defender-for-iot/organizations/how-to-install-software.md

Lines changed: 69 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Install OT network monitoring software - Microsoft Defender for IoT
33
description: Learn how to install agentless monitoring software for an OT sensor and an on-premises management console for Microsoft Defender for IoT. Use this article if you're reinstalling software on a preconfigured appliance, or if you've chosen to install software on your own appliances.
4-
ms.date: 07/13/2022
4+
ms.date: 11/09/2022
55
ms.topic: how-to
66
---
77

@@ -25,7 +25,7 @@ Mount the ISO file onto your hardware appliance or VM using one of the following
2525
- DVDs: First burn the software to the DVD as an image
2626
- USB drive: First make sure that you’ve created a bootable USB drive with software such as [Rufus](https://rufus.ie/en/), and then save the software to the USB drive. USB drives must have USB version 3.0 or later.
2727

28-
Your physical media must have a minimum of 4 GB storage.
28+
Your physical media must have a minimum of 4-GB storage.
2929

3030
- **Virtual mount** – use iLO for HPE appliances, or iDRAC for Dell appliances to boot the ISO file.
3131

@@ -267,6 +267,73 @@ After installing OT monitoring software, make sure to run the following tests:
267267

268268
- **ifconfig**: Verify that all the input interfaces configured during the installation process are running.
269269

270+
#### Gateway checks
271+
272+
Use the `route` command to show the gateway's IP address. For example:
273+
274+
``` CLI
275+
<root@xsense:/# route -n
276+
Kernel IP routing table
277+
Destination Gateway Genmask Flags Metric Ref Use Iface
278+
0.0.0.0 172.18.0.1 0.0.0.0 UG 0 0 0 eth0
279+
172.18.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
280+
>
281+
```
282+
283+
Use the `arp -a` command to verify that there is a binding between the MAC address and the IP address of the default gateway. For example:
284+
285+
``` CLI
286+
<root@xsense:/# arp -a
287+
cusalvtecca101-gi0-02-2851.network.microsoft.com (172.18.0.1) at 02:42:b0:3a:e8:b5 [ether] on eth0
288+
mariadb_22.2.6.27-r-c64cbca.iot_network_22.2.6.27-r-c64cbca (172.18.0.5) at 02:42:ac:12:00:05 [ether] on eth0
289+
redis_22.2.6.27-r-c64cbca.iot_network_22.2.6.27-r-c64cbca (172.18.0.3) at 02:42:ac:12:00:03 [ether] on eth0
290+
>
291+
```
292+
293+
#### DNS checks
294+
295+
Use the `cat /etc/resolv.conf` command to find the IP address that's configured for DNS traffic. For example:
296+
``` CLI
297+
<root@xsense:/# cat /etc/resolv.conf
298+
search reddog.microsoft.com
299+
nameserver 127.0.0.11
300+
options ndots:0
301+
>
302+
```
303+
304+
Use the `host` command to resolve an FQDN. For example:
305+
306+
``` CLI
307+
<root@xsense:/# host www.apple.com
308+
www.apple.com is an alias for www.apple.com.edgekey.net.
309+
www.apple.com.edgekey.net is an alias for www.apple.com.edgekey.net.globalredir.akadns.net.
310+
www.apple.com.edgekey.net.globalredir.akadns.net is an alias for e6858.dscx.akamaiedge.net.
311+
e6858.dscx.akamaiedge.net has address 72.246.148.202
312+
e6858.dscx.akamaiedge.net has IPv6 address 2a02:26f0:5700:1b4::1aca
313+
e6858.dscx.akamaiedge.net has IPv6 address 2a02:26f0:5700:182::1aca
314+
>
315+
```
316+
317+
#### Firewall checks
318+
319+
Use the `wget` command to verify that port 443 is open for communication. For example:
320+
321+
``` CLI
322+
<root@xsense:/# wget https://www.apple.com
323+
--2022-11-09 11:21:15-- https://www.apple.com/
324+
Resolving www.apple.com (www.apple.com)... 72.246.148.202, 2a02:26f0:5700:1b4::1aca, 2a02:26f0:5700:182::1aca
325+
Connecting to www.apple.com (www.apple.com)|72.246.148.202|:443... connected.
326+
HTTP request sent, awaiting response... 200 OK
327+
Length: 99966 (98K) [text/html]
328+
Saving to: 'index.html.1'
329+
330+
index.html.1 100%[===================>] 97.62K --.-KB/s in 0.02s
331+
332+
2022-11-09 11:21:15 (5.88 MB/s) - 'index.html.1' saved [99966/99966]
333+
334+
>
335+
```
336+
270337
For more information, see [Check system health](how-to-troubleshoot-the-sensor-and-on-premises-management-console.md#check-system-health) in our sensor and on-premises management console troubleshooting article.
271338

272339
## Configure tunneling access for sensors through the on-premises management console

0 commit comments

Comments
 (0)