峯言凬语 O ever youthful O ever weeping~
本无意与众不同,怎奈何口味太重。
首页
平水韵
颜色表
ABOUT
文章分类
友情链接
您正在查看:Nonni 发布的文章
2021-08-06 |Nonni

1-160H0124939.jpg
安装镜像并运行:

docker run --name=iperf3 -d --restart=unless-stopped -p 5201:5201/tcp -p 5201:5201/udp nonnichen/iperf3

Test on Windows:
Go to https://iperf.fr download iPerf3, then run test in CMD:

iperf3.exe -c IP -t 10

Test on Openwrt:

opkg install iperf3
iperf3 -c 207.148.69.145 -t 30

The Pirate Bay.jpg
THUNDER

拉取迅雷 DOCKER 镜像:

docker pull nonnichen/nonnixunlei
docker run -d --name Thunder --restart=always -v /mnt/download:/data -p 8899:80 nonnichen/nonnixunlei:latest

获取迅雷激活码 ACTIVE CODE:

docker logs Thunder

前去迅雷网站绑定激活码:

http://yuancheng.xunlei.com

浏览器访问:

http://Server IP:8899

100.jpg
UBUNTU:

apt-get update
apt install docker.io

拉取Registry:

docker run -d -p 5000:5000 --name registry --restart=always -v /opt/data/registry:/tmp/registry registry

查看端口监听:

ps -ef|grep 5000

查看 registry 等镜像:

docker images

给需要上传的镜像打TAG:

docker tag {imageID} IP:5000/imagename

e.g.

docker tag 8090qbcdbalala 192.168.0.55:5000/nonnikms

上传镜像到仓库:

docker push 192.168.0.55:5000/nonnikms

从私有仓库拉取镜像:

docker pull 192.168.0.55:5000/nonnikms

查看 Registry 中所有镜像信息:

curl http://192.168.1.160:5000/v2/_catalog

查看 Registry 中标签列表

curl http://192.168.1.160:5000/v2/smokeping/tags/list

:
若 docker push 提示:http: server gave HTTP response to HTTPS client 错误的解决方法:
在客户端 /etc/docker 下添加 daemon.json

{

"insecure-registries": ["192.168.0.55:5000"]

}

重启docker:

systemctl restart docker
2021-07-20 |Nonni

openwrt.jpg
仓库地址:
https://hub.docker.com/r/nonnichen/nonniwrt

安装:

  1. 运行 ifconfig 命令查看网卡信息,例如 网络接口逻辑名称是 enp3s0。
  2. 开启此网卡混杂模式:

    ip link set enp3s0 promisc on

  3. 配置MACVLAN:

    docker network create -d macvlan --subnet=192.168.0.0/24 --gateway=192.168.0.1 -o parent=enp3s0 macnet

注: 192.168.0.0/24 和 192.168.0.1 自行调整。

  1. 查看docker网络:

    docker network ls

  2. 拉取镜像并初始化:

    docker run --restart always --name openwrt -d --network macnet --privileged --ip 192.168.0.3 nonnichen/nonniwrt /sbin/init

注: 替换 192.168.0.3 为实际的 IP。

  1. 执行docker BASH:

    docker exec -it openwrt bash

  2. 修改网络配置为实际使用环境:

    vi /etc/config/network

nonniwrt2.jpg

  1. 重启网络:

    /etc/init.d/network restart
    
  2. 浏览器登录已经配置的 IP 并完成配置。

    root
    password
    

KMS.jpg

仓库地址:
https://hub.docker.com/r/nonnichen/nonnikms

安装:

docker pull nonnichen/nonnikms:latest
docker run -d -p 1688:1688 --name kms --restart=always nonnichen/nonnikms