32 lines
1.5 KiB
INI
32 lines
1.5 KiB
INI
# This is a sample INI file to use with he_ipv6.py.
|
|
# If you do not yet have an IPv6 Tunnelbroker.net allocation, you can get one (for free!) at:
|
|
# https://www.tunnelbroker.net/tunnel_detail.php?tid=584532
|
|
##
|
|
# This is the tunnel ID. To get it, log into your tunnelbroker.net account and click on the tunnel you wish to use.
|
|
# The tunnel ID is the numerical string in the URL. e.g.:
|
|
# https://www.tunnelbroker.net/tunnel_detail.php?tid=12345
|
|
# The tunnel ID would be 12345 in the above example.
|
|
[12345]
|
|
# This is your tunnelbroker.net username.
|
|
user = ipv6user
|
|
# This is your update key for the above user. You can find it in the "Advanced" tab.
|
|
update_key = xXxXxXxXxXxXxXXX
|
|
# This is the server IP ("IPv6 Tunnel Endpoints" section). *Be sure to use the IPv4 address!* ("Server IPv4 Address")
|
|
server = 192.0.2.1
|
|
# And these are all the allocations you wish to add to this machine. Be sure to add the prefix (e.g. /64, /48)!
|
|
# You can specify multiple allocations with a comma-separated list.
|
|
# ("Routed IPv6 Prefixes")
|
|
allocations = 2001:DB8:1::/64,2001:DB8:2::/64
|
|
# This is the address to actually set on the interface. There should be only one here. Be sure to include the prefix!
|
|
# ("Client IPv6 Address")
|
|
address = 2001:DB8:3::1/64
|
|
|
|
# You can specify multiple tunnel profiles for your machine.
|
|
[54321]
|
|
# And you can even reference values from other sections.
|
|
user = ${12345:user}
|
|
update_key = ${12345:update_key}
|
|
server = 192.0.2.2
|
|
allocations = 2001:DB8:4::/64
|
|
address = 2001:DB8:5::2/64
|