Active Topics

 


Reply
Thread Tools
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#41
Originally Posted by villo View Post
I too can connect to 3g/2g internet and yes it is relatively slow (when compared to WiFi) which is why I would prefer to have it connected to WiFi. The expensive bit is not a problem as I have an unlimited web tariff but still, I don't want to stress the network if I don't have to.
unlimited here too - yet limited 500mb - gotta love these unlimited tarriff's! - vodafone uk lol...
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Posts: 172 | Thanked: 27 times | Joined on Oct 2009 @ San Francisco, CA
#42
Originally Posted by ArnimS View Post
this sounds like a problem setting up dns and routes from a dhcp serving access point

you should be getting something like

route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 wlan0
0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 wlan0

and
cat /etc/resolv.conf
nameserver 192.168.0.1
..
if the update broke dhcp for *your* router, you can configure dns and route manually

for e.g. set a dns server
echo 4.2.2.1 > /etc/resolv.conf

add a route
route add default gw 192.168.0.1
So I'm supposed to set this up manually everytime I want to connect to a new WiFi? Airport, cafe, hotel, etc. And ask them what their LAN settings are? Not really feasible, IMO.
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#43
so is the cause of this VPNC - ironic that worked perfect, but the Nokia update skuppered it up for me!!
(Yes i know it's in extras dev! - lol.... still ... oh the irony!)
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Posts: 3,428 | Thanked: 2,856 times | Joined on Jul 2008
#44
@noobmonkey,
To create the file you can use:

Code:
touch /etc/maemo-dhcp.d/60_vpnc
Which will create the file empty. Editing the file, however, would be trickier. I suggest you use whatever default text app comes with the N900 (if it has one) and save his code into it and then save it to your documents. Then you can do something like:
Code:
mv /home/user/MyDocs/.documents/YourFile.txt /etc/maemo-dhcp.d/60_vpnc
And then continue on with his instructions.

If you happen to know VI(M), then you can just use it to create and edit the file in command line.

If you can copy and paste.. this (or something similar) should also work:
Code:
cat > /etc/maemo-dhcp.d/60_vpnc << EOF
 #!/bin/sh -e
 if route -n | grep -e "^0\.0\.0\.0" | grep -q tun0; then
     route -n | grep -e "^0\.0\.0\.0" | grep \$interface | awk '{print \$2}' > /tmp/vpnc_route
     ip=\`cat /var/run/vpnc/defaultroute | cut -f3 -d' '\`
     if [ -z \$ip ]; then
         killall vpnc
     else
         if route -n | grep -e "^0\.0\.0\.0" | grep -q \$ip; then
             route delete default \$interface
         fi
     fi
fi
EOF
(the above copy/paste is untested. Needs a tester to try it first.)
__________________
If I've helped you or you use any of my packages feel free to help me out.
-----------------------------------------------------------------------------------
Maintaining:
pyRadio - Pandora Radio on your N900, N810 or N800!

Last edited by fatalsaint; 2010-01-14 at 22:20.
 

The Following User Says Thank You to fatalsaint For This Useful Post:
Guest | Posts: n/a | Thanked: 0 times | Joined on
#45
Alternativelly, is it possible that the next update will fix this automatically? Just by re-writing the files that I was supposed to modify? I hope you understand what I'm trying to say by this, as I said, I am new to Linux.
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#46
Originally Posted by fatalsaint View Post
@noobmonkey,
To create the file you can use:

Code:
touch /etc/maemo-dhcp.d/60_vpnc
Which will create the file empty. Editing the file, however, would be trickier. I suggest you use whatever default text app comes with the N900 (if it has one) and save his code into it and then save it to your documents. Then you can do something like:
Code:
mv /home/user/MyDocs/.documents/YourFile.txt /etc/maemo-dhcp.d/60_vpnc
And then continue on with his instructions.

If you happen to know VI(M), then you can just use it to create and edit the file in command line.

If you can copy and paste.. this should also work:
Code:
cat > /etc/maemo-dhcp.d/60_vpnc << EOF
 #!/bin/sh -e
 if route -n | grep -e "^0\.0\.0\.0" | grep -q tun0; then
     route -n | grep -e "^0\.0\.0\.0" | grep $interface | awk '{print $2}' > /tmp/vpnc_route
     ip=\`cat /var/run/vpnc/defaultroute | cut -f3 -d' '\`
     if [ -z $ip ]; then
         killall vpnc
     else
         if route -n | grep -e "^0\.0\.0\.0" | grep -q $ip; then
             route delete default $interface
         fi
   fi
fi
EOF
wow that is going to be a mare to type out!!!! :| :|
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#47
Originally Posted by villo View Post
Alternativelly, is it possible that the next update will fix this automatically? Just by re-writing the files that I was supposed to modify? I hope you understand what I'm trying to say by this, as I said, I am new to Linux.
next update?
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Posts: 25 | Thanked: 87 times | Joined on Nov 2009
#48
Originally Posted by noobmonkey View Post
lol ok we all seem to be in the same place..... ish...

Wifi is just not working...... In my case 3G internet works..... i assume others have the same (or 2g/3.5g etc)....


I can follow juaalto's steps up to and including 4 - but not 5 and 6 as i don't know how to create a file in linux/x-terminal?
I use editor called 'vi' but it may look cryptic to you if you have not used it before.

General Startup
To use vi: vi filename
To exit vi and save changes: ZZ or :wq
To exit vi without saving changes: :q!
To enter vi command mode: [esc]
To enter text press 'i' in command mode

http://www.cs.rit.edu/~cslab/vi.html
 

The Following User Says Thank You to juaalto For This Useful Post:
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#49
Originally Posted by juaalto View Post
I use editor called 'vi' but it may look cryptic to you if you have not used it before.

General Startup
To use vi: vi filename
To exit vi and save changes: ZZ or :wq
To exit vi without saving changes: :q!
To enter vi command mode: [esc]
To enter text press 'i' in command mode

http://www.cs.rit.edu/~cslab/vi.html
Screw criptic - i can figure it out lol! - downloading it on 2g now!!
EDIT - ok figured out vi - but it's hard swapping between the windows and copying! may wait until i get to a pc!
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -

Last edited by noobmonkey; 2010-01-14 at 22:26.
 
Guest | Posts: n/a | Thanked: 0 times | Joined on
#50
Originally Posted by noobmonkey View Post
next update?
I think we can safely presume there is going to be another update at some point in the future...
 
Reply


 
Forum Jump


All times are GMT. The time now is 19:11.