Ubuntu20作为路由,设置IPv6 PPPoe slaac配置例子

Dnsmasq配置如下:

enable-ra
dhcp-range=::1,constructor:eth2,ra-only,12h
except-interface=ppp0

Wide-dhcpv6配置如下:

  profile default
{
   information-only;
  
  request domain-name-servers;
  request domain-name;

  script "/etc/wide-dhcpv6/dhcp6c-script";
};
interface ppp0 {
    # Request Prefix Delegation on ppp0, and give the received prefix id 0
    send ia-pd 0;
};

# Use subnets from the prefix with id 0
id-assoc pd 0 {
        prefix ::/64 infinity;
        prefix-interface eth2 {
        sla-len 0;
        sla-id 1;
        ifid 1;
    };
};
如果有多个内网网口,配置变更如下:

profile default
{
   information-only;
  
  request domain-name-servers;
  request domain-name;

  script "/etc/wide-dhcpv6/dhcp6c-script";
};
interface ppp0 {
    # Request Prefix Delegation on ppp0, and give the received prefix id 0
    send ia-pd 0;
};

# Use subnets from the prefix with id 0
id-assoc pd 0 {
        prefix ::/64 infinity;
              prefix-interface eth1 {
        sla-len 0;
        sla-id 1;
        ifid 1;
    };        prefix-interface eth2 {
        sla-len 0;
        sla-id 1;
        ifid 1;
    };
};

sysctl.conf部分配置如下:

net.ipv6.conf.eth2.accept_ra=2
net.ipv6.conf.ppp0.accept_ra=2
net.ipv6.conf.all.use_tempaddr=0
net.ipv6.conf.default.use_tempaddr=0

service服务文件如下:

[Unit]
Description=wide-dhcpv6
Before=dnsmasq.service
After=network.target 
[Service]
ExecStart=/usr/sbin/dhcp6c -c /etc/wide-dhcpv6/dhcp6c.conf -P default -d -D -f ppp0
RemainAfterExit=true

[Install]
WantedBy=multi-user.target

/etc/ppp/option配置文件部分如下:

+ipv6 ipv6cp-use-ipaddr

红米RedmiK40 卡刷 教程资源汇总

1,解BL锁,下载我的资源集合。

链接:https://pan.baidu.com/s/1W-xwWtbfyqVf3MoVxoPlmQ
提取码:76fs

2,手机关机不要连接电脑,开机按住电源键和音量下键,进入 fastboot 模式

3,接入数据线连接电脑。电脑识别出手机后。手动安装驱动。驱动在包里

4,执行 fastboot 命令刷入

fastboot flash recovery twrp.img 

#此步刷入recovery,如果此步卡住在fastboot一直重复。请执行下面的命令

fastboot boot boot.img

#如果提示找不到 recovery 分区,请执行下面的命令

fastboot flash boot twrp.img 

5,进入recover 执行双清(如果按不住,也可以在fastboot命令下执行 fastboot reboot recovery)。把卡刷包导入到内置储存。我是用u盘接手机刷进去,电脑一直放不进。如果你也不行也可以试一试。

6,然后就是漫长的等待过程。刷机完成。