#!/bin/bash

#--------------------------------------------------------------------------
# NTG card detection script
#   Return the list of Transcoding card ifname
#--------------------------------------------------------------------------

# ifconfig -a | grep -e "HWaddr 02:19:23:" | cut -d: -f1 | awk '{ print $1}';
#/sbin/ifconfig -a | grep -e "HWaddr " | cut -d: -f1 | awk '{ print $1}';
# Dummy backend for test
echo "eth1";
echo "eth0";



