-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mosquitto brokers demo configurations
- Loading branch information
1 parent
99e0c07
commit 01b8b5f
Showing
6 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
port 1990 | ||
protocol mqtt | ||
allow_anonymous true | ||
|
||
|
||
# Websockets | ||
|
||
listener 9001 | ||
protocol websockets | ||
|
||
connection bridgeFrom1To2 | ||
address 127.0.0.1:1991 | ||
remote_username jam | ||
remote_password password | ||
try_private true | ||
topic bridgeFrom127.0.0.1:9001To127.0.0.1:9002 out 0 | ||
topic bridgeFrom127.0.0.1:9002To127.0.0.1:9001 in 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
port 1991 | ||
protocol mqtt | ||
allow_anonymous true | ||
|
||
|
||
# Websockets | ||
|
||
listener 9002 | ||
protocol websockets | ||
|
||
connection bridgeFrom2To3 | ||
address 127.0.0.1:1992 | ||
remote_username jam | ||
remote_password password | ||
try_private true | ||
topic bridgeFrom127.0.0.1:9002To127.0.0.1:9003 out 0 | ||
topic bridgeFrom127.0.0.1:9003To127.0.0.1:9002 in 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
port 1992 | ||
protocol mqtt | ||
allow_anonymous true | ||
|
||
|
||
# Websockets | ||
|
||
listener 9003 | ||
protocol websockets | ||
|
||
connection bridgeFrom3To1 | ||
address 127.0.0.1:1990 | ||
remote_username jam | ||
remote_password password | ||
try_private true | ||
topic bridgeFrom127.0.0.1:9003To127.0.0.1:9001 out 0 | ||
topic bridgeFrom127.0.0.1:9001To127.0.0.1:9003 in 0 | ||
|