-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvsixpi.yml.example
96 lines (83 loc) · 3.56 KB
/
vsixpi.yml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
network_config:
user_data:
project:
## Set your login name of vSIX Portal
login_name: miya
system:
## Set local-unique hostname, and you can connect your Pi by hostname.local (e.g., vsixpi.local)
## Note that your OS has to support mDNS to resolve .local domain
hostname: vsixpi
## Set login username and password
## Default password is the WIDE standard (ENG VERSION) - you can generate another hash with:
## $ mkpasswd --method=SHA-512 --rounds=4096
## The above would create from stdin an SHA-512 password hash with 4096 salt rounds
username: vsix
password: $6$rounds=4096$PtmlQsZeoMBf58Zj$JEfy4U1lM6ztP7NX1EsnBLTeUUe/VBFgMofpG0lRyr4PdONjsQzc9cWSUfWGhed2dbtEZfTzFWtg3eS4xO3K1/
## Specify your public keys to SSH login
## Password authentication via SSH is prohibited - you MUST specify at least either
## - GitHub IDs to import SSH keys
## - List of ASCII strings
ssh_login:
#github_ids:
# - mi2428
public_keys:
- ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICf9XPsV3yxBsTlgmvWpulO2Z1V9gRW5XY+sJoxKfCm8 mi2428
tunnel:
myself:
## Specify the global address submitted to vSIX Portal as a customer endpoint (CE)
## This address must be of NGN if you intend to use vSIX as an ISP
## Don't forget to add prefix length of your LAN - typically it's /64
address: 2403:4440:ffff:208:62a4:4cff:fe3f:48a6/64
providers:
## Site: Fujisawa via NGN (fujisawa-flets) - ngn.pe01.fujisawa
- endpoint: 2408:211:40e0:1701::777
prefix: 2001:200:e20:XXX::/60
## Site: Kote via NGN (elab-flets) - ngn.pe01.kote
- endpoint: 2001:200:e20::1
prefix: 2001:200:e20:YYY::/60
## Site: Kote via WIDE - wide.pe01.kote
- endpoint: 2001:200:0:1802:250:56ff:fe9c:662f
prefix: 2001:200:e20:ZZZ::/60
## Site: Note via WIDE - wide.pe01.note
- endpoint: 2001:200:0:6002:250:56ff:fe9c:3493
prefix: 2001:200:e20:WWW::/60
access_service:
## Start Wi-Fi access point providing vSIX access network on the 11n/ac radio wave
## Uncomment the following block, then edit SSID, passphrase, and channel, adjusting your environment
## CAUTION: 11ac is only supported by the series 3B+ and later, not by 3B
wifi:
ssid: VSIX-FREE-WIFI
passphrase: Adios,IPv4!
channel: 48
use_11ac: yes
## Setup Ethernet interfaces to connect vSIX
## Following two methods are supported. Uncomment the below blocks as you needed
## - Create tagged VLAN interface on the built-in Ethernet (eth0)
## - Install USB Ethernet adapters on USB 3.0 ports and connect through them
#ethernet:
# #built_in:
# # vlan_id: 200
# usb_adapters:
# - alias: eth1
# mac_address: 00:0e:c6:62:80:60
## Tune up RA related parameters
## CAUTION: You shouldn't edit here if you don't know what these are for
router_adv:
lifetime:
valid: 14400
preferred: 3600
nameservers:
- 2001:200:e00:b11::6464
- 2001:4860:4860::6464
- 2001:4860:4860::64
## Tune up MTU and TCP MSS Clamping
## WARNING: DO NOT EDIT unless you know exactly what you're doing
mtu: 1460
mss: 1360
maintenance:
## Regenerate and overwrite all configs every poweroff to keep the desired settings
## For those who are not familiar with Linux and will never touch anything other than vsixpi.yml
## CAUTION: All manually edited configs will be lost by shutdown
auto_reconf: no
## Force sync with github.com/wide-vsix/vsixpi periodically
auto_upgrade: no