Bilibili Video Downloader

The easiest way to download Bilibili video without watermark or logo

群晖docker启用macvlan 让容器有自己的地址

TIP! Right-click and select "Save link as..." to download.

VIDEOS
MP4 N/A 480P Download
MP4 N/A 480P Download
MP4 N/A 360P Download
MP4 N/A 360P Download
AUDIO
MP4 N/A mp4a.40.2 Download
MP4 N/A mp4a.40.5 Download
MP4 N/A mp4a.40.2 Download
THUMBNAILS
群晖docker启用macvlan 让容器有自己的地址 JPEG Origin Image Download
打开网卡混杂模式

ip link set eth0 promisc on

创建macvlan网络

docker network create -d macvlan \
--subnet=192.168.255.0/24 \ #macvlan 地址段
--ip-range=192.168.255.144/28 \ #macvlan分配地址范围
--gateway=192.168.255.254 \ #macvlan地址网关,内部网络的网关
--ipv6 --subnet=fd00:6666::/96 \ #开启macvlan的ipv6功能,后面为ipv6的内部地址,如果不需要ipv去掉此行
-o parent=eth0 dockernet #macvlan绑定的网卡名称 ovs_bond0,dockernet为macvlan的名称, 根据实际网卡名称填写

docker run --name qbittorrent --network dockernet -v /volume1/docker/qbittorrent:/config -v /volume1/Download:/downdown --ip=192.168.255.145 --restart=always --privileged=true -d linuxserver/qbittorrent