Skip to content

Commit

Permalink
Updated default config.
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed Aug 29, 2021
1 parent 1fd59f1 commit 0c96508
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions RNS/Reticulum.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,15 +566,30 @@ def transport_enabled():
type = UDPInterface
interface_enabled = True
outgoing = True
device = eth0
port = 4242
listen_ip = 0.0.0.0
listen_port = 4242
forward_ip = 255.255.255.255
forward_port = 4242
# The above configuration will allow communication
# within the local broadcast domains of all local
# IP interfaces. This is enabled by default as an
# easy way to get started, but you might want to
# consider altering it to something more specific.
# Instead of specifying listen_ip, listen_port,
# forward_ip and forward_port, you can also bind
# to a specific network device like below.
# device = eth0
# port = 4242
# Assuming the eth0 device has the address
# 10.55.0.72/24, the above configuration would
# be equivalent to the following manual setup.
# Note that we are both listening and forwarding
# to the network segments broadcast address.
# Note that we are both listening and forwarding to
# the broadcast address of the network segments.
# listen_ip = 10.55.0.255
# listen_port = 4242
# forward_ip = 10.55.0.255
Expand Down

0 comments on commit 0c96508

Please sign in to comment.