Wednesday, January 21, 2009

Voip with Linksys RTP300

Just got a second RTP300 .I had a hardtime at first figuring out how to unlock using this tutorial but eventually i figured it out.

I already forgot how I did it the fist time it was almost so easy..

Anyway its already unlocked so I'll set this up with another Gizmo account and off this go to Bohol.

Saturday, June 30, 2007

Hacking my Lifedrive

WOw ,just read this thread in 1src forums about the Lifedrive CF hack and I find it amazing what it can do to ones Lifedrive.. I am planning to do this hack and I'll probably document it here.

I had just recently bought a gps receiver for my lifedrive and I find that the lag is unacceptable for GPS . I hope this hack will solve that and I also will try to install Tomtom on a SD card that I also just bought. Lets cross our fingers folks!

Thursday, June 07, 2007

One small step

Hi! My name is Ralph Bacolod. I'm from the Philippines. I wrote this blog to show my love for Linux.

I first heard of linux back in 1998. I was new to the web then. I was hooked the very first time I surfed the web. But I was dismayed that I was using a very poor OS . Who hasn't experience the dreaded BSOD (Blue Screen Of Death).

That got me started in my quest. Surely there is something better than this.

I found linux!

My first linux was Redhat. It was easy to install .The hard part was repartitioning the hard disk. This was two years ago. I installed redhat on the computer at work. I got the cd from a guy in our local LUG.

This past weeks got me kinda busy. I was busy surfing the web. I was looking for a cheap laptop I could install linux on. I finally bought one from ebay .I got it for $229. It's a IBM Thinkpad 770x. I haven't gotten my hands on it yet. It's still in the post office. I'm gonna pick it up this monday..

Before this laptop,I was basically squatting for my linux experience. I installed Debian on my girls PC and also my sisters PC.
I also bought books so that I could learn more about linux.

Saturday, January 20, 2007

My Openwrt "LinuxRules!" Dnsmasq setup for LTSP

Here it is ,my dnsmasq.conf :

# filter what we send upstream
domain-needed
bogus-priv
filterwin2k
localise-queries

# allow /etc/hosts and dhcp lookups via *.lan
local=/lan/
domain=lan
expand-hosts
no-negcache
resolv-file=/tmp/resolv.conf.auto

# enable dhcp (start,end,netmask,leasetime)
dhcp-authoritative
#dhcp-range=192.168.1.100,192.168.1.250,255.255.255.0,12h
dhcp-leasefile=/tmp/dhcp.leases

# use /etc/ethers for static hosts; same format as --dhcp-host
#
read-ethers

# other useful options:
# default route(s): dhcp-option=3,192.168.1.1,192.168.1.2
# dns server(s): dhcp-option=6,192.168.1.1,192.168.1.2

#My PXE setup 12-30-06
#dhcp-vendorclass=pxe,PXEClient

dhcp-option=17,"192.168.1.115:/opt/debian"
dhcp-option=128,e4:45:74:68:00:00
#dhcp-boot=/opt/debian/vmlinux,debian,192.168.1.115
dhcp-boot=/opt/ltsp/i386/vmlinux,debian,192.168.1.115
#dhcp-boot=/opt/linux/vmlinux,debian,192.168.1.115
dhcp-option=211,nfs
##
#new option from http://wiki.ltsp.org/twiki/bin/view/Ltsp/DHCP#dnsmasq
#
#dhcp-option=17,"192.168.1.115:/opt/ltsp/i386/"
#dhcp-vendorclass=pxe,PXEClient
#dhcp-boot=net:pxe,/var/lib/tftpboot/ltsp/i386/pxelinux.0,tux,192.168.1.115






The ones in red are the most important ones coz that will allow you to boot your thinclient via dhcp and nfs.

Big Blue ThinClient with Debian

About a week ago ,I got the IBM Netvista 2200 that I bought from Ebay . I wasn't expecting it to be that small a thin client . Its just about an inch and a half thick..Anyways, I was planning to setup it up as a diskless client. So I already had a pretty rough idea how a diskless client works.. To sum it up,it gets its kernel from a server and run everything off of that server ..

Well,for a client to boot from the server it must have PXE. Turns out mine doesn't have it.. so it has to have some other means of booting from a server since it's a thin client.. to get it to boot one must setup the dhcp server to serve the kernel via NFS since TFTP via PXE doesn't work ..

I have my Openwrt setup that way ..I'll post my dnsmasq here next time ..

Thursday, July 27, 2006

Azureus and Openwrt

The following problem has been bugging for the past two days . I have been using bittornado for my torrent needs ever since I was in to torrents. Bittornado is curses base and I tried Azureus which is java base for a while but I didn't really tinker with it that much . Anyways ,I have a router in between my computer and my cable modem . I have OPENWRT White Russian on it. It's really nice to have a little bit of something in between you and wild net outside ..


My home computer network looks like this :

* Debian Sid on a Pentium 3 500mhz
* Linksys WRT54G ver 2.2 i think
* Openwrt on the Linksys

I was trying Azureus 2.4.0.2 and I notice that It keeps telling me that my Router is not set up right . I always get a either a DHT firewalled or NAT firewalled status on the lower status bar .I went about googling for solutions :

1. I sshd to my router and added the ff line in my /etc/firewall.user: iptables -t nat -A prerouting_rule -i $WAN -p tcp --dport 6880:6990 -j DNAT --to 192.168.1.100:10000
iptables -A forwarding_rule -i $WAN -p tcp --dport 10000 -d 192.168.1.100 -j ACCEPT
iptables -t nat -A prerouting_rule -i $WAN -p udp --dport 6880:6990 -j DNAT --to 192.168.1.100:10000
iptables -A forwarding_rule -i $WAN -p udp --dport 10000 -d 192.168.1.100 -j ACCEPT
2. I reloaded the firewall after that by : #/etc/init.d/S45firewall restart
3. however that didn't work ,so ;I tried changing /etc/config/firewall ,this file is used by NBD's qos-scripts and according to the info I googled supposedly makes it easy to change the nat behaviour ..
I added this line: forward:dport=6880-69990:192.168.1.100:10000

All this suppose to setup my my portforwarding , this supposedly forwards all incoming connections to my routers ports 6880-6990 to my computers port 10000. .
I tried to look at my computers netstat output but all I can see was that my port 10000 is open and when I used shields-up to probe my port 6880-6990 ,it was also open but still no NAT success with Azureus..

I also noticed that the netstat output shows that there are tcp6 and udp6 ports that are open . I didn't know that I was using anything that has to do with ipv6 .. So I googled my friend google ..hehehehe .. and I came across this forum for redhat users ... It suggested there to turn off aliases for ipv6 in /etc/modutils/aliases . That took care of the ipv6 problem when I rebooted no more ipv6 ports opened but i still have no nat for Azureus ..

I finally got a working /etc/firewall.user line that worked .after so many hours of tweaking . I read somewhere that azureus or bittorrent for that matter doesn't like the usual ports opened coz some isp's are blocking this ,so I thought about it.. Maybe just change the dport to something else and don't change the forwarding rule to another port .

So my final rule that got me is this :

iptables -t nat -A prerouting_rule -i $WAN -p tcp --dport 60881 -j DNAT --to 192.168.1.100
iptables -A forwarding_rule -i $WAN -p tcp -d 192.168.1.100 -j ACCEPT
iptables -t nat -A prerouting_rule -i $WAN -p udp --dport 60881 -j DNAT --to 192.168.1.100
iptables -A forwarding_rule -i $WAN -p udp -d 192.168.1.100 -j ACCEPT

That dport flag on the prerouting rule is arbitrary .. You can change it to anything . After this I reloaded the firewall and to make sure ,I rebooted the router and also my computer ..
I also change the port settings on Azureus and voila! Magic! My azureus is going green eversince ..

A few pointers ,give it a little while if at startup its yellow .. it takes a while for it to change ..Also,there are some torrents out there that is bad ,meaning ,there is no seeds and tracker site is down ,So if you run into this then it's not really you thats the problem . Also, I don't have to say this but if you're torrenting you must be prepared to give,i mean don't try to be a leech.. or you'll get what's coming to you ..

I hope this helps all those Azureus users out there. Coz ,this has got me some lost hours of sleep!

HTH

Sunday, June 04, 2006

ang mga Kagwang Ay!




 Posted by Picasa