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 configuring 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 is connected to the same network as your host machine.
  3. 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.

Configure standard port

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

  2. Select 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).

  3. Select Use standard port 5555.

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

  5. Wait for the device to reboot.

Configure a custom port

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

  2. Select Change port.

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

  4. Select Continue.

  5. Wait for the device to reboot.

Connect from your host machine

After configuring 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 select USB. The device will reboot.

Troubleshooting

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


Last updated: Feb 18, 2026