Commit 0c96508 1 parent 1fd59f1 commit 0c96508 Copy full SHA for 0c96508
File tree 1 file changed +20
-5
lines changed
1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -566,15 +566,30 @@ def transport_enabled():
566
566
type = UDPInterface
567
567
interface_enabled = True
568
568
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
571
586
572
587
# Assuming the eth0 device has the address
573
588
# 10.55.0.72/24, the above configuration would
574
589
# 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
+
578
593
# listen_ip = 10.55.0.255
579
594
# listen_port = 4242
580
595
# forward_ip = 10.55.0.255
You can’t perform that action at this time.
0 commit comments