as

Settings
Sign out
Notifications
Alexa
Amazon Appstore
Ring
AWS
Documentation
Support
Contact Us
My Cases
Get Started
Design and Develop
Publish
Reference
Support

Configure VDA Over TCP/IP for Fire TV Devices

Vega Device Adapter (VDA) lets you interact with and debug Fire TV devices. By default, VDA uses a USB connection, but you can configure it to work over TCP/IP for wireless debugging.

Prerequisites

Before you configure VDA over TCP/IP, ensure:

  1. Your Fire TV device has completed initial setup and you can access the Fire TV home screen.
  2. Your Fire TV device runs the latest OS version. To check for updates, go to Settings > My Fire TV > About and select Check for Updates. Install any available updates before proceeding.
  3. You have Developer Mode enabled on your Fire TV device.
  4. You connect your Fire TV device to the same network as your host machine. Ensure your network firewall does not block connections on port 5555 (or your chosen custom port) between the host and the device.
  5. You have your Fire TV device's IP address:

    Go to Settings > My Fire TV > About > Network and note the IP address.

Configure TCP/IP connection

Choose your preferred configuration method:


Use the CLI method when you need to automate device setup or integrate into scripts.

  1. Connect your Fire TV device through USB and verify the connection:

    Copied to clipboard.

    vega exec vda devices
    

    Example output:

    List of devices attached
    G000XX0123456789    device
    
  2. Restart VDA in TCP/IP mode using port 5555 (or a custom port greater than 1024):

    Copied to clipboard.

    vega exec vda tcpip 5555
    

    Example output:

    restarting in TCP mode port: 5555
    
  3. Disconnect the USB cable from your Fire TV device.

  4. Connect to your Fire TV device using its IP address:

    vega exec vda connect <device_ip_address>:5555
    

    Example output:

    connected to <device_ip_address>:5555
    
  5. Verify the connection:

    Copied to clipboard.

    vega exec vda devices
    

    Example output:

    List of devices attached
    192.168.1.100:5555    device
    
  6. (Optional) To return to USB mode, reconnect the USB cable and run:

    Copied to clipboard.

    vega exec vda usb
    

Use the Fire TV Settings UI to configure TCP/IP connectivity directly from your device. After you configure TCP/IP mode through the Settings UI, you still need to connect from your host machine using CLI commands (see Connect from your host machine).

Configure standard port

  1. Go to Settings > My Fire TV > About > Developer Options

  2. Choose Connection Mode to toggle between USB and TCP/IP modes.

    Developer Options menu with Connection Mode option highlighted.

    You see the current Connection Mode (default: USB).

    The Connection Mode option requires that your device runs the latest OS version with Developer Mode enabled. If you don't see the Connection Mode option under Developer Options, check for OS updates at Settings > My Fire TV > About > Check for Updates.

  3. Choose Use standard port 5555.

    Connection Port screen showing standard port 5555 option.
  4. Choose Continue.

  5. Wait for the device to reboot.

Configure a custom port

  1. Go to Settings > My Fire TV > About > Developer Options

  2. Choose Change port.

    Connection Port screen with custom port input field.
  3. Choose Connection Port and enter a custom port (greater than 1024).

  4. Choose Continue.

  5. Wait for the device to reboot.

Connect from your host machine

After you configure TCP/IP mode on your Fire TV device, connect from your host machine:

  1. Connect to your Fire TV device using its IP address (from Prerequisites step 3):

    vega exec vda connect <device_ip_address>:5555
    

    Replace <device_ip_address> with your device's IP address. If you configured a custom port, replace 5555 with your custom port number.

    Example output:

    connected to <device_ip_address>:5555
    
  2. Verify the connection:

    Copied to clipboard.

    vega exec vda devices
    

    Example output:

    List of devices attached
    192.168.1.100:5555    device
    
  3. (Optional) To return to USB mode, go to Settings > My Fire TV > About > Developer Options > Connection Mode and choose USB. The device reboots.

Troubleshooting

If you encounter issues using VDA over TCP/IP, see Fix VDA Connection and Power Issues.


Last updated: Mar 24, 2026