Skip to content

Commit e090d0a

Browse files
Merge pull request #233475 from msaenzbosupport/patch-11
[Doc-A-THon] Adding code block Bash for Linux
2 parents b4f6e16 + 618c128 commit e090d0a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/storage/blobs/simulate-primary-region-failure.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ While the application is paused, open a command prompt on Windows as an administ
5151

5252
Get information about the storage account primary endpoint domain by entering the following command on a command prompt or terminal, replacing `STORAGEACCOUNTNAME` with the name of your storage account.
5353

54-
```
54+
```bash
5555
nslookup STORAGEACCOUNTNAME.blob.core.windows.net
5656
```
5757

@@ -63,13 +63,13 @@ To add a static route for a destination host, type the following command on a Wi
6363

6464
#### Linux
6565

66-
```
67-
route add <destination_ip> gw <gateway_ip>
66+
```bash
67+
sudo route add <destination_ip> gw <gateway_ip>
6868
```
6969

7070
#### Windows
7171

72-
```
72+
```console
7373
route add <destination_ip> <gateway_ip>
7474
```
7575

@@ -82,7 +82,7 @@ To simulate the primary endpoint becoming functional again, delete the invalid s
8282
#### Linux
8383

8484
```bash
85-
route del <destination_ip> gw <gateway_ip>
85+
sudo route del <destination_ip> gw <gateway_ip>
8686
```
8787

8888
#### Windows

0 commit comments

Comments
 (0)