ceroberts75
|
2010-08-26
, 03:25
|
Posts: 1,067 |
Thanked: 313 times |
Joined on Sep 2009
@ USA
|
#61
|
|
2010-08-26
, 03:52
|
Posts: 42 |
Thanked: 30 times |
Joined on Aug 2010
|
#62
|
this site http://n900-ipv6.garage.maemo.org/ is such an eyesore.
i thought i had it going just changing the access point to ccinternet2.t-mobile.com as it did make a difference, and even made the microb browser ipv6 capable....but i only saw a dancing turtle when i clicked on the link below the still turtle.
can someone please just give the simple step-to-step instructions, and not the engineering powerpoint to enable your n900 on this?
i have already been set up by tmo.
thank you.
|
2010-08-26
, 04:07
|
Posts: 42 |
Thanked: 30 times |
Joined on Aug 2010
|
#63
|
I'll third that the ipv6 connection is dropped after some time, ipv4 remains connected.
edit
Sent form Friday night, got email late Monday morning.
|
2010-08-26
, 04:15
|
Posts: 42 |
Thanked: 30 times |
Joined on Aug 2010
|
#64
|
this site http://n900-ipv6.garage.maemo.org/ is such an eyesore.
i thought i had it going just changing the access point to ccinternet2.t-mobile.com as it did make a difference, and even made the microb browser ipv6 capable....but i only saw a dancing turtle when i clicked on the link below the still turtle.
can someone please just give the simple step-to-step instructions, and not the engineering powerpoint to enable your n900 on this?
i have already been set up by tmo.
thank you.
|
2010-08-26
, 13:15
|
Posts: 968 |
Thanked: 974 times |
Joined on Nov 2008
@ Ohio
|
#65
|
actually, this is about 1/2 of exactly how it should be explained. just like your steps, only have the appropriate links and xterm codes with each.
sudo gainroot cd MyDocs
cp 00_disable_apn_ipv6 /etc/network/if-down.d
cp 00_enable_apn_ipv /etc/network/if-up.d
leafpad /etc/network/if-up.d/00_enable_apn_ipv6
### IPv4 APN value to hook up when activating IPv6 APN ### MY_IPv4_APN="sip.indt.intra"
### IPv6 APN value ### MY_IPv6_APN="ipv6.indt.intra"
### IPv6 APN username ### MY_IPv6_USERNAME="indt" ### IPv6 APN password ### MY_IPv6_PASSWORD="indt"
### Add prioritary IPv6-specific DNS server? ### ADD_IPv6_DNS="no"
### Prioritary IPv6-specific DNS server ### IPv6_DNS="2607:FB90:beef:3::2"
chmod ugo+x /etc/network/if-up.d/00_enable_apn_ipv6 chmod ugo+x /etc/network/if-down.d/00_disable_apn_ipv6
The Following 7 Users Say Thank You to lemmyslender For This Useful Post: | ||
|
2010-08-26
, 13:34
|
Posts: 968 |
Thanked: 974 times |
Joined on Nov 2008
@ Ohio
|
#66
|
This should not be. ... hard code "nameserver 2607:FB90:BEEF:A::1" in /etc/resolv.conf to make sure all your DNS queries go over IPv6, which will keep your IDLE timer in check, .... it will also ensure the Google content including youtube comes over IPv6 ... DNS queries over IPv4 will not result in Google AAAA IPv6 DNS records.
...
### Add prioritary IPv6-specific DNS server? ### ADD_IPv6_DNS="no"
|
2010-08-26
, 14:07
|
Posts: 5,795 |
Thanked: 3,151 times |
Joined on Feb 2007
@ Agoura Hills Calif
|
#67
|
### IPv6 APN username ###
MY_IPv6_USERNAME="indt"
### IPv6 APN password ###
MY_IPv6_PASSWORD="indt"[/CODE]
|
2010-08-26
, 15:33
|
Posts: 42 |
Thanked: 30 times |
Joined on Aug 2010
|
#68
|
This should not be. ... hard code "nameserver 2607:FB90:BEEF:A::1" in /etc/resolv.conf to make sure all your DNS queries go over IPv6, which will keep your IDLE timer in check, .... it will also ensure the Google content including youtube comes over IPv6 ... DNS queries over IPv4 will not result in Google AAAA IPv6 DNS records.
.../QUOTE]
When connecting to ipv4+ipv6 per the instructions, checking /var/run/resolv.conf.gprs, it shows namserver 66.94.25.120 and nameserver 66.94.9.120
changingto yes adds nameserver 2607:FB90:beef:3::2 as the first line in resolv.conf.gprs.Code:### Add prioritary IPv6-specific DNS server? ### ADD_IPv6_DNS="no"
I'll leave this up for a while add see if it disconnects. *edit* just noticed this was at the very end of one paragraph in the directions, missed it when I set it up originally.
The Following User Says Thank You to tmojoe For This Useful Post: | ||
|
2010-08-26
, 16:55
|
Posts: 968 |
Thanked: 974 times |
Joined on Nov 2008
@ Ohio
|
#69
|
|
2010-08-26
, 17:05
|
|
Posts: 164 |
Thanked: 79 times |
Joined on Jul 2010
|
#70
|
OK - since you are using Titian's power kernel, you are off to a good start.
1) Download disable script and enable script and save in MyDocs
2)Open Xterm, and gain root, and switch to MyDocs directory3a) copy the disable script to /etc/network/if-down.dCode:sudo gainroot cd MyDocs3b) copy the enable script to /etc/network/if-up.dCode:cp 00_disable_apn_ipv6 /etc/network/if-down.d4a) Modify the enable script to reflect your normal APN (epc.tmobile.com for higher priced plan or internet2.voicestream.com for $10 plan) check in setup - internet connections - connections - T-Mobile Internet - Edit -Next, to see which one you are using. Use your favorite editor, I use leafpadCode:cp 00_enable_apn_ipv /etc/network/if-up.d4b) Change sip.intdt.intra to your ipv4 APN value (epc.tmobile.com or internet2.voicestream.com)Code:leafpad /etc/network/if-up.d/00_enable_apn_ipv4c) Change ipv6.indt.intra to ccinternet2.t-mobile.comCode:### IPv4 APN value to hook up when activating IPv6 APN ### MY_IPv4_APN="sip.indt.intra"4d) Make sure name and password are blank, not indtCode:### IPv6 APN value ### MY_IPv6_APN="ipv6.indt.intra"4e) Change no to yesCode:### IPv6 APN username ### MY_IPv6_USERNAME="indt" ### IPv6 APN password ### MY_IPv6_PASSWORD="indt"4f) Save and exit.Code:### Add prioritary IPv6-specific DNS server? ### ADD_IPv6_DNS="no"
5) Make sure the scripts are executable6) You should now be set to run ipv4+ipv6. Disconnect from your 3g connection, then reconnect. Alternately, you could just reboot. Make sure you are on a 3g connection and not a wifi connection.Code:chmod ugo+x /etc/network/if-up.d/00_enable_apn_ipv6 chmod ugo+x /etc/network/if-down.d/00_disable_apn_ipv6