Skip to content

Commit

Permalink
Add default fwmarks for streams
Browse files Browse the repository at this point in the history
  • Loading branch information
svpcom committed Aug 13, 2024
1 parent 671ec36 commit 2a225e0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion wfb_ng/conf/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ ldpc = 1 # use LDPC FEC. Currently available only for 8812au and must
mcs_index = 1 # mcs index

# Packet queueing control
use_qdisc = False # Use or bypass kernel qdisc
use_qdisc = False # Use or bypass kernel qdisc. Set to True if you want to use traffic shaper
fwmark = 0 # If use qdisc then set fwmark to this value for data packets and to fwmark + 1 for FEC packets
control_port = 0 # Override in tx sections if you want to manually control wfb_tx processes via wfb_tx_cmd utility

Expand Down Expand Up @@ -196,31 +196,37 @@ fec_delay = 0 # [us], 0 to disable. Issue FEC packets with delay between


[drone_video]
fwmark = 20 # traffic shaper label
peer = 'listen://0.0.0.0:5602' # listen for video stream (drone)


[drone_mavlink]
fwmark = 10 # traffic shaper label
peer = 'listen://0.0.0.0:14560' # incoming connection
#peer = 'connect://127.0.0.1:14560' # outgoing connection


[drone_tunnel]
fwmark = 30 # traffic shaper label
ifname = 'drone-wfb'
ifaddr = '10.5.0.2/24'
default_route = False


[gs_video]
fwmark = 20 # traffic shaper label
peer = 'connect://127.0.0.1:5600' # outgoing connection for video sink (GS)


[gs_mavlink]
fwmark = 10 # traffic shaper label
peer = 'connect://127.0.0.1:14550' # outgoing connection
# peer = 'listen://0.0.0.0:14550' # incoming connection
# osd = 'connect://127.0.0.1:14551' # mirroring mavlink packets to OSD


[gs_tunnel]
fwmark = 30 # traffic shaper label
ifname = 'gs-wfb'
ifaddr = '10.5.0.1/24'
default_route = False

0 comments on commit 2a225e0

Please sign in to comment.