Skip to content

Commit

Permalink
added first dds server, not working yet
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-hanheide committed Jan 27, 2024
1 parent 6c71e6e commit 972962d
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/dds/ddsrouter-server.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
##################################
# CONFIGURATION VERSION
version: v3.0 # 0

##################################
# ALLOWED TOPICS
# Allowing ROS2 HelloWorld demo_nodes topic

#allowlist:
# - name: rt/chatter # 1
# type: std_msgs::msg::dds_::String_ # 1

##################################
# PARTICIPANTS
participants:

##################################
# SIMPLE PARTICIPANT
# This participant will subscribe to topics in allowlist in domain 0 and listen every message published there

- name: EchoParticipant # 6
kind: echo # 7
discovery: true # 8
data: false # 9
#verbose: true # 10

##################################
# ROS DISCOVERY SERVER
# This participant will subscribe to topics in allowlist using Discovery Server protocol as Server

- name: ServerROS2 # 5
kind: local-discovery-server # 6
discovery-server-guid:
ros-discovery-server: true # 7
id: 1 # 8
listening-addresses: # 9
- domain: localhost # 10
port: 11888 # 11

- name: WANServer # 6
kind: wan # 7
listening-addresses: # 8
- port: 11667 # 10
external-port: 11666
ip: "0.0.0.0"
transport: tcp # 11

0 comments on commit 972962d

Please sign in to comment.