Skip to content

Commit 65b1168

Browse files
committed
First commit of the project
1 parent d0845b7 commit 65b1168

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ $ docker start -a -i multitls-client
4545
#### VM-Server
4646

4747
```
48-
multiTLS -s <port-number> <number-of-tunnels> <cert-1> <cafile-1> <cert-2> <cafile-2>
48+
$ multiTLS -s <port-number> <number-of-tunnels> <cert-1> <cafile-1> <cert-2> <cafile-2>
4949
```
5050

5151
#### VM-Client
5252

5353
```
54-
multiTLS -c <port-number> <number-of-tunnels> <IPServer> <cert-1> <cafile-1> <cert-2> <cafile-2>
54+
$ multiTLS -c <port-number> <number-of-tunnels> <IPServer> <cert-1> <cafile-1> <cert-2> <cafile-2>
5555
```
5656

5757

@@ -61,27 +61,27 @@ $ docker start -a -i multitls-client
6161
In the server container with an IP address **192.169.1.1** execute:
6262

6363
```
64-
multiTLS -s 11444 2 cert-1.pem cafile-1.crt cert-2.pem cafile-2.ctr
64+
$ multiTLS -s 11444 2 cert-1.pem cafile-1.crt cert-2.pem cafile-2.ctr
6565
```
6666

6767
In the client container execute:
6868

6969
```
70-
multiTLS -c 11444 2 192.169.1.1 cert-1.pem cafile-1.crt cert-2.pem cafile-2.ctr
70+
$ multiTLS -c 11444 2 192.169.1.1 cert-1.pem cafile-1.crt cert-2.pem cafile-2.ctr
7171
```
7272

7373
### Example of an ECHO Application
7474

7575
In the server container with an IP address **192.169.1.1** execute:
7676

7777
```
78-
socat - tcp-listen:11445
78+
$ socat - tcp-listen:11445
7979
```
8080

8181
In the client container execute:
8282

8383
```
84-
socat tcp:192.169.1.1:11445 echo
84+
$ socat tcp:192.169.1.1:11445 echo
8585
```
8686

8787

0 commit comments

Comments
 (0)