Jump to content

Mr-Protocol

Root Admin
  • Posts

    4,227
  • Joined

  • Days Won

    91

Everything posted by Mr-Protocol

  1. I put my laptop card on gateway so it would not use my other router or any other router to gateway. I am confused what you are trying to do. If a client connects to it and you dont have it wired to anything, it will not function. Unless you use a virtual WAN adapter setup and have it try to do two connections at once.
  2. If you dig hard enough it's a Accton router. http://www.accton.com/ProdDtl.asp?sno=ADNHNJ Maybe you can find a different supplier and let us know?
  3. In the above config, the Fon does give out DHCP. It's dns is using google DNS. If you set your dns to the fon on the clients it will just forward to the next hop of whatever it is plugged into. I don't understand why you are not using forwarding since the fon/jasager is kind of a MITM tool. So you don't want to MITM with it?
  4. Please use search.... My Fon/Jasager install documentation. Then
  5. The fon in my case assigns IP's from it. But gateways through my laptop for internet. I give my fon a static IP and my laptop lan card a static IP so i know i can talk to my jasager interface. The fon gives out IP's to clients and the fon gateway is my lan card IP (static) which i have setup to forward through my wifi card to actual internet.
  6. In the above picture you can clearly see it's made for a second antenna. just need to solder on another pigtail with the right connector. (Silver circle areas)
  7. Both. Buy open-mesh mini router www.open-mesh.com for making a Jasager/Pineapple. https://www.open-mesh.com/store/products.ph...Mini%252dRouter $29 Convert Dell into router...
  8. Yes it was a different circuit, infact it is the second antenna for it. Just there isn't one connected.
  9. https://www.open-mesh.com/store/categories....t%252dCost-Mesh mini router is basically the same thing and available to buy. I believe this is what is used for the Pineapple 2 from Hak Shop Older Fons if you really want to go there you have to buy from ebay or second hand.
  10. http://www.digininja.org/jasager/ Download his firmware. Flash with that firmware. That will solve a lot of issues.
  11. It depends on the OS. When I was showing Jasager to my co-worker his Win7 laptop showed 2 different networks. SSID -and- SSID2 WinXP will just auto connect. Not sure about linux. I could be wrong about the windows 7 due to his PC wasn't using built in windows wireless agent. Anyone else care to verify? Things to consider: -Win7 you have to actively check the box to auto connect to unencrypted networks, if that is on it will connect to the first open one it finds. -The computer may just auto connect to whatever is probed out first that it is supposed to auto connect to. -There is a script out there that was out there to kind of more-so guide people to your jasager. airdrop-ng Season 6 Ep. 626 Side note: Numbering scheme for seasons? I don't get it... First digit is the season # then it goes 19-26... Anyone care to inform me of why lol.
  12. I'm pretty sure they are password protected when you do passwd initially. I could be wrong. Did you install Digininja's firmware or all by scratch?
  13. Jasager works by responding to the SSID probe the computer sends out looking for the wireless networks it 'remembers'. As to being able to tell if you are being MITM, I don't really think there is a way to tell. UNLESS it is something where you visit an HTTPS site and the HTTPS is stripped out using SSL Strip. Cause you could just run a normal wifi router, hook it up to a linux machine and bridge the interface the router is on to the internet. Will not show up as a hop and you can packet sniff. Also high end switches have a "Monitor" port on them for things like IDS/IPS systems. Also switches are known to turn into a hub (broadcast all packets) if the number of MAC addresses it needs to keep track of gets too high.
  14. This is because DCHP is ignore set to 1 on your fon. You get an IP from your router's DHCP server. Typically mysetup with the fon/jasager is i have it teathered to my laptop and my laptop forwards all traffic. Although i think i have DHCP enabled. But if i didn't it should forward to the actual internet my laptop has. I think there are other posts about setting up DHCP on the fon/jasager.
  15. only way to test would be to run a packet sniffer on the pfsense box or after it to see.. but the thing was i was web browsing so slow i felt like i was on dialup. Not sure wtf went wrong. I followed that guide as best i could. Has anyone done something like this before?
  16. I installed PFsense on my old desktop. I gave this doc a try and the network seemed to run SLOOOOOOOOOW. The exact Opposite of what I wanted... Web browsing took way too long to load pages. http://doc.pfsense.org/index.php/Multi_WAN_/_Load_Balancing Any suggestions?
  17. Sorry, I just had to be "that guy". There is a map that describes the kernel. See it's not that bad ;)
  18. Good stuff. I will have to take a look at PFsense and eBox when I get home. Thanks for the input.
  19. I know Darren is fond of his Untangle at the moment. And I like the fact that it has a GUI and is pretty easy to configure. What I don't like is the pay addons that are basically just adding iptables or routes to the OS. ZeroShell is what I am playing with now. It has a web interface and SSH. It has lots of features free and built in. http://www.zeroshell.net/eng/ I will be looking at the load balancing with WAN failover.
  20. The concept is simple. To make a connection a route needs to be made. If in my case the first ISP is about double the speed of the second one. So i will weight 2/1 the routes. So it will put twice as many routes on the faster as the slower one.
  21. I happen to have a nice neighbor who has allowed the world to use his access point. I have flashed a WRT54G router with DD-WRT to act as a repeater bridge. I am going to attempt to combine my service with his to see how it improves. When I feel up for demolishing my network and setting it up in this configuration. Routing for multiple uplinks/providers A common configuration is the following, in which there are two providers that connect a local network (or even a single machine) to the big Internet. ISP1 Localnetwork -- LinuxBox < > Internet ISP2 There are usually two questions given this setup. 4.2.1. Split access The first is how to route answers to packets coming in over a particular provider, say Provider 1, back out again over that same provider. Let us first set some symbolical names. Let $IF1 be the name of the first interface (if1 in the picture above) and $IF2 the name of the second interface. Then let $IP1 be the IP address associated with $IF1 and $IP2 the IP address associated with $IF2. Next, let $P1 be the IP address of the gateway at Provider 1, and $P2 the IP address of the gateway at provider 2. Finally, let $P1_NET be the IP network $P1 is in, and $P2_NET the IP network $P2 is in. One creates two additional routing tables, say T1 and T2. These are added in /etc/iproute2/rt_tables. Then you set up routing in these tables as follows: ip route add $P1_NET dev $IF1 src $IP1 table T1 ip route add default via $P1 table T1 ip route add $P2_NET dev $IF2 src $IP2 table T2 ip route add default via $P2 table T2 Nothing spectacular, just build a route to the gateway and build a default route via that gateway, as you would do in the case of a single upstream provider, but put the routes in a separate table per provider. Note that the network route suffices, as it tells you how to find any host in that network, which includes the gateway, as specified above. Next you set up the main routing table. It is a good idea to route things to the direct neighbour through the interface connected to that neighbour. Note the `src' arguments, they make sure the right outgoing IP address is chosen. ip route add $P1_NET dev $IF1 src $IP1 ip route add $P2_NET dev $IF2 src $IP2 Then, your preference for default route: ip route add default via $P1 Next, you set up the routing rules. These actually choose what routing table to route with. You want to make sure that you route out a given interface if you already have the corresponding source address: ip rule add from $IP1 table T1 ip rule add from $IP2 table T2 This set of commands makes sure all answers to traffic coming in on a particular interface get answered from that interface. Now, this is just the very basic setup. It will work for all processes running on the router itself, and for the local network, if it is masqueraded. If it is not, then you either have IP space from both providers or you are going to want to masquerade to one of the two providers. In both cases you will want to add rules selecting which provider to route out from based on the IP address of the machine in the local network. 4.2.2. Load balancing The second question is how to balance traffic going out over the two providers. This is actually not hard if you already have set up split access as above. Instead of choosing one of the two providers as your default route, you now set up the default route to be a multipath route. In the default kernel this will balance routes over the two providers. It is done as follows (once more building on the example in the section on split-access): ip route add default scope global nexthop via $P1 dev $IF1 weight 1 \ nexthop via $P2 dev $IF2 weight 1 This will balance the routes over both providers. The weight parameters can be tweaked to favor one provider over the other. Note that balancing will not be perfect, as it is route based, and routes are cached. This means that routes to often-used sites will always be over the same provider Side note: Not sure why this post ended up in Questions. Was supposed to be in "Everything Else"
  22. Your copy must be screwed up then. Not only that i think Kon-Boot is a purchasable software *whistle* but there is the internet you can find it...
  23. echo 1 > /proc/sys/net/ipv4/ip_forward sudo iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE Thats the command I use in BT4. I have the Fon/Jasager connected to my laptop ethernet port w/ crossover cable. I also modified the Fon to use my laptop's static IP on the LAN card as the gateway. Doublecheck these settings: Edit /etc/config/dhcp list 'dhcp_option' '3,192.168.169.16' **Sets Gateway to Laptop LAN card list 'dhcp_option' '6,8.8.8.8' **Sets DNS to GoogleDNS Edit /karma/www/cgi-bin/functions.rb under "def create_interface()" add the following: system("sleep 1") system("brctl addif br-lan ath0 2>&1 > /dev/null") Login webif, Network tab, DHCP subtab, Disable Bogus Private Reverse Lookups, Disable filterwin2k, Disable Localise Queries ---Save settings and apply Login Webif, Network Tab, Networks subtab, Set IP address 192.168.169.169 with netmask 255.255.255.0 ---Save settings and apply
  24. These are the steps I made when I was going through the process of making mine. 1) Jailbreak Fon (Hak5 Forums) then Using Jasager Firmware 2.1 from digininja using FonFlash.exe or ap51-flash-fonera-gui1.0-42.exe 2) Telnet the fon (192.168.1.1) and 'passwd root' then 'reboot' 3) Use winscp424 and transfer over haserl_0.9.24-1_mips.ipk and webif_0.3-4709_mips.ipk to the /tmp directory on the fon 4) SSH (putty) into the fon and cd /tmp then run 'opkg install haserl...' when completed run 'opkg install webif...' then 'reboot' 5) Edit /etc/config/dhcp list 'dhcp_option' '3,192.168.169.16' **Sets Gateway to Laptop LAN card list 'dhcp_option' '6,8.8.8.8' **Sets DNS to GoogleDNS 6) Edit /karma/www/cgi-bin/functions.rb under "def create_interface()" add the following: system("sleep 1") system("brctl addif br-lan ath0 2>&1 > /dev/null") 7) Login webif, Network tab, DHCP subtab, Disable Bogus Private Reverse Lookups, Disable filterwin2k, Disable Localise Queries ---Save settings and apply 8) Login Webif, Network Tab, Networks subtab, Set IP address 192.168.169.169 with netmask 255.255.255.0 ---Save settings and apply Optional: edit /etc/banner
  25. You got to burn the ISO to a disc and boot from it. Opening the ISO wont do much for ya. It's just a mini linux disc which modifies the windows kernel in memory on the fly. If you can't get it to boot then must be your image is bad.
×
×
  • Create New...