Jump to content

ghostlywind

Active Members
  • Posts

    14
  • Joined

  • Last visited

Posts posted by ghostlywind

  1. h3%5kr3w, I know i didn't need to download it all but i have friends who were requesting most of the software. I've given out almost all the Windows XP, Vista, and you can install Windows 7 x64 with a x86 cd-key and will still register with Microsoft so that went to another friend. I just been downloading it all so i have it backed up and could give the software to my friends when they request it. I haven't kept most of it for myself since i didn't need a lot of it, plus i have unlimited cd-key for Windows XP and Server 2003.

    I just want to thank you guys for all the help especially Deveant for taking up his time to find the acceptable use agreement.

  2. make sure your ISP doesnt have Fair Play in its Terms and Agreements. Also were the illegal download warning before you downloaded from microsoft?

    They caught me 3 years ago and the most recent one was in January and i just started downloading the Microsoft stuff about a week ago. I looked for the fair use on google but couldn't find anything, if you would like to help me search the company is Surewest formerly Everest KC.

    I just want to Thank You guys for all the help I'm hoping to use all this information to convince my dad to switch ISPs.

  3. I did explain it to them and got my internet turned back on but they told me no more massive downloading, which will cause a huge problem since i have started buying most my games off the internet.

  4. Recently through my community college JCCC i got access to the MSDNAA, which is the website that Microsoft setup so you can download of bunch of their software and operating systems for free as long as your getting a degree in the computer field. I started downloading all the software which is about 170 items, i have downloaded around 130 gigs of legal software. Well yesterday my internet gets shut off, so i call my ISP and the reason it was shut off was because i had downloaded 18 gigs per day for a week and since i had two copyright infringements they shut off my internet, i was not downloading anything illegal. There is also no cap on my internet. I was wondering if they have right to do this?

  5. When i first tryed to get Jasager working i was using the kamikaze 8.09 and digininja's madwifi packages would keep crashing when i tryed to turn ath0, so i gave up but when he released his own firmware and everything was working everytime i tryed to set up dhcp and dns to get an IP on Jasager i would get errors. I started doing research on the openwrt forums and got it so i could an IP in Jasager but no internet to the wireless clients. I started more research and found out i need iptables to direct internet to the wireless. The reason i had to reflash so much is that when i try a new setting sometimes i wouldn't be able to get access to my FON after rebooting it and i learned backup config files when they work it cuts out a lot of time.

  6. After many hours of frustration and a couple dozen reflashes i finally got DHCP and DNS working on my FON

    When karma is turned on it will show everything including IP.

    I have a FON 2100 and am using digininja's firmware located here: Digininja firmware

    /etc/config/network

    config interface loopback

    option ifname lo

    option proto static

    option ipaddr 127.0.0.1

    option netmask 255.0.0.0

    config interface wan

    option ifname eth0

    option proto static

    option ipaddr 192.168.0.250 IP to get it connected to the net i have it setup like Darren's for ICS

    option netmask 255.255.255.0

    option gateway 192.168.0.1

    option dns 192.168.0.1

    config interface lan

    option ifname ath0

    option proto static

    option ipaddr 10.10.10.1 The starting IP that it gives out when people connect wirelessly

    option netmask 255.255.255.0

    /etc/config/dhcp

    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

    option interface lan

    option start 100

    option limit 150

    option leasetime 12h

    config dhcp

    option interface wan

    option start 100

    option limit 150

    option leasetime 12h

    /etc/config/wireless

    config wifi-device wifi0

    option type atheros

    option channel 6

    config wifi-iface

    option device wifi0

    # option network lan

    option mode ap

    option ssid OpenWifi

    option encryption none

    /etc/config/firewall

    config defaults

    option syn_flood 1

    option input ACCEPT

    option output ACCEPT

    option forward REJECT

    config zone

    option name lan

    option input ACCEPT

    option output ACCEPT

    option forward REJECT

    config zone

    option name wan

    option input REJECT

    option output ACCEPT

    option forward REJECT

    option masq 1

    config forwarding

    option src lan

    option dest wan

    option mtu_fix 1

    # include a file with users custom iptables rules

    config include

    option path /etc/firewall.user

    /etc/firewall.user

    #Allows wireless clients to access the internet

    iptables -A INPUT -i ath0 -j ACCEPT

    iptables -A INPUT -i eth0 -j ACCEPT

    iptables -A OUTPUT -o ath0 -j ACCEPT

    iptables -A OUTPUT -o eth0 -j ACCEPT

    iptables -A FORWARD -i ath0 -o eth0 -j ACCEPT

    iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

    #Allow wan to connect via SSH

    iptables -t nat -A prerouting_wan -p tcp --dport 22 -j ACCEPT

    iptables -A input_wan -p tcp --dport 22 -j ACCEPT

    #Allow wan to open to Webif

    iptables -t nat -A prerouting_wan -p tcp --dport 80 -j ACCEPT

    iptables -A input_wan -p tcp --dport 80 -j ACCEPT

    #Allow wan to open Jasager

    iptables -t nat -A prerouting_wan -p tcp --dport 1471 -j ACCEPT

    iptables -A input_wan -p tcp --dport 1471 -j ACCEPT

    If anyone has suggestions on making my setup better i would greatly appreciate it.

    I hope this helps anyone who is having troubles like i did.

  7. I'm trying to setup a DHCP on my fon because no IPs show up on my Jasager page even when someone is connected and i looked around the board on how to do this and a lot of the topics said use /usr/sbin/dnsmasq -K -F 10.1.1.100,10.1.1.200. When ever i issue this command through putty i get an error that says:

    dnsmasq: cannot open or creae lease file /var/lib/misc/dnsmasq.leases: No such file or directory

    Is there anyway to fix this?

×
×
  • Create New...