Skip to content

Commit 0c96508

Browse files
committed
Updated default config.
1 parent 1fd59f1 commit 0c96508

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

RNS/Reticulum.py

+20-5
Original file line numberDiff line numberDiff line change
@@ -566,15 +566,30 @@ def transport_enabled():
566566
type = UDPInterface
567567
interface_enabled = True
568568
outgoing = True
569-
device = eth0
570-
port = 4242
569+
listen_ip = 0.0.0.0
570+
listen_port = 4242
571+
forward_ip = 255.255.255.255
572+
forward_port = 4242
573+
574+
# The above configuration will allow communication
575+
# within the local broadcast domains of all local
576+
# IP interfaces. This is enabled by default as an
577+
# easy way to get started, but you might want to
578+
# consider altering it to something more specific.
579+
580+
# Instead of specifying listen_ip, listen_port,
581+
# forward_ip and forward_port, you can also bind
582+
# to a specific network device like below.
583+
584+
# device = eth0
585+
# port = 4242
571586
572587
# Assuming the eth0 device has the address
573588
# 10.55.0.72/24, the above configuration would
574589
# be equivalent to the following manual setup.
575-
# Note that we are both listening and forwarding
576-
# to the network segments broadcast address.
577-
590+
# Note that we are both listening and forwarding to
591+
# the broadcast address of the network segments.
592+
578593
# listen_ip = 10.55.0.255
579594
# listen_port = 4242
580595
# forward_ip = 10.55.0.255

0 commit comments

Comments
 (0)