I figured it out after working on this all day
i have deduced that you can't use wcid for everything so here is how to fix the problem
open up /etc/network/interfaces with your favorite text editor
find the block that starts with 'auto ethX' and change it to
auto ethX
iface ethX inet static
address (desired ip address)
netmask 255.255.255.0
be sure to change X to the corresponding number needed and do this for both devices, make sure you use a local ip address instead of (desired ip address)
save the file and execute the following commands in this order
route del default gw
route add default gw (default gateway)
change (default gateway) to the ip address of the connection that directly connects to the internet
and now we need to restart the networking so issue the following command
/etc/init.d/networking restart
that should work it did for me


