fix(phantun) do not use the deprecated fec0::/10 block for default ULA

address
This commit is contained in:
Datong Sun 2022-04-16 09:52:07 -07:00
parent 851750b13d
commit 87a42a1e23
2 changed files with 4 additions and 4 deletions

View File

@ -83,7 +83,7 @@ async fn main() -> io::Result<()> {
.required(false)
.value_name("IP")
.help("Sets the Tun interface IPv6 local address (O/S's end)")
.default_value("fec8::1")
.default_value("fcc8::1")
.takes_value(true),
)
.arg(
@ -94,7 +94,7 @@ async fn main() -> io::Result<()> {
.help("Sets the Tun interface IPv6 destination (peer) address (Phantun Client's end). \
You will need to setup SNAT/MASQUERADE rules on your Internet facing interface \
in order for Phantun Client to connect to Phantun Server")
.default_value("fec8::2")
.default_value("fcc8::2")
.takes_value(true),
)
.get_matches();

View File

@ -83,7 +83,7 @@ async fn main() -> io::Result<()> {
.required(false)
.value_name("IP")
.help("Sets the Tun interface IPv6 local address (O/S's end)")
.default_value("fec9::1")
.default_value("fcc9::1")
.takes_value(true),
)
.arg(
@ -94,7 +94,7 @@ async fn main() -> io::Result<()> {
.help("Sets the Tun interface IPv6 destination (peer) address (Phantun Client's end). \
You will need to setup SNAT/MASQUERADE rules on your Internet facing interface \
in order for Phantun Client to connect to Phantun Server")
.default_value("fec9::2")
.default_value("fcc9::2")
.takes_value(true),
)
.get_matches();