Jump to content

lunarbinary

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by lunarbinary

  1. Also know that some USB cables will work for this device and some wont. So if you go to lsusb and you don't see the USB device you plugged in it may just be that the USB cable isn't what the device would like to use. I spent a full day troubleshooting this and at the end I used a drop cam USB cable and the device showed right up. Does anyone know which types of USB cables will work for this and which wont?
  2. Add the config below to the end of /etc/hotplug.d/usb/40-supported-modems and the Novatel 5510L will work without having to configure it whenever you plug it in or unplug it. nano /etc/hotplug.d/usb/40-supported-modems scroll down to the bottom paste the config below Ctrl X* to close and save Cheers, Ian # Support for Verizon Novatel MiFi 5510L [[ $PRODUCT == "1410/b00b/228" ]] && { [[ $ACTION == "add" ]] && { ifconfig eth1 192.168.1.100 netmask 255.255.255.0 up route del default route add default gw 192.168.1.1 eth1 iptables -t nat -A POSTROUTING -s 172.16.42.0/24 -o eth1 -j MASQUERADE iptables -A FORWARD -s 172.16.42.0/24 -o eth1 -j ACCEPT iptables -A FORWARD -d 172.16.42.0/24 -m state --state ESTABLISHED,RELATED -i eth1 -j ACCEPT logger Pineapple.modem: Verizon Novatel MiFi 5510L Added } || { iptables -t nat -D POSTROUTING -s 172.16.42.0/24 -o eth1 -j MASQUERADE iptables -D FORWARD -s 172.16.42.0/24 -o eth1 -j ACCEPT iptables -D FORWARD -d 172.16.42.0/24 -m state --state ESTABLISHED,RELATED -i eth1 -j ACCEPT /etc/init.d/network restart logger Pineapple.modem: Verizon Novatel MiFi 5510L Removed } }
×
×
  • Create New...