Jump to content

cheeto

Dedicated Members
  • Posts

    721
  • Joined

  • Last visited

  • Days Won

    9

Posts posted by cheeto

  1. Thanks for your feedback guys.

    I just. Bought a e3372h.  I'll be picking it up at the end of the year though.  :(. I can't ship anything to South America.

    Well, I guess it's safe to say that 3g dongle modems that worked on the Mark V may not work on the nano.

    :(

     

    Cneers

  2. @medudder, I don't mind waiting as long as I know that the 3g dongle will work in future update.

     According to "Smarty", the e3372h-153 is compatible with the Tetra.   I would hope that it's compatible with the nano too.  Has anyone tried it on the Nano?

     

    I think you're right.  I have to wait it out.

    I really wish the nano's mobile broadband were more user friendly.

     

    Thanks again for your effort.

     

    Cheers

     

     

  3. Thanks for the info guys, I hoked up the nano to the battery and i updated the 2 files mentioned above.  I didn't work.

     

    Here some info of what im getting in the HOSTNAME window:

     

    br-lan    Link encap:Ethernet  HWaddr 00:C0:CA:8B:3B:7D
              inet addr:172.16.42.1  Bcast:172.16.42.255  Mask:255.255.255.0
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:19642 errors:0 dropped:306 overruns:0 frame:0
              TX packets:20978 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:3617403 (3.4 MiB)  TX bytes:16455978 (15.6 MiB)
    
    eth0      Link encap:Ethernet  HWaddr 00:C0:CA:8B:3B:7D
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
              Interrupt:4
    
    lo        Link encap:Local Loopback
              inet addr:127.0.0.1  Mask:255.0.0.0
              UP LOOPBACK RUNNING  MTU:65536  Metric:1
              RX packets:61 errors:0 dropped:0 overruns:0 frame:0
              TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:4327 (4.2 KiB)  TX bytes:4327 (4.2 KiB)
    
    wlan0     Link encap:Ethernet  HWaddr 00:C0:CA:8B:3A:B5
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:734 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:0 (0.0 B)  TX bytes:129552 (126.5 KiB)
    
    wlan0-1   Link encap:Ethernet  HWaddr 02:C0:CA:8B:3A:B5
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:19824 errors:0 dropped:0 overruns:0 frame:0
              TX packets:21700 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:3965720 (3.7 MiB)  TX bytes:17171491 (16.3 MiB)
    
    wlan2     Link encap:Ethernet  HWaddr 00:C0:CA:8B:3C:44
              inet addr:192.168.0.191  Bcast:192.168.0.255  Mask:255.255.255.0
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:9255 errors:0 dropped:7 overruns:0 frame:0
              TX packets:7188 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:7772924 (7.4 MiB)  TX bytes:1648065 (1.5 MiB)

    As you can see, there is no eth1.

    Could someone upload their tweaked version of the network and firewall files?

    thx!!!

  4. Thanks for your input.  GREAT observation regarding the fact that it doesn't work when connected to a laptop.  I don't recall this being addressed.

    It was my understanding that if the dongle worked on the MKV, then it would work on the Nano.   For me, this was not the case.  I own a HUAWEI E173 and it works perfectly on the mkv.   Unfortunately it has never worked on the Nano.   I will try to connect with the battery bank and see what happens,

     

    THANKS AGAIN.  I will post the results.   I need to charge the battery 1st.

     

    Cheers!!!!

  5. @medudder, I don't mind waiting as long as I know that the 3g dongle will work in future update.

     According to "Smarty", the e3372h-153 is compatible with the Tetra.   I would hope that it's compatible with the nano too.  Has anyone tried it on the Nano?

     

     

     

  6. Hey guys,

    I'm stuck trying to make a simple email and password portal.

    KUDOS to Newbi3 on his video. I was able to make an email captive portal by following the steps in his tutorial.


    Now however, I'm trying to modify the same portal so it can capture to fields, email and password.


    When i fire this up and and enter an email and password, it will display my script. :(


    this is my index.php



    <?php
    $destination = "http://". $_SERVER['HTTP_HOST'] . $_SERVER['HTTP_URI'] . "";
    ?>

    <HTML>
    <HEAD>
    <title>Evil Portal</title>
    <script type="text/javascript">
    function redirect() { setTimeout(function(){window.location = "/captiveportal/index.php";},100);}
    </script>
    </HEAD>

    <BODY>
    <center>
    <h1>Evil Portal</h1>
    <p>This is the default Evil Portal page</p>

    <form method="POST" action="/captiveportal/index.php" onsubmit="redirect()">
    <input type="hidden" name="target" value="<?=$destination?>">
    <input type="text" name="email" placeholder="Please enter your email address" required>

    <input type="hidden" name="target" value="<?=$destination?>">
    <input type="password" name="password" placeholder="Please enter password" required>

    <button type="submit">Authorize</button>
    </form>

    </center>

    </BODY>

    </HTML>

    Also, I wasn't aware that https could be a factor for captive portals. When I enter my captive portal and go to

    a https page it simply doesn't work. (I believe this has been discussed before)

    Furthermore, When trying to access an https on my mk5, it also fails to shop the captive portal.


    Is there a way around this?


    thanks guys!!!


  7. Hey guys,

    Any idea if the next firmware update will have mobile broadband support? (like the mkv)

    This would be a huge plus for users that are unable to tether their Nano with an Android device.

    I'd really like to use my usb dongle with Nano.

    cheers

×
×
  • Create New...