Created
March 7, 2014 05:01
-
-
Save jia-kai/9405520 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
# $File: setup-ipv6.sh | |
# $Date: Fri Mar 07 13:00:05 2014 +0800 | |
# $Author: jiakai <[email protected]> | |
PREFIX='2402:f000:1:1501:200:5efe' | |
ADDR_LOCAL=$(ip r g 8.8.8.8 | grep src | awk '{print $7}') | |
ADDR_OUT=$(curl ifconfig.me) | |
ADDR_REMOTE='166.111.21.1' | |
echo "local: $ADDR_LOCAL" | |
echo "out: $ADDR_OUT" | |
ip tunnel del sit1 &>/dev/null && echo 'del sit1' | |
ip tunnel add sit1 mode sit remote $ADDR_REMOTE local $ADDR_LOCAL | |
ifconfig sit1 up | |
ifconfig sit1 add $PREFIX:$ADDR_OUT/64 | |
while true | |
do | |
ip -6 r del default &> /dev/null || break | |
done | |
ip r add ::/0 via $PREFIX:$ADDR_REMOTE metric 1 | |
echo 'Done.' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment