Hdbit-t: Difference between revisions

From Rev0 Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
Connecting VLC to an HD-BIT-T system requires tagging the vLAN and configuring a route.
= Connecting VLC to an HD-BIT-T System using a vLAN =


Configure this route replacing the vlan interface name
== Introduction ==
Connecting VLC to an HD-BIT-T system requires setting up a vLAN and configuring a multicast route. This guide will walk you through the process step-by-step.


== Table of Contents ==
* [[#Introduction|Introduction]]
* [[#Prerequisites|Prerequisites]]
* [[#Setting Up the Route|Setting Up the Route]]
* [[#VLC Configuration|VLC Configuration]]
* [[#Testing the Configuration|Testing the Configuration]]
* [[#See Also|See Also]]
* [[#References|References]]


<code>
== Prerequisites ==
* A working HD-BIT-T system.
* VLC installed on your machine.
* <code>route</code> and <code>tcpdump</code> utilities installed.
 
== Setting Up the Route ==
After setting up the VLAN interface, the next step is to add a route for multicast traffic. To do this, run the following command:
<source lang="bash">
route add -net 224.0.0.0/4 dev vlan477
route add -net 224.0.0.0/4 dev vlan477
</code>
</source>
 
== VLC Configuration ==
Once the route is configured, proceed to configure VLC:
# Open VLC and navigate to the media streaming options.
# Under "Show more options," add the following setting:
<blockquote>
  :network-iface=vlan477
</blockquote>


== Testing the Configuration ==
To test if you've successfully connected to the HD-BIT-T system:
# Use VLC to connect to the network URL:
<source>
udp://@239.255.42.44:5004
</source>
# Optionally, verify the multicast traffic by running:
<source lang="bash">
tcpdump -i vlan477 ip multicast
</source>


== See Also ==
* [[VLC User Guide]]
* [[HD-BIT-T User Guide]]


Also in VLC you can configure under "show more options"
== References ==
<blockquote>
* [Official VLC Documentation]
:network-iface=vlan477
* [Official HD-BIT-T Documentation]
</blockquote>

Revision as of 10:43, 20 October 2023

Connecting VLC to an HD-BIT-T System using a vLAN

Introduction

Connecting VLC to an HD-BIT-T system requires setting up a vLAN and configuring a multicast route. This guide will walk you through the process step-by-step.

Table of Contents

Prerequisites

  • A working HD-BIT-T system.
  • VLC installed on your machine.
  • route and tcpdump utilities installed.

Setting Up the Route

After setting up the VLAN interface, the next step is to add a route for multicast traffic. To do this, run the following command:

route add -net 224.0.0.0/4 dev vlan477

VLC Configuration

Once the route is configured, proceed to configure VLC:

  1. Open VLC and navigate to the media streaming options.
  2. Under "Show more options," add the following setting:

:network-iface=vlan477

Testing the Configuration

To test if you've successfully connected to the HD-BIT-T system:

  1. Use VLC to connect to the network URL:
udp://@239.255.42.44:5004
  1. Optionally, verify the multicast traffic by running:
tcpdump -i vlan477 ip multicast

See Also

References

  • [Official VLC Documentation]
  • [Official HD-BIT-T Documentation]