Jump to content

Demo

Active Members
  • Posts

    22
  • Joined

  • Last visited

Recent Profile Visitors

1,641 profile views

Demo's Achievements

Newbie

Newbie (1/14)

  1. http://www.hak5.org/forums/index.php?showt...st&p=154921 in putty run those commands: opkg install /tmp/haserl.ipk then opkg install /tmp/webif.ipk
  2. I honestly like the way hak5 forums are like. I easily could of bought few pre-made pineapples from the store, but I wanted to build it myself because to me if I can't build it myself then I shouldn't use it. Part of the building process is learning, understanding, and researching and I'm glad it wasn't easy to build one because now I learned more about networking and linux.
  3. I've read here before that Fonera 2.0G is not supported and you need Fonera+ or Fonera or open mesh. just go back and read old posts and you will get your answer and with a reason why Fonera 2.0G not supported.
  4. google search http://wiki.hak5.org/wiki/Internet_Connect...mit_Der_Jasager and click on cached .. it will be there
  5. Well I'm going for the setup that has dhcp running on the open mesh. Check out the post that I started earlier "bridging in linux", echoblack gave me some directions on how to have the ip address show in karma.. it didn't work all the way for me but try it with your router and see if you have better luck
  6. no, that's the thing. When I ping 8.8.8.8 and google.com from the open mesh it works fine and I get all the replies back. I'm now suspecting that my open mesh is faulty, but I want to be sure before going and buying another one and have the same problems I'm having.
  7. Congratulations man.. your experience makes me wonder about my open mesh.. I have a similar problem (not connecting to any SSID) and when I do it manually it doesn't connect fully and let the user browse the internet. I will keep what happened with you in mind.. I gotta make sure the setup I have with ICS is all ok before crushing the open mesh I got. Seriously it's driving me crazy not being able to get it to work What ICS did you use? Windows? Linux? Does your setup shows the IP address in Karma page when a client connects?
  8. I'm curious, did you setup ICS?
  9. That I don't remember, sorry I didn't add the link to my favorite, I remember both files were on the same page. I got both of them from a post here, don't think it was Darren's though. Maybe someone can guide you to the most recent files... so I can try them too if they are newer than mine :D
  10. I'm not really following the problem you're having, but it seems like you are going through extra steps that are not really needed for an open mesh router. Here is what I can tell you to do, and I've followed those steps at least 6 times and all worked. Go to http://www.digininja.org/jasager/download.php and download the latest firmware. Next use winrar or 7zip and extract the files from the file you downloaded and put them on your desktop. Then make sure you have wincap installed. Visit http://www.gargoyle-router.com/downloads/f...ash-windows.zip and download the file for fon flash (will make everything easier). This fon flash program will make it easy for you to flash your open mesh with the latest firmware and you won't need to mess with any commands (for now). I think Darren's post has a picture of this and how to use it. Note: I noticed that sometimes my firewall interferes with the fon flash program, so what I did is disable the wireless and shutdown my firewall program and ran the fon flash and everything went smooth. So after you are done with flashing open mesh, telnet into it and change the password, then SSH into it using putty and use winscp to transfer the haserl and webif files to the /tmp/ folder on the open mesh. in putty run those commands: opkg install /tmp/haserl.ipk then opkg install /tmp/webif.ipk (make sure you include the full file name in both commands.) you're all done...with flashing and adding the extra stuff. So with the open mesh you don't need to go to enable redboot or ssh.. all that comes with the mesh by default. if you look at Darren's post for the installation on the fon just skip steps 1-10 and don't look at them. Start with step 11.
  11. Ok, Still running in some problems after using the updated setup. Here is the updated setup that I use For the dhcp file inside the fon config 'dnsmasq' option 'domainneeded' '1' option 'boguspriv' '1' option 'filterwin2k' '0' option 'localise_queries' '1' option 'local' '/lan/' option 'domain' 'lan' option 'expandhosts' '1' option 'nonegcache' '0' option 'authoritative' '1' option 'readethers' '1' option 'leasefile' '/tmp/dhcp.leases' option 'resolvfile' '/tmp/resolv.conf.auto' config 'dhcp' 'lan' option 'interface' 'lan' option 'start' '100' option 'limit' '150' option 'leasetime' '720m' option 'ignore' '0' list 'dhcp_option' '3,10.110.0.1' list 'dhcp_option' '6,10.110.0.2,8.8.8.8' config 'dhcp' 'wan' option 'interface' 'wan' option 'ignore' '1' option 'start' '100' option 'limit' '150' option 'leasetime' '720m' For the network file: config 'interface' 'loopback' option 'ifname' 'lo' option 'proto' 'static' option 'ipaddr' '127.0.0.1' option 'netmask' '255.0.0.0' config 'interface' 'lan' option 'ifname' 'eth0' option 'type' 'bridge' option 'proto' 'static' option 'netmask' '255.255.255.0' option 'macaddr' '' option 'ipaddr' '10.110.0.2' option 'ip6addr' '' option 'gateway' '10.110.0.1' option 'ip6gw' '' option 'dns' ' 8.8.8.8' In Webif my settings are: Connection Type = Static IP Type = Bridged IP Address = 10.110.0.2 Netmask = 255.255.255.0 Default Gateway = 10.110.0.1 Lan DNS servers = 8.8.8.8 I'm running backtrack livecd, so in case I mess something up it wouldn't mess a persistent partition. I connect my fon to the NIC I start wicd /etc/init.d/wicd start Connect to my wireless access point then close the wicd gui. I can ping google. next I run these commands in the exact order ifconfig eth0 10.110.0.1 netmask 255.255.255.0 echo '1' > /proc/sys/net/ipv4/ip_forward iptables -X iptables -F iptables -A FORWARD -i wlan0 -o eth0 -s 10.110.0.0/24 -m state --state NEW -j ACCEPT iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT iptables -A POSTROUTING -t nat -j MASQUERADE route del default route add default gw 192.168.1.1 wlan0 Still pinging google using my wireless connection. So I SSH to the fon and ping google.com & 8.8.8.8 and getting all the replies back. To this point I believe all my ICS setup is working correctly and the fon is set up correctly too. Next step I ran this command to stop any DHCP server running on the backtrack. sudo killall dnsmasq (all pings to the wireless connection and from fon still run ok after that last step. I logged in to Karma (10.110.0.2:1471) and was greeted by a message that I know that's usual, So i pressed the button to create it and that directs me to the next page where I can see Karma is off. Here where the problems start, when I turn Karma on nothing happen and the log is clear, well I know that's normal because Karma is not going to kick out people out of their connection so I have to wait for someone to try to connect. This is the target PC's wireless network connection menu before doing any changes Instead of waiting for someone to try to connect I went ahead and disconnected from the current AP that the target was connected too and then I refreshed the wireless network connection window (out of curiosity) and I got this and another refresh and I got this So my question is why do I get boxes instead of the actual AP name and if you look at the third picture you will see there is even an AP with no name! Actually it's a mix of boxes and actual AP names. It's like the pineapple created a duplicate AP for each AP around me but instead of giving names it gave them boxes. I would like to note that when the target PC was connected to the AP originally and I did a refresh to see if any AP pop up after turning Karma on, nothing new appeared. I tried to connect to different networks with boxes as names, and it just says acquiring network address and after a while it changes to limited or no connectivity. My target PC is running windows XP Pro SP3. Next I waned to try this on a different OS maybe the problem with the target PC that has XP.. I disconnected the new target PC from the AP and then refreshed the page and I got something different this time; I had another network that has a duplicate name as my home AP and the only difference is it's not secured. I tried to connect to that network manually and this is what I got & and when I click diagnose I get this So this new target has Vista SP2 on it. I doubt this is an OS issue. Also when I connect to any AP that shows on the connection manager whether in XP or Vista I don't see an IP address in the Karma page. So this is another issue i'm having. I ran all the setup that echoblack advised me to do to have the fon as a dhcp server, but something is missing still (i'm pretty sure it's some mistake of mine) Sorry for the lengthy post, but I wanted to include as much info as possible. Did anyone had a problem like this before?? ______________________________________________________ EDIT: Instead of digging through the paragraphs to find my questions I will post them here.. 1- How can I get the IP addresses to show on the Karma page? Could that cause the clients to not be able to connect and browse (like I showed in the pictures)? 2- Why Does XP show boxes or I will call them characters instead of the actual AP names? and why does it show on the connection manager to start with? Based on my readings through the forums, the pineapple doesn't broadcast SSIDs, so why is it doing so with my example? 4- In Vista I find that I have a duplicate SSID like my AP and difference is it's not secure, so why I'm unable to browse the internet when I connect manually to it? __________________________________________________ Edit 2: The issue with the IP address not showing in Karma.. could be caused by my network file inside the fon missing a 'wan' options?
  12. You're right.. once I put "route add default gw 192.168.1.2 wlan0" I lost pinging, but once I changed it to 192.168.1.1 it all worked fine. I see you updated your reply since yesterday, and thanks for doing that, it answered all the questions I had in mind. It makes sense now to use 10.110.0.0/24 as ip range, I will update my settings... thanks for the extra info, i will put it in use on my next day off.
  13. config dnsmasq option domainneeded 1 option boguspriv 1 option filterwin2k '0' #enable for dial on demand option localise_queries 1 option local 'lan' option domain 'lan' option expandhosts 1 option nonegcache 0 option authoritative 1 option readethers 1 option leasefile '/tmp/dhcp.leases' option resolvfile '/tmp/resolv.conf.auto' config dhcp lan option interface lan option start 100 option limit 150 option leasetime 12h option ignore 0 list dhcp_option 3,192.168.0.1 list dhcp_option 6,192.168.0.2,208.67.222.222 list dhcp_option 6,192.168.0.2,8.8.8.8 config dhcp wan option interface wan option start 100 option limit 150 option leasetime 12h option ignore 1 list dhcp_option 3,192.168.0.1 list dhcp_option 6,192.168.0.2,208.67.222.222 list dhcp_option 6,192.168.0.2,8.8.8.8 This is what I have inside my dhcp file, which is similar to your except for the ip adresses, but how can I tell backtrack to not act as a dhcp server and just be a client and the fon will deal with dhcp? Also I'm curious about this usr/sbin/dnsmasq -K -d -F 192.168.0.100,192.168.0.200 is this the command to start the dhcp on the fon? or it's not needed? Out of curiosity, those commands beneath, are they needed? or can by turning karma on the wireless activates? uci set wireless.wifi0.disabled=0 && and uci commit wireless && wifi
  14. Well you can always reflash and see what happens. Go to http://www.digininja.org/jasager/download.php and download the latest firmware. Next use winrar or 7zip and extract the files from the file you downloaded and put them on your desktop. Then make sure you have wincap installed. Visit http://www.gargoyle-router.com/downloads/f...ash-windows.zip and download the file. This fon flash program will make it easy for you to flash your fon with the latest firmware and you won't need to mess with any commands (for now) I think Darren's post has a picture of this and how to use it. Note: I noticed that sometimes my firewall interferes with the fon flash program, so what I did is disable the wireless and shutdown my firewall program and ran the fon flash and everything went smooth. Good luck,
  15. echoblack, I was actually thinking about using this script, but I was keeping it last. I guess I wanted to do the manual work myself and figure out what each command does. I noticed you always update it (it jumped from 0.4 to 0.6 in two days) so great job man . My last obstacle is running the dhcp on the fon. and hopefully I will get feedback soon.
×
×
  • Create New...